# HG changeset patch # User Ideenmodellierer # Date 1614197047 -3600 # Node ID d7dec417afa4db5f90de5072e2d460fb37230dc3 # Parent c47766ec3f9639d44981670a5a1f928902af6e7c Debounce fallback warning: In previous versions the fallback option (automatical setting of a fixed setpoint) was only done for communication timeout scenario in combination with a HUD. It is now also applied in case all sensors are rated as out of bounds. The signaling of the fallback warning (including optional automatic setpoint change) is now done taking a 5 seconds debounds time into account. In case a fallback warning is active, then the only way to reset it is by selecting a new setpoint or by changing the sensor configuration (no change compared to previous implementation diff -r c47766ec3f96 -r d7dec417afa4 Discovery/Inc/check_warning.h --- a/Discovery/Inc/check_warning.h Wed Feb 24 21:03:54 2021 +0100 +++ b/Discovery/Inc/check_warning.h Wed Feb 24 21:04:07 2021 +0100 @@ -38,5 +38,8 @@ uint8_t actualLeftMaxDepth(const SDiveState * pDiveState); void set_warning_fallback(void); void clear_warning_fallback(void); +uint8_t debounce_warning_fallback(uint16_t debounceStepms); +void reset_debounce_warning_fallback(); + #endif // CHECK_WARNING_H