summaryrefslogtreecommitdiff
path: root/src/rtc-test/include/stm_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtc-test/include/stm_init.h')
-rw-r--r--src/rtc-test/include/stm_init.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/rtc-test/include/stm_init.h b/src/rtc-test/include/stm_init.h
new file mode 100644
index 0000000..b9dbd10
--- /dev/null
+++ b/src/rtc-test/include/stm_init.h
@@ -0,0 +1,17 @@
+#ifndef __STM_INIT_H
+#define __STM_INIT_H
+
+#include "stm32f4xx_hal.h"
+
+#define LED_PORT GPIOJ
+#define LED_RED GPIO_PIN_1
+#define LED_YELLOW GPIO_PIN_2
+#define LED_GREEN GPIO_PIN_3
+#define LED_BLUE GPIO_PIN_4
+
+extern UART_HandleTypeDef huart2;
+extern I2C_HandleTypeDef hi2c2;
+extern void stm_init(void);
+extern void Error_Handler(void);
+
+#endif /* __STM_INIT_H */