comparison Small_CPU/Inc/uart.h @ 889:cf3967fe6924 Evo_2_23

GNSS work in progress
author heinrichsweikamp
date Fri, 06 Sep 2024 16:46:22 +0200
parents ad96f99ebc78
children 651d21777b61
comparison
equal deleted inserted replaced
888:07af9efd7c13 889:cf3967fe6924
26 26
27 27
28 #define BUFFER_NODATA (7u) /* The read function needs a byte which indicated that no data for processing is available.*/ 28 #define BUFFER_NODATA (7u) /* The read function needs a byte which indicated that no data for processing is available.*/
29 /* This byte shall never appear in a normal data steam */ 29 /* This byte shall never appear in a normal data steam */
30 30
31
32 UART_HandleTypeDef huart1, huart6;
33
31 void MX_USART1_UART_Init(void); 34 void MX_USART1_UART_Init(void);
32 void MX_USART1_UART_DeInit(void); 35 void MX_USART1_UART_DeInit(void);
33 void MX_USART1_DMA_Init(void); 36 void MX_USART1_DMA_Init(void);
37
38 void MX_USART6_UART_Init(void);
39 void MX_USART6_DMA_Init(void);
40 void GNSS_IO_init(void);
41
34 uint8_t UART_ButtonAdjust(uint8_t *array); 42 uint8_t UART_ButtonAdjust(uint8_t *array);
35 void UART_StartDMA_Receiption(void); 43 void UART_StartDMA_Receiption(void);
36 #ifdef ENABLE_CO2_SUPPORT 44 #ifdef ENABLE_CO2_SUPPORT
37 void UART_HandleCO2Data(void); 45 void UART_HandleCO2Data(void);
38 void DigitalCO2_SendCmd(uint8_t CO2Cmd, uint8_t *cmdString, uint8_t *cmdLength); 46 void DigitalCO2_SendCmd(uint8_t CO2Cmd, uint8_t *cmdString, uint8_t *cmdLength);