AGirs
config.h
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include "Board.h"
13 
14 #ifdef __AVR_ATmega168__
15 #error Unsupported CPU ATmega168 (too little memory)
16 #endif
17 
18 #ifdef ARDUINO_AVR_UNO
19 // Support sending signals without modulation, e.g. with RF module.
20 #define NON_MOD
21 #endif
22 
23 #if defined(ARDUINO_AVR_UNO) | defined(ARDUINO_AVR_NANO) | defined(ARDUINO_AVR_MICRO) | defined(ARDUINO_AVR_LEONARDO) | defined(ARDUINO_SAMD_ZERO)
24 
25 #include "GirsLite.config.h"
26 
27 #elif defined(ARDUINO_AVR_MEGA2560)
28 
29 #include "GirsFat.config.h"
30 
31 #else
32 
33 #error Your platform is currently not supported. Please extend examples/Girs/config.h according to your needs and wishes.
34 
35 #endif
Complete configuration options.
Configuration optimized for IrScrutinizer and Lirc.