aboutsummaryrefslogtreecommitdiff
path: root/stm32f091/setup.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-10-11 18:22:32 +0200
committerlonkaars <loek@pipeframe.xyz>2022-10-11 18:22:32 +0200
commit1d385074e33f831e88499603c46e25170b770ada (patch)
tree2c3be484018110bdf652cf69f363d6d35d456838 /stm32f091/setup.h
parent5b1f94522624e18fe9fd94478ada1c8d8997b747 (diff)
working data receive from si7021 module
Diffstat (limited to 'stm32f091/setup.h')
-rw-r--r--stm32f091/setup.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/stm32f091/setup.h b/stm32f091/setup.h
index bca0e82..713ed58 100644
--- a/stm32f091/setup.h
+++ b/stm32f091/setup.h
@@ -1,5 +1,6 @@
#pragma once
+#include <stm32f0xx_hal.h>
#include <stm32f0xx_hal_i2c.h>
#include <stm32f0xx_hal_uart.h>
@@ -17,3 +18,9 @@ extern UART_HandleTypeDef huart2;
void ws_io_setup();
+void NMI_Handler();
+void HardFault_Handler();
+void SysTick_Handler();
+void HAL_MspInit();
+void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c);
+void HAL_UART_MspInit(UART_HandleTypeDef *huart);