header.h 608 B

1234567891011121314151617181920212223242526272829303132
  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. ////////////////////////////// Functions //////////////////////////////
  18. /**
  19. * @brief Test function
  20. *
  21. */
  22. void bar(void);
  23. #endif