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.

44 lines
1.6KB

  1. # =========================================================================
  2. # Unity - A Test Framework for C
  3. # ThrowTheSwitch.org
  4. # Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
  5. # SPDX-License-Identifier: MIT
  6. # =========================================================================
  7. #this is a sample configuration file for generate_module
  8. #you would use it by calling generate_module with the -ygenerate_config.yml option
  9. #files like this are useful for customizing generate_module to your environment
  10. :generate_module:
  11. :defaults:
  12. #these defaults are used in place of any missing options at the command line
  13. :path_src: ../src/
  14. :path_inc: ../src/
  15. :path_tst: ../test/
  16. :update_svn: true
  17. :includes:
  18. #use [] for no additional includes, otherwise list the includes on separate lines
  19. :src:
  20. - Defs.h
  21. - Board.h
  22. :inc: []
  23. :tst:
  24. - Defs.h
  25. - Board.h
  26. - Exception.h
  27. :boilerplates:
  28. #these are inserted at the top of generated files.
  29. #just comment out or remove if not desired.
  30. #use %1$s where you would like the file name to appear (path/extension not included)
  31. :src: |
  32. //-------------------------------------------
  33. // %1$s.c
  34. //-------------------------------------------
  35. :inc: |
  36. //-------------------------------------------
  37. // %1$s.h
  38. //-------------------------------------------
  39. :tst: |
  40. //-------------------------------------------
  41. // Test%1$s.c : Units tests for %1$s.c
  42. //-------------------------------------------