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.

32 line
618B

  1. #ifndef UNITY_CONFIG_H
  2. #define UNITY_CONFIG_H
  3. #ifndef NULL
  4. #ifndef __cplusplus
  5. #define NULL (void*)0
  6. #else
  7. #define NULL 0
  8. #endif
  9. #endif
  10. #ifdef __cplusplus
  11. extern "C"
  12. {
  13. #endif
  14. void unityOutputStart(unsigned long);
  15. void unityOutputChar(unsigned int);
  16. void unityOutputFlush(void);
  17. void unityOutputComplete(void);
  18. #define UNITY_OUTPUT_START() unityOutputStart((unsigned long) 115200)
  19. #define UNITY_OUTPUT_CHAR(c) unityOutputChar(c)
  20. #define UNITY_OUTPUT_FLUSH() unityOutputFlush()
  21. #define UNITY_OUTPUT_COMPLETE() unityOutputComplete()
  22. #ifdef __cplusplus
  23. }
  24. #endif /* extern "C" */
  25. #endif /* UNITY_CONFIG_H */