1234567891011121314151617181920212223242526272829303132 |
- /*
- Author: Tobias Müller
- Date: 30.06.2023
- Version: 1.0
- Main header file.
- */
- #ifndef HEADER_H
- #define HEADER_H
- ////////////////////////////// Libraries //////////////////////////////
- #include <stdio.h>
- #include "pico/stdlib.h"
- #include "foo.h"
- ////////////////////////////// Symbols //////////////////////////////
- #ifndef SLEEP_TIME_MS
- #define SLEEP_TIME_MS 500
- #endif
- ////////////////////////////// Functions //////////////////////////////
- /**
- * @brief Test function
- *
- */
- void bar(void);
- #endif
|