diff --git a/config.h b/config.h new file mode 100644 --- /dev/null +++ b/config.h @@ -0,0 +1,19 @@ +#ifndef CONFIG_H +#define CONFIG_H + + +#define SSR_PERIOD 200 + +#define LED_POWER GPIOB,GPIO_Pin_9 +#define LED_STAT GPIOA,GPIO_Pin_15 + +#define MAX_CS GPIOB,GPIO_Pin_12 + +#define SW_BTN GPIOB, GPIO_Pin_3 +#define SW_UP GPIOB, GPIO_Pin_4 +#define SW_DOWN GPIOB, GPIO_Pin_6 +#define SW_LEFT GPIOB, GPIO_Pin_5 +#define SW_RIGHT GPIOB, GPIO_Pin_7 + + +#endif