diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2015-01-15 17:04:03 +0100 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2015-01-15 17:04:03 +0100 |
commit | 39cac7918987fc603dc54886e107af026583592e (patch) | |
tree | acb95e5cebc2f410840659cc7e6d1a74331e3985 /src/led-test/stm_init.h | |
parent | 3347165e2927ec73014eafdfc0c650904a4b67d4 (diff) |
init
Diffstat (limited to 'src/led-test/stm_init.h')
-rw-r--r-- | src/led-test/stm_init.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/led-test/stm_init.h b/src/led-test/stm_init.h new file mode 100644 index 0000000..e1cdfb8 --- /dev/null +++ b/src/led-test/stm_init.h @@ -0,0 +1,16 @@ +#ifndef __STM_INIT_H +#define __STM_INIT_H + +#include "stm32f4xx_hal.h" + +#define LED_PORT GPIOB +#define LED_RED GPIO_PIN_12 +#define LED_YELLOW GPIO_PIN_13 +#define LED_GREEN GPIO_PIN_14 +#define LED_BLUE GPIO_PIN_15 + +extern UART_HandleTypeDef huart1; +extern void stm_init(void); + + +#endif /* __STM_INIT_H */ |