11 lines
145 B
C
11 lines
145 B
C
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
#define LED_CFG GPIOD,2
|
||
|
#define REL_CFG GPIOD,4
|
||
|
|
||
|
#define SW__ON false
|
||
|
#define SW_OFF true
|
||
|
|
||
|
#endif // CONFIG_H
|