AGirs
config.h
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #ifdef __AVR_ATmega168__
13 #error Unsupported CPU ATmega168 (too little memory)
14 #endif
15 
16 #ifdef ARDUINO_AVR_UNO
17 // Support sending signals without modulation, e.g. with RF module.
18 #define NON_MOD
19 #endif
20 
21 #if defined(ARDUINO_AVR_UNO) | defined(ARDUINO_AVR_NANO) | defined(ARDUINO_AVR_MICRO) | defined(ARDUINO_AVR_LEONARDO)
22 
23 #include "GirsLite.config.h"
24 
25 #elif defined(ARDUINO_AVR_MEGA2560)
26 
27 #include "GirsFat.config.h"
28 
29 #elif ! defined(ARDUINO)
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
Configuration optimized for IrScrutinizer and Lirc.
Complete configuration options.