comparison Discovery/Src/tMenuEdit.c @ 1037:2af07aa38531 GasConsumption

Merge with external development branches: Some features have been prepared for integration: Profiles, DMA UART on Firmware part, Bluetooth discovery and messges logging for development phase. All these new function are deactivated by compile switch and may be activated using the configuration.h for testing purpose.
author Ideenmodellierer
date Mon, 15 Sep 2025 21:12:44 +0200
parents e938901f6386 33b91584d827
children
comparison
equal deleted inserted replaced
1029:e938901f6386 1037:2af07aa38531
40 #include "tMenuEditHardware.h" 40 #include "tMenuEditHardware.h"
41 #include "tMenuEditPlanner.h" 41 #include "tMenuEditPlanner.h"
42 #include "tMenuEditSystem.h" 42 #include "tMenuEditSystem.h"
43 #include "tMenuEditXtra.h" 43 #include "tMenuEditXtra.h"
44 #include "tMenuEditCustom.h" 44 #include "tMenuEditCustom.h"
45 #include "cv_heartbeat.h"
45 46
46 /* Private types -------------------------------------------------------------*/ 47 /* Private types -------------------------------------------------------------*/
47 #define TEXTSIZE 16 48 #define TEXTSIZE 16
48 49
49 #define IDENT_MAY_INPUT_NUM 4 /* legacy value of ident.input struct */ 50 #define IDENT_MAY_INPUT_NUM 4 /* legacy value of ident.input struct */
258 case StMCustom3_CViewSelection3: 259 case StMCustom3_CViewSelection3:
259 case StMCustom3_CViewSelection4: 260 case StMCustom3_CViewSelection4:
260 case StMCustom3_CViewSelection5: 261 case StMCustom3_CViewSelection5:
261 case StMCustom3_CViewSelection6: refreshFct = CustomviewDivemode_refresh; 262 case StMCustom3_CViewSelection6: refreshFct = CustomviewDivemode_refresh;
262 break; 263 break;
264 #ifdef ENABLE_PULSE_SENSOR_BT
265 case (StMOption_Heartbeat): refreshFct = refresh_Heartbeat;
266 break;
267 #endif
268
263 #ifdef ENABLE_MOTION_CONTROL 269 #ifdef ENABLE_MOTION_CONTROL
264 case (StMCustom5_CViewPortCalib & MaskFieldDigit): 270 case (StMCustom5_CViewPortCalib & MaskFieldDigit):
265 case StMCustom5_CViewPortLayout: 271 case StMCustom5_CViewPortLayout:
266 case StMCustom5_CViewPortAmbient: refreshFct = refresh_ViewPort; 272 case StMCustom5_CViewPortAmbient: refreshFct = refresh_ViewPort;
267 break; 273 break;