38
|
1 /**
|
|
2 ******************************************************************************
|
|
3 * @file uart.h
|
|
4 * @author heinrichs weikamp gmbh
|
|
5 * @version V0.0.1
|
|
6 * @date 27-March-2014
|
|
7 * @brief button control
|
|
8 *
|
|
9 ******************************************************************************
|
|
10 * @attention
|
|
11 *
|
|
12 * <h2><center>© COPYRIGHT(c) 2015 heinrichs weikamp</center></h2>
|
|
13 *
|
|
14 ******************************************************************************
|
|
15 */
|
|
16
|
|
17 /* Define to prevent recursive inclusion -------------------------------------*/
|
|
18 #ifndef UART_H
|
|
19 #define UART_H
|
|
20
|
|
21 #ifdef __cplusplus
|
|
22 extern "C" {
|
|
23 #endif
|
|
24
|
|
25 #include "stm32f4xx_hal.h"
|
|
26
|
|
27 void MX_USART2_UART_Init(void);
|
|
28 void MX_USART2_UART_DeInit(void);
|
|
29 uint8_t UART_ButtonAdjust(uint8_t *array);
|
|
30
|
|
31
|
|
32 #ifdef __cplusplus
|
|
33 }
|
|
34 #endif
|
|
35
|
|
36 #endif /* UART_H */
|
|
37
|
|
38 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/
|