config.h 817 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * @file config.h
  3. * @brief User configuration file.
  4. * This file determines the configuration of the built program.
  5. * Feel free to be creative here; you can include pre-built files, you can replace
  6. * the file with your content, you can include pre-built files and override values
  7. * in them, or ...
  8. */
  9. #pragma once
  10. #ifdef ARDUINO_AVR_UNO
  11. // Support sending signals without modulation, e.g. with RF module.
  12. #define NON_MOD
  13. #endif
  14. #if defined(ARDUINO_AVR_UNO) | defined(ARDUINO_AVR_NANO) | defined(ARDUINO_AVR_MICRO) | defined(ARDUINO_AVR_LEONARDO)
  15. #include "GirsLite.config.h"
  16. #elif defined(ARDUINO_AVR_MEGA2560)
  17. #include "GirsFat.config.h"
  18. #elif ! defined(ARDUINO)
  19. #else
  20. #error Your platform is currently not supported. Please extend examples/Girs/config.h according to your needs and wishes.
  21. #endif