comparison Discovery/Src/tMenuXtra.c @ 827:ffb1036c27c2 Evo_2_23

Moved CO2 Menu from Xtra to Hardware: The first CO2 sensor menu implementation was placed within the Xtra menu. In the new version the CO2 options may be accessed using the sensor overview menu of the Hardware page. With this change it is no longer necessary to take care for compile switches in the menus because the menu will only be shown if a CO2 sensor is detected.
author Ideenmodellierer
date Sun, 05 Nov 2023 20:19:08 +0100
parents c4ee952b9425
children 17d9d6eddd8d
comparison
equal deleted inserted replaced
826:a370741a743b 827:ffb1036c27c2
198 "%c" 198 "%c"
199 ,TXT_PSClosedCircuit); 199 ,TXT_PSClosedCircuit);
200 } 200 }
201 } 201 }
202 #endif 202 #endif
203 #ifdef ENABLE_CO2_SUPPORT
204 if((line == 0) || (line == 4))
205 {
206 textPointer += snprintf(&text[textPointer], 60, "%c", TXT_CO2Sensor);
207 }
208 #endif
209 } 203 }
210 return StMXTRA; 204 return StMXTRA;
211 } 205 }
212 206