comparison Discovery/Src/tInfo.c @ 1031:cd4561c33758 Puls_Integration

New Logger View: The logger view allows developers to display development messages on the screen. This is done by rerouting the refresh function to the logger view. The view is opened when a new string is received and is closing after a certain time while no new message was entered. For better communication protocol visualization it is possible to mark a scring as received or transmitted. The strind will then be displayed left / right aligned
author Ideenmodellierer
date Mon, 28 Jul 2025 18:32:23 +0200
parents 65d35e66efb9
children 5b913cdaa9dc
comparison
equal deleted inserted replaced
1030:d492d4b165fb 1031:cd4561c33758
36 //#include "tInfoDive.h" 36 //#include "tInfoDive.h"
37 //#include "tInfoSurface.h" 37 //#include "tInfoSurface.h"
38 #include "tInfoCompass.h" 38 #include "tInfoCompass.h"
39 #include "tInfoSensor.h" 39 #include "tInfoSensor.h"
40 #include "tInfoPreDive.h" 40 #include "tInfoPreDive.h"
41 #include "tInfoLogger.h"
41 #include "tMenu.h" 42 #include "tMenu.h"
42 #include "tMenuEdit.h" 43 #include "tMenuEdit.h"
43 44
44 #include <string.h> 45 #include <string.h>
45 46
224 refreshInfo_Sensor(tIscreen); 225 refreshInfo_Sensor(tIscreen);
225 break; 226 break;
226 case StIPREDIVE: tIscreen.FBStartAdress = getFrame(14); 227 case StIPREDIVE: tIscreen.FBStartAdress = getFrame(14);
227 infoColor = CLUT_MenuPageGasCC; 228 infoColor = CLUT_MenuPageGasCC;
228 refreshInfo_PreDive(tIscreen); 229 refreshInfo_PreDive(tIscreen);
230 break;
231 case StILOGGER: tIscreen.FBStartAdress = getFrame(14);
232 infoColor = CLUT_MenuPageCvOption;
233 refreshInfo_Logger(tIscreen);
229 break; 234 break;
230 235
231 default: 236 default:
232 break; 237 break;
233 } 238 }