ESP32-basiertes Kraftort-Suchger�t mit GPS, LED-Ring und PlatformIO-Firmware.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef UNITY_CONFIG_H
- #define UNITY_CONFIG_H
-
- #ifndef NULL
- #ifndef __cplusplus
- #define NULL (void*)0
- #else
- #define NULL 0
- #endif
- #endif
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- void unityOutputStart(unsigned long);
- void unityOutputChar(unsigned int);
- void unityOutputFlush(void);
- void unityOutputComplete(void);
-
- #define UNITY_OUTPUT_START() unityOutputStart((unsigned long) 115200)
- #define UNITY_OUTPUT_CHAR(c) unityOutputChar(c)
- #define UNITY_OUTPUT_FLUSH() unityOutputFlush()
- #define UNITY_OUTPUT_COMPLETE() unityOutputComplete()
-
- #ifdef __cplusplus
- }
- #endif /* extern "C" */
-
- #endif /* UNITY_CONFIG_H */
|