Mercurial > public > ostc4
view Small_CPU/Inc/uart_Internal.h @ 926:875933272056 Evo_2_23 tip
Bugfix sensor de-/activation handling:
In the previous version a CO2 sensor could cause a not used analog channel to be displayed. Rootcause was that all sensor type, not only o2 sensors, were used for o2 sensor deactivation evaluation. The deactivation state is the criteria if a value is displayed or not.
In the new version only o2 sensor type are used for handling of sensor de-/activation state.
In addition the cursor will now be set to the first valid sensor entry in case sensor slot 0 is empty.
author | Ideenmodellierer |
---|---|
date | Thu, 14 Nov 2024 20:13:18 +0100 |
parents | 7c996354b8ac |
children |
line wrap: on
line source
/** ****************************************************************************** * @file uartInternal.h * @author heinrichs weikamp gmbh * @version V0.0.1 * @date 03-November-2024 * @brief button control * ****************************************************************************** * @attention * * <h2><center>© COPYRIGHT(c) 2015 heinrichs weikamp</center></h2> * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef UARTINTERNAL_H #define UARTINTERNAL_H #ifdef __cplusplus extern "C" { #endif #include "stm32f4xx_hal.h" #define BUFFER_NODATA_LOW (0x15) /* The read function needs a signiture which indicates that no data for processing is available.*/ #define BUFFER_NODATA_HIGH (0xA5) UART_HandleTypeDef huart6; void MX_USART6_UART_Init(void); void MX_USART6_DMA_Init(void); void MX_USART6_UART_DeInit(void); void GNSS_IO_init(void); void UART6_StartDMA_Receiption(void); void UART_clearRx6Buffer(void); void UART6_SendCmdUbx(const uint8_t *cmd, uint8_t len); void UART6_ReadData(void); void UART6_WriteData(void); void UART6_Gnss_ProcessData(uint8_t data); #ifdef __cplusplus } #endif #endif /* UARTINTERNAL_H */ /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/