blob: 3ffdf4847e266d02379c124f37f844ad0d1b4899 (
plain)
1
2
3
4
5
6
7
8
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);
|