header.h 662 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. Author: Tobias Müller
  3. Date: 30.06.2023
  4. Version: 1.0
  5. Main header file.
  6. */
  7. #ifndef HEADER_H
  8. #define HEADER_H
  9. ////////////////////////////// Libraries //////////////////////////////
  10. #include <stdio.h>
  11. #include "pico/stdlib.h"
  12. #include "foo.h"
  13. ////////////////////////////// Symbols //////////////////////////////
  14. #ifndef SLEEP_TIME_MS
  15. #define SLEEP_TIME_MS 500
  16. #endif
  17. #ifndef Boot_TIME_MS
  18. #define Boot_TIME_MS 2000
  19. #endif
  20. ////////////////////////////// Functions //////////////////////////////
  21. /**
  22. * @brief Test function
  23. *
  24. */
  25. void bar(void);
  26. #endif