Tiny protocol  0.7.0
Tiny communication protocol for microcontrollers
tiny_config.h
1 #ifndef __TINY_CONFIG_H__
2 #define __TINY_CONFIG_H__
3 
4 #ifdef ARDUINO_AVR_NANO
5 // Tiny protocol configuration for Nano boards
8 
9 # define CONFIG_ENABLE_CHECKSUM
10 
11 #else
12 // Tiny protocol configuration for All other boards
15 
16 #ifndef CONFIG_ENABLE_CHECKSUM
17 # define CONFIG_ENABLE_CHECKSUM
18 #endif
19 
20 #ifndef CONFIG_ENABLE_FCS16
21 # define CONFIG_ENABLE_FCS16
22 #endif
23 
24 #ifndef CONFIG_ENABLE_FCS32
25 # define CONFIG_ENABLE_FCS32
26 #endif
27 
28 #endif
29 
30 
31 #endif /* __TINY_CONFIG_H__ */
32