922
+ − 1 /**
+ − 2 ******************************************************************************
+ − 3 * @file uartInternal.h
+ − 4 * @author heinrichs weikamp gmbh
+ − 5 * @version V0.0.1
+ − 6 * @date 03-November-2024
+ − 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 UARTINTERNAL_H
+ − 19 #define UARTINTERNAL_H
+ − 20
+ − 21 #ifdef __cplusplus
+ − 22 extern "C" {
+ − 23 #endif
+ − 24
+ − 25 #include "stm32f4xx_hal.h"
+ − 26
+ − 27 UART_HandleTypeDef huart6;
+ − 28
+ − 29 void MX_USART6_UART_Init(void);
+ − 30 void MX_USART6_DMA_Init(void);
+ − 31 void MX_USART6_UART_DeInit(void);
+ − 32 void GNSS_IO_init(void);
+ − 33
932
+ − 34 void UART6_HandleUART();
922
+ − 35
+ − 36 #ifdef __cplusplus
+ − 37 }
+ − 38 #endif
+ − 39
+ − 40 #endif /* UARTINTERNAL_H */
+ − 41
+ − 42 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/