diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-04 12:44:34 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-04 12:44:34 +0200 |
commit | 4a1a7be27fd359309672393446f146fefb3507c0 (patch) | |
tree | 91f58756dfb92f0add50b7c5f6aeb3db69f1b266 /stm32f091/stm32f0xx_hal_msp.h | |
parent | 45a0a4a215fb41564c1a9192d34eae0d0d3423c6 (diff) |
more HAL files compiling
Diffstat (limited to 'stm32f091/stm32f0xx_hal_msp.h')
-rw-r--r-- | stm32f091/stm32f0xx_hal_msp.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/stm32f091/stm32f0xx_hal_msp.h b/stm32f091/stm32f0xx_hal_msp.h new file mode 100644 index 0000000..3ffdf48 --- /dev/null +++ b/stm32f091/stm32f0xx_hal_msp.h @@ -0,0 +1,9 @@ +#pragma once + +#include <stm32f0xx_hal.h> +#include <stm32f0xx_hal_uart.h> + +void HAL_MspInit(void); +void HAL_UART_MspInit(UART_HandleTypeDef* huart); +void HAL_UART_MspDeInit(UART_HandleTypeDef* huart); + |