/* Author: Tobias Müller Date: 30.06.2023 Version: 1.0 Main header file. */ #ifndef HEADER_H #define HEADER_H ////////////////////////////// Libraries ////////////////////////////// #include #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