Mercurial > public > ostc4
annotate Discovery/Src/t3.c @ 528:a9c195be907e
Added new option to gas configuration: "Off":
Added functionality needed to handle the new state
author | Ideenmodellierer |
---|---|
date | Sun, 13 Sep 2020 20:59:38 +0200 |
parents | 962d7b2c18c6 |
children | 0e1db77b2aca |
rev | line source |
---|---|
38 | 1 /////////////////////////////////////////////////////////////////////////////// |
2 /// -*- coding: UTF-8 -*- | |
3 /// | |
4 /// \file Discovery/Src/t3.c | |
5 /// \brief Main Template file for dive mode special scree t3 | |
6 /// \author Heinrichs Weikamp gmbh | |
7 /// \date 10-Nov-2014 | |
8 /// | |
9 /// \details | |
10 /// | |
11 /// $Id$ | |
12 /////////////////////////////////////////////////////////////////////////////// | |
13 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh | |
14 /// | |
15 /// This program is free software: you can redistribute it and/or modify | |
16 /// it under the terms of the GNU General Public License as published by | |
17 /// the Free Software Foundation, either version 3 of the License, or | |
18 /// (at your option) any later version. | |
19 /// | |
20 /// This program is distributed in the hope that it will be useful, | |
21 /// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 /// GNU General Public License for more details. | |
24 /// | |
25 /// You should have received a copy of the GNU General Public License | |
26 /// along with this program. If not, see <http://www.gnu.org/licenses/>. | |
27 ////////////////////////////////////////////////////////////////////////////// | |
28 | |
29 /* Includes ------------------------------------------------------------------*/ | |
30 #include "t3.h" | |
31 | |
32 #include "data_exchange_main.h" | |
33 #include "decom.h" | |
34 #include "gfx_fonts.h" | |
35 #include "math.h" | |
36 #include "tHome.h" | |
37 #include "timer.h" | |
38 #include "unit.h" | |
39 | |
237
ec16fd26e280
Bugfix: do not show NDL in bigscreen mode when zero
Jan Mulder <jlmulder@xs4all.nl>
parents:
214
diff
changeset
|
40 //* Imported function prototypes ---------------------------------------------*/ |
38 | 41 extern uint8_t write_gas(char *text, uint8_t oxygen, uint8_t helium); |
42 | |
43 /* Exported variables --------------------------------------------------------*/ | |
44 | |
45 const uint16_t BigFontSeperationLeftRight = 399; | |
46 const uint16_t BigFontSeperationTopBottom = 240; | |
47 | |
48 /* Private variables ---------------------------------------------------------*/ | |
49 GFX_DrawCfgScreen t3screen; | |
50 GFX_DrawCfgWindow t3l1; | |
51 GFX_DrawCfgWindow t3r1; | |
52 GFX_DrawCfgWindow t3c1; | |
53 GFX_DrawCfgWindow t3c2; | |
54 | |
55 uint8_t t3_selection_customview = 0; | |
56 | |
57 /* TEM HAS TO MOVE TO GLOBAL--------------------------------------------------*/ | |
58 | |
59 /* Private types -------------------------------------------------------------*/ | |
60 #define TEXTSIZE 16 | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
61 #define NUMBER_OF_VIEWS 7 /* number of views defined in the array below */ |
38 | 62 |
63 const uint8_t t3_customviewsStandard[] = | |
64 { | |
65 CVIEW_T3_Decostop, | |
66 CVIEW_sensors, | |
67 CVIEW_Compass, | |
68 CVIEW_T3_MaxDepth, | |
69 CVIEW_T3_StopWatch, | |
70 CVIEW_T3_TTS, | |
71 CVIEW_T3_ppO2andGas, | |
518 | 72 CVIEW_T3_GasList, |
511 | 73 CVIEW_T3_Navigation, |
74 CVIEW_T3_DepthData, | |
38 | 75 CVIEW_T3_END |
76 }; | |
77 | |
78 /* Private function prototypes -----------------------------------------------*/ | |
79 void t3_refresh_divemode(void); | |
80 | |
81 uint8_t t3_test_customview_warnings(void); | |
82 void t3_refresh_customview(float depth); | |
496 | 83 void t3_basics_compass(GFX_DrawCfgScreen *tXscreen, point_t center, uint16_t ActualHeading, uint16_t UserSetHeading); |
38 | 84 |
85 /* Exported functions --------------------------------------------------------*/ | |
86 | |
87 void t3_init(void) | |
88 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
89 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
90 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
91 |
496 | 92 t3_selection_customview = t3_customviewsStandard[0]; |
38 | 93 |
94 t3screen.FBStartAdress = 0; | |
95 t3screen.ImageHeight = 480; | |
96 t3screen.ImageWidth = 800; | |
97 t3screen.LayerIndex = 1; | |
98 | |
99 t3l1.Image = &t3screen; | |
100 t3l1.WindowNumberOfTextLines = 2; | |
101 t3l1.WindowLineSpacing = 19; // Abstand von Y0 | |
102 t3l1.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
103 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
104 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
105 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
106 t3l1.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
107 t3l1.WindowX1 = BigFontSeperationLeftRight - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
108 t3l1.WindowY0 = BigFontSeperationTopBottom + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
109 t3l1.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
110 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
111 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
112 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
113 t3l1.WindowX0 = 800 - BigFontSeperationLeftRight + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
114 t3l1.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
115 t3l1.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
116 t3l1.WindowY1 = 479 - BigFontSeperationTopBottom + 5 ; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
117 } |
38 | 118 |
119 t3r1.Image = &t3screen; | |
120 t3r1.WindowNumberOfTextLines = t3l1.WindowNumberOfTextLines; | |
121 t3r1.WindowLineSpacing = t3l1.WindowLineSpacing; | |
122 t3r1.WindowTab = t3l1.WindowTab; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
123 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
124 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
125 t3r1.WindowX0 = BigFontSeperationLeftRight + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
126 t3r1.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
127 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
128 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
129 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
130 t3r1.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
131 t3r1.WindowX1 = BigFontSeperationLeftRight - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
132 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
133 |
38 | 134 t3r1.WindowY0 = t3l1.WindowY0; |
135 t3r1.WindowY1 = t3l1.WindowY1; | |
136 | |
518 | 137 /* t3c1 is across the complete lower part of the display */ |
38 | 138 t3c1.Image = &t3screen; |
139 t3c1.WindowNumberOfTextLines = 2; | |
518 | 140 t3c1.WindowLineSpacing = 84 + 5; /* double font + spacing */ |
38 | 141 t3c1.WindowX0 = 0; |
142 t3c1.WindowX1 = 799; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
143 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
144 { |
511 | 145 t3c1.WindowY0 = 5; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
146 t3c1.WindowY1 = BigFontSeperationTopBottom - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
147 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
148 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
149 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
150 t3c1.WindowY0 = 480 - BigFontSeperationTopBottom + 5; |
511 | 151 t3c1.WindowY1 = 479 - 5; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
152 } |
38 | 153 |
518 | 154 /* t3c2 is just showing the lower right part of the display */ |
38 | 155 t3c2.Image = &t3screen; |
156 t3c2.WindowNumberOfTextLines = 3; | |
511 | 157 t3c2.WindowLineSpacing = t3c1.WindowLineSpacing ; |
38 | 158 t3c2.WindowX0 = 370; |
159 t3c2.WindowX1 = 799; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
160 t3c2.WindowY0 = t3c1.WindowY0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
161 t3c2.WindowY1 = t3c1.WindowY1; |
38 | 162 t3c2.WindowTab = 600; |
163 } | |
164 | |
165 | |
166 void t3_refresh(void) | |
167 { | |
496 | 168 static uint8_t last_mode = MODE_SURFACE; |
169 | |
38 | 170 SStateList status; |
171 get_globalStateList(&status); | |
172 | |
173 if(stateUsed->mode != MODE_DIVE) | |
174 { | |
175 settingsGetPointer()->design = 7; | |
176 return; | |
177 } | |
178 | |
179 if(status.base != BaseHome) | |
180 return; | |
181 | |
496 | 182 if(last_mode != MODE_DIVE) /* Select customview */ |
183 { | |
184 if((settingsGetPointer()->tX_customViewTimeout == 0) && (settingsGetPointer()->showDebugInfo)) | |
185 { | |
186 t3_selection_customview = CVIEW_noneOrDebug; | |
187 } | |
188 else | |
189 { | |
190 t3_selection_customview = settingsGetPointer()->tX_customViewPrimary; | |
191 } | |
192 t3_change_customview(ACTION_END); | |
193 } | |
38 | 194 t3screen.FBStartAdress = getFrame(24); |
195 t3_refresh_divemode(); | |
166
255eedad4155
cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents:
138
diff
changeset
|
196 GFX_SetFramesTopBottom(t3screen.FBStartAdress, 0,480); |
38 | 197 releaseAllFramesExcept(24,t3screen.FBStartAdress); |
496 | 198 last_mode = stateUsed->mode; |
38 | 199 } |
200 | |
201 | |
202 /* Private functions ---------------------------------------------------------*/ | |
203 | |
204 float t3_basics_lines_depth_and_divetime(GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXl1, GFX_DrawCfgWindow* tXr1, uint8_t mode) | |
205 { | |
518 | 206 char text[256]; |
207 uint8_t textPointer; | |
38 | 208 uint8_t color; |
209 uint8_t depthChangeRate; | |
210 uint8_t depthChangeAscent; | |
211 point_t start, stop, startZeroLine; | |
518 | 212 SDivetime Divetime = {0,0,0,0}; |
38 | 213 |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
214 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
215 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
216 |
38 | 217 start.x = 0; |
218 stop.x = 799; | |
219 stop.y = start.y = BigFontSeperationTopBottom; | |
220 GFX_draw_line(tXscreen, start, stop, CLUT_Font020); | |
221 | |
222 start.y = BigFontSeperationTopBottom; | |
223 stop.y = 479; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
224 |
38 | 225 stop.x = start.x = BigFontSeperationLeftRight; |
226 GFX_draw_line(tXscreen, start, stop, CLUT_Font020); | |
227 | |
228 /* depth */ | |
174
ecb71521d004
Bugfix: make max depth move with current depth (part 2)
Jan Mulder <jlmulder@xs4all.nl>
parents:
166
diff
changeset
|
229 float depth = unit_depth_float(stateUsed->lifeData.depth_meter); |
38 | 230 |
231 if(depth <= 0.3f) | |
232 depth = 0; | |
233 | |
234 if(settingsGetPointer()->nonMetricalSystem) | |
235 snprintf(text,TEXTSIZE,"\032\f[feet]"); | |
236 else | |
237 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Depth); | |
238 GFX_write_string(&FontT42,tXl1,text,0); | |
239 | |
240 if( ((mode == DIVEMODE_Apnea) && ((stateUsed->lifeData.ascent_rate_meter_per_min > 4) || (stateUsed->lifeData.ascent_rate_meter_per_min < -4 ))) | |
241 || ((mode != DIVEMODE_Apnea) && ((stateUsed->lifeData.ascent_rate_meter_per_min > 8) || (stateUsed->lifeData.ascent_rate_meter_per_min < -10))) | |
242 ) | |
243 { | |
244 snprintf(text,TEXTSIZE,"\f\002%.0f %c%c/min " | |
245 , unit_depth_float(stateUsed->lifeData.ascent_rate_meter_per_min) | |
246 , unit_depth_char1() | |
247 , unit_depth_char2() | |
248 ); | |
249 GFX_write_string(&FontT42,tXl1,text,0); | |
250 } | |
251 | |
252 if( depth < 100) | |
253 snprintf(text,TEXTSIZE,"\020\003\016%01.1f",depth); | |
254 else | |
255 snprintf(text,TEXTSIZE,"\020\003\016%01.0f",depth); | |
256 | |
257 t3_basics_colorscheme_mod(text); | |
258 GFX_write_string(&FontT105,tXl1,text,1); | |
259 | |
260 | |
261 /* ascentrate graph */ | |
262 if(mode == DIVEMODE_Apnea) | |
263 { | |
264 /* ascentrate graph - apnea mode */ | |
265 if(stateUsed->lifeData.ascent_rate_meter_per_min > 0) | |
266 { | |
267 depthChangeAscent = 1; | |
268 if(stateUsed->lifeData.ascent_rate_meter_per_min < 200) | |
269 depthChangeRate = (uint8_t)stateUsed->lifeData.ascent_rate_meter_per_min; | |
270 else | |
271 depthChangeRate = 200; | |
272 } | |
273 else | |
274 { | |
275 depthChangeAscent = 0; | |
276 if(stateUsed->lifeData.ascent_rate_meter_per_min > -200) | |
277 depthChangeRate = (uint8_t)(0 - stateUsed->lifeData.ascent_rate_meter_per_min); | |
278 else | |
279 depthChangeRate = 200; | |
280 } | |
413 | 281 |
282 if(!pSettings->FlipDisplay) | |
283 { | |
284 start.y = tXl1->WindowY0 - 1; | |
285 } | |
286 else | |
287 { | |
288 start.y = tXl1->WindowY1 + 1; | |
289 } | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
290 startZeroLine.y = start.y; |
38 | 291 for(int i = 0; i<5;i++) |
292 { | |
293 start.y += 40; | |
294 stop.y = start.y; | |
413 | 295 if(!pSettings->FlipDisplay) |
296 { | |
297 start.x = tXl1->WindowX1 - 1; | |
298 } | |
299 else | |
300 { | |
301 start.x = tXr1->WindowX1 - 1; | |
302 } | |
38 | 303 stop.x = start.x - 17; |
304 | |
305 if(depthChangeRate <= 6) | |
306 { | |
307 if(i == 2) | |
308 { | |
309 startZeroLine.y = start.y; | |
310 stop.x = start.x - 34; | |
311 } | |
312 } | |
313 else | |
314 { | |
315 if(((i == 1) && depthChangeAscent) || ((i == 3) && !depthChangeAscent)) | |
316 { | |
317 startZeroLine.y = start.y; | |
318 stop.x = start.x - 34; | |
319 } | |
320 } | |
321 GFX_draw_line(tXscreen, start, stop, 0); | |
322 } | |
323 // new thick bar design Sept. 2015 | |
324 if((stateUsed->lifeData.ascent_rate_meter_per_min > 4) || (stateUsed->lifeData.ascent_rate_meter_per_min < -4)) | |
325 { | |
326 start.y = startZeroLine.y; | |
327 if(depthChangeAscent) | |
328 { | |
329 color = CLUT_EverythingOkayGreen; | |
330 start.y += 7; // starte etwas weiter oben | |
331 stop.y = start.y + (uint16_t)(depthChangeRate * 4) - 9; // - x; // wegen der Liniendicke | |
332 if(stop.y > 475) | |
333 stop.y = 475; | |
334 } | |
335 else | |
336 { | |
337 color = CLUT_Font023; | |
338 start.y -= 7; | |
339 stop.y = start.y - (uint16_t)(depthChangeRate * 4) + 9; | |
340 if(stop.y <= tXl1->WindowY0) | |
341 stop.y = tXl1->WindowY0 + 1; | |
342 } | |
413 | 343 if(!pSettings->FlipDisplay) |
344 { | |
345 start.x = tXl1->WindowX1 - 3 - 5; | |
346 } | |
347 else | |
348 { | |
349 start.x = tXr1->WindowX1 - 3 - 5; | |
350 } | |
351 | |
352 stop.x = start.x; | |
38 | 353 GFX_draw_thick_line(12,tXscreen, start, stop, color); |
354 } | |
355 } | |
356 else | |
357 { | |
358 /* ascentrate graph -standard mode */ | |
359 if(stateUsed->lifeData.ascent_rate_meter_per_min > 0) | |
360 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
361 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
362 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
363 start.y = tXl1->WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
364 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
365 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
366 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
367 start.y = tXl1->WindowY1 + 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
368 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
369 |
38 | 370 for(int i = 0; i<4;i++) |
371 { | |
372 start.y += 5*8; | |
373 stop.y = start.y; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
374 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
375 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
376 start.x = tXl1->WindowX1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
377 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
378 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
379 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
380 start.x = tXr1->WindowX1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
381 } |
38 | 382 stop.x = start.x - 17; |
383 GFX_draw_line(tXscreen, start, stop, 0); | |
384 } | |
385 // new thick bar design Sept. 2015 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
386 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
387 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
388 start.x = tXl1->WindowX1 - 3 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
389 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
390 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
391 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
392 start.x = tXr1->WindowX1 - 3 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
393 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
394 |
38 | 395 stop.x = start.x; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
396 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
397 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
398 start.y = tXl1->WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
399 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
400 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
401 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
402 start.y = tXl1->WindowY1 + 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
403 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
404 |
38 | 405 stop.y = start.y + (uint16_t)(stateUsed->lifeData.ascent_rate_meter_per_min * 8); |
406 stop.y -= 3; // wegen der Liniendicke von 12 anstelle von 9 | |
407 if(stop.y >= 470) | |
408 stop.y = 470; | |
409 start.y += 7; // starte etwas weiter oben | |
410 if(stateUsed->lifeData.ascent_rate_meter_per_min <= 10) | |
411 color = CLUT_EverythingOkayGreen; | |
412 else | |
413 if(stateUsed->lifeData.ascent_rate_meter_per_min <= 15) | |
414 color = CLUT_WarningYellow; | |
415 else | |
416 color = CLUT_WarningRed; | |
417 | |
418 GFX_draw_thick_line(12,tXscreen, start, stop, color); | |
419 } | |
420 } | |
421 | |
422 // divetime | |
423 if(mode == DIVEMODE_Apnea) | |
424 { | |
425 if(stateUsed->lifeData.counterSecondsShallowDepth) | |
426 { | |
427 SDivetime SurfaceBreakTime = {0,0,0,0}; | |
428 | |
429 SurfaceBreakTime.Total = stateUsed->lifeData.counterSecondsShallowDepth; | |
430 SurfaceBreakTime.Minutes = SurfaceBreakTime.Total / 60; | |
431 SurfaceBreakTime.Seconds = SurfaceBreakTime.Total - (SurfaceBreakTime.Minutes * 60); | |
432 | |
433 snprintf(text,TEXTSIZE,"\032\f\002%c%c", TXT_2BYTE,TXT2BYTE_ApneaSurface); | |
434 GFX_write_string(&FontT42,tXr1,text,0); | |
435 | |
436 snprintf(text,TEXTSIZE,"\020\003\016\002%u:%02u",SurfaceBreakTime.Minutes, SurfaceBreakTime.Seconds); | |
437 } | |
438 else | |
439 { | |
440 Divetime.Total = stateUsed->lifeData.dive_time_seconds; | |
441 Divetime.Minutes = Divetime.Total / 60; | |
442 Divetime.Seconds = Divetime.Total - ( Divetime.Minutes * 60 ); | |
443 | |
444 snprintf(text,TEXTSIZE,"\032\f\002%c",TXT_Divetime); | |
445 GFX_write_string(&FontT42,tXr1,text,0); | |
446 | |
447 if(Divetime.Minutes < 100) | |
448 snprintf(text,TEXTSIZE,"\020\003\016\002%u:%02u",Divetime.Minutes, Divetime.Seconds); | |
449 else | |
450 snprintf(text,TEXTSIZE,"\020\003\016\002%u'",Divetime.Minutes); | |
451 } | |
518 | 452 t3_basics_colorscheme_mod(text); |
453 GFX_write_string(&FontT105,tXr1,text,1); | |
38 | 454 } |
455 else | |
456 { | |
518 | 457 switch(get_globalState()) |
458 { | |
459 case StDBEAR: snprintf(text,TEXTSIZE,"\a\003\001%c%c", TXT_2BYTE, TXT2BYTE_DiveBearingQ); | |
460 GFX_write_string_color(&FontT42,tXr1,text,1,CLUT_WarningYellow); | |
461 break; | |
462 case StDRAVG: snprintf(text,TEXTSIZE,"\a\003\001%c%c", TXT_2BYTE, TXT2BYTE_DiveResetAvgQ); | |
463 GFX_write_string_color(&FontT42,tXr1,text,1,CLUT_WarningYellow); | |
464 break; | |
38 | 465 |
518 | 466 case StDMGAS: |
467 textPointer = 0; | |
468 text[textPointer++] = '\a'; | |
469 text[textPointer++] = '\001'; | |
470 text[textPointer++] = ' '; | |
471 textPointer += tHome_gas_writer(stateUsed->diveSettings.gas[actualBetterGasId()].oxygen_percentage,stateUsed->diveSettings.gas[actualBetterGasId()].helium_percentage,&text[textPointer]); | |
472 text[textPointer++] = '?'; | |
473 text[textPointer++] = ' '; | |
474 text[textPointer++] = 0; | |
475 GFX_write_string_color(&FontT42,tXr1,text,1,CLUT_WarningYellow); | |
476 break; | |
477 default: /* show divetime */ | |
38 | 478 |
518 | 479 Divetime.Total = stateUsed->lifeData.dive_time_seconds_without_surface_time; |
480 Divetime.Minutes = Divetime.Total / 60; | |
481 Divetime.Seconds = Divetime.Total - ( Divetime.Minutes * 60 ); | |
482 | |
483 snprintf(text,TEXTSIZE,"\032\f\002%c",TXT_Divetime); | |
484 GFX_write_string(&FontT42,tXr1,text,0); | |
485 | |
486 if(Divetime.Minutes < 100) | |
487 snprintf(text,TEXTSIZE,"\020\003\016\002%u:%02u",Divetime.Minutes, Divetime.Seconds); | |
488 else | |
489 snprintf(text,TEXTSIZE,"\020\003\016\002%u'",Divetime.Minutes); | |
490 | |
491 t3_basics_colorscheme_mod(text); | |
492 GFX_write_string(&FontT105,tXr1,text,1); | |
493 break; | |
494 } | |
38 | 495 } |
496 | |
497 return depth; | |
498 } | |
499 | |
500 | |
501 void t3_refresh_divemode(void) | |
502 { | |
503 uint8_t customview_warnings = 0; | |
504 float depth_meter = 0.0; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
505 |
38 | 506 // everything like lines, depth, ascent graph and divetime |
507 depth_meter = t3_basics_lines_depth_and_divetime(&t3screen, &t3l1, &t3r1, 0); // 0 could be stateUsed->diveSettings.diveMode for CCR specials | |
508 | |
509 // customview | |
510 if(stateUsed->warnings.numWarnings) | |
511 customview_warnings = t3_test_customview_warnings(); | |
512 | |
513 if(customview_warnings && warning_count_high_time) | |
514 t3_basics_show_customview_warnings(&t3c1); | |
515 else | |
516 t3_refresh_customview(depth_meter); | |
517 | |
518 if(stateUsed->warnings.lowBattery) | |
496 | 519 t3_basics_battery_low_customview_extra(&t3r1); //t3c1); |
38 | 520 } |
521 | |
522 | |
523 void t3_basics_battery_low_customview_extra(GFX_DrawCfgWindow* tXc1) | |
524 { | |
525 char TextC1[256]; | |
526 | |
496 | 527 TextC1[0] = ' ';//'\002'; |
38 | 528 TextC1[1] = '\f'; |
529 TextC1[2] = '\025'; | |
530 TextC1[3] = '3'; | |
531 TextC1[4] = '1'; | |
532 TextC1[5] = '1'; | |
533 TextC1[6] = '1'; | |
534 TextC1[7] = '1'; | |
535 TextC1[8] = '1'; | |
536 TextC1[9] = '1'; | |
537 TextC1[10] = '1'; | |
538 TextC1[11] = '1'; | |
539 TextC1[12] = '1'; | |
540 TextC1[13] = '1'; | |
541 TextC1[14] = '0'; | |
542 TextC1[15] = 0; | |
543 | |
544 if(!warning_count_high_time) | |
545 TextC1[4] = '2'; | |
546 | |
547 GFX_write_string(&Batt24,tXc1,TextC1,0); | |
548 } | |
549 | |
550 | |
551 | |
552 void t3_refresh_customview(float depth) | |
553 { | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
554 #if 0 |
38 | 555 if((t3_selection_customview == CVIEW_sensors) &&(stateUsed->diveSettings.ccrOption == 0)) |
556 t3_change_customview(); | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
557 #endif |
272
74a8296a2318
cleanup: simplify stateUsed usage
Jan Mulder <jlmulder@xs4all.nl>
parents:
237
diff
changeset
|
558 t3_basics_refresh_customview(depth, t3_selection_customview, &t3screen, &t3c1, &t3c2, stateUsedWrite->diveSettings.diveMode); |
38 | 559 } |
560 | |
561 | |
562 void t3_basics_refresh_apnoeRight(float depth, uint8_t tX_selection_customview, GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXc1, GFX_DrawCfgWindow* tXc2, uint8_t mode) | |
563 { | |
564 char text[512]; | |
565 uint16_t textpointer = 0; | |
566 | |
567 // CVIEW_T3_Temperature | |
568 float temperature; | |
413 | 569 SSettings* pSettings; |
570 pSettings = settingsGetPointer(); | |
38 | 571 |
572 SDivetime TotalDivetime = {0,0,0,0}; | |
573 SDivetime LastDivetime = {0,0,0,0}; | |
574 | |
575 uint16_t tempWinX0; | |
413 | 576 uint16_t tempWinX1; |
38 | 577 uint16_t tempWinY0; |
413 | 578 uint16_t tempWinY1; |
38 | 579 |
580 tempWinX0 = tXc1->WindowX0; | |
413 | 581 tempWinX1 = tXc1->WindowX1; |
38 | 582 tempWinY0 = tXc1->WindowY0; |
413 | 583 tempWinY1 = tXc1->WindowY1; |
38 | 584 |
585 tXc1->WindowX0 = 440; // rechte Seite | |
586 | |
587 switch(tX_selection_customview) | |
588 { | |
589 case CVIEW_T3_Temperature: | |
590 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Temperature); | |
591 GFX_write_string(&FontT42,tXc1,text,0); | |
592 | |
189
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
174
diff
changeset
|
593 temperature = unit_temperature_float(stateUsed->lifeData.temperature_celsius); |
38 | 594 textpointer = snprintf(text,TEXTSIZE,"\020\003\016%01.0f\016\016\140",temperature); // "\016\016%01.1f `" + C or F |
595 if(settingsGetPointer()->nonMetricalSystem == 0) | |
596 text[textpointer++] = 'C'; | |
597 else | |
598 text[textpointer++] = 'F'; | |
599 text[textpointer++] = 0; | |
600 t3_basics_colorscheme_mod(text); | |
601 GFX_write_string(&FontT105,tXc1,text,1); | |
602 break; | |
603 | |
604 case CVIEW_T3_ApnoeSurfaceInfo: | |
605 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Divetime); | |
606 GFX_write_string(&FontT42,tXc1,text,0); | |
607 | |
608 TotalDivetime.Total = stateUsed->lifeData.dive_time_seconds_without_surface_time; | |
609 TotalDivetime.Minutes = TotalDivetime.Total / 60; | |
610 TotalDivetime.Seconds = TotalDivetime.Total - ( TotalDivetime.Minutes * 60 ); | |
611 | |
612 LastDivetime.Total = stateUsed->lifeData.apnea_last_dive_time_seconds; | |
613 LastDivetime.Minutes = LastDivetime.Total / 60; | |
614 LastDivetime.Seconds = LastDivetime.Total - ( LastDivetime.Minutes * 60 ); | |
615 | |
413 | 616 // tXc1->WindowY0 = 100; // obere Zeile |
617 if(!pSettings->FlipDisplay) | |
618 { | |
619 tXc1->WindowY0 = 100; | |
620 } | |
621 else | |
622 { | |
623 tXc1->WindowY1 -= 100; /* jump to upper of two lines */ | |
624 } | |
38 | 625 |
626 snprintf(text,TEXTSIZE,"\020\016%u:%02u",LastDivetime.Minutes, LastDivetime.Seconds); | |
627 t3_basics_colorscheme_mod(text); | |
628 GFX_write_string(&FontT105,tXc1,text,0); | |
629 | |
413 | 630 if(pSettings->FlipDisplay) |
631 { | |
632 tXc1->WindowX0 = 0; | |
633 | |
634 } | |
38 | 635 snprintf(text,TEXTSIZE,"\032\002%c%c",TXT_2BYTE, TXT2BYTE_ApneaLast); |
636 GFX_write_string(&FontT42,tXc1,text,0); | |
637 | |
413 | 638 if(!pSettings->FlipDisplay) |
639 { | |
640 tXc1->WindowY0 = tempWinY0; | |
641 } | |
642 else | |
643 { | |
644 tXc1->WindowX1 = tempWinX1; | |
645 tXc1->WindowY1 = tempWinY1; /* jump to upper of two lines */ | |
646 } | |
38 | 647 |
648 snprintf(text,TEXTSIZE,"\020\016%u:%02u",TotalDivetime.Minutes, TotalDivetime.Seconds); | |
649 t3_basics_colorscheme_mod(text); | |
650 GFX_write_string(&FontT105,tXc1,text,0); | |
651 | |
652 snprintf(text,TEXTSIZE,"\032\002%c%c",TXT_2BYTE, TXT2BYTE_ApneaTotal); | |
413 | 653 if(pSettings->FlipDisplay) |
654 { | |
655 tXc1->WindowX0 = 0; | |
656 | |
657 } | |
38 | 658 GFX_write_string(&FontT42,tXc1,text,0); |
659 break; | |
660 } | |
661 | |
662 tXc1->WindowX0 = tempWinX0; | |
413 | 663 tXc1->WindowX1 = tempWinX1; |
38 | 664 tXc1->WindowY0 = tempWinY0; |
665 | |
666 } | |
667 | |
668 | |
669 void t3_basics_refresh_customview(float depth, uint8_t tX_selection_customview, GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXc1, GFX_DrawCfgWindow* tXc2, uint8_t mode) | |
670 { | |
671 char text[512]; | |
672 uint16_t textpointer = 0; | |
673 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
674 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
675 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
676 |
38 | 677 // CVIEW_T3_Decostop and CVIEW_T3_TTS |
678 const SDecoinfo * pDecoinfo; | |
679 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
680 pDecoinfo = &stateUsed->decolistBuehlmann; | |
681 else | |
682 pDecoinfo = &stateUsed->decolistVPM; | |
683 | |
684 // CVIEW_T3_Decostop | |
685 uint16_t nextstopLengthSeconds = 0; | |
686 uint8_t nextstopDepthMeter = 0; | |
687 SDivetime SafetyStopTime = {0,0,0,0}; | |
688 | |
689 // CVIEW_T3_ppO2andGas | |
690 uint8_t oxygen_percentage = 0; | |
691 | |
692 // CVIEW_T3_Temperature | |
693 float temperature; | |
694 | |
695 // CVIEW_T3_GasList | |
696 float fPpO2limitHigh, fPpO2limitLow, fPpO2ofGasAtThisDepth; | |
697 const SGasLine * pGasLine; | |
698 uint8_t oxygen, helium; | |
699 uint8_t lineNumber; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
700 uint8_t gasPosIdx; |
38 | 701 |
496 | 702 /* compass position */ |
703 point_t center; | |
704 | |
38 | 705 // CVIEW_T3_StopWatch |
706 SDivetime Stopwatch = {0,0,0,0}; | |
707 float fAverageDepth, fAverageDepthAbsolute; | |
708 | |
709 uint16_t tempWinX0; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
710 uint16_t tempWinX1; |
38 | 711 uint16_t tempWinY0; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
712 uint16_t tempWinY1; |
38 | 713 uint16_t tempWinC2X0; |
413 | 714 uint16_t tempWinC2Y0; |
715 uint16_t tempWinC2X1; | |
716 uint16_t tempWinC2Y1; | |
38 | 717 uint16_t tempWinC2Tab; |
718 | |
719 tempWinX0 = tXc1->WindowX0; | |
720 tempWinY0 = tXc1->WindowY0; | |
496 | 721 tempWinX1 = tXc1->WindowX1; |
722 tempWinY1 = tXc1->WindowY1; | |
413 | 723 |
38 | 724 tempWinC2X0 = tXc2->WindowX0; |
413 | 725 tempWinC2Y0 = tXc2->WindowY0; |
726 tempWinC2X1 = tXc2->WindowX1; | |
727 tempWinC2Y1 = tXc2->WindowY1; | |
38 | 728 tempWinC2Tab = tXc2->WindowTab; |
729 | |
730 switch(tX_selection_customview) | |
731 { | |
732 case CVIEW_T3_ApnoeSurfaceInfo: | |
733 snprintf(text,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
734 | |
413 | 735 if(!pSettings->FlipDisplay) |
736 { | |
737 GFX_write_string(&FontT42,tXc1,text,0); | |
738 tXc1->WindowY0 = 100; | |
739 } | |
740 else | |
741 { | |
742 GFX_write_string(&FontT42,tXc2,text,0); | |
743 tXc2->WindowY1 -= 100; /* jump to upper of two lines */ | |
744 } | |
38 | 745 |
746 snprintf(text,TEXTSIZE,"\020\016%01.1f",unit_depth_float(stateUsed->lifeData.apnea_last_max_depth_meter)); | |
747 t3_basics_colorscheme_mod(text); | |
413 | 748 |
749 if(!pSettings->FlipDisplay) | |
750 { | |
751 GFX_write_string(&FontT105,tXc1,text,0); | |
752 tXc1->WindowY0 = tempWinY0; | |
753 } | |
754 else | |
755 { | |
756 GFX_write_string(&FontT105,tXc2,text,0); | |
757 tXc2->WindowY1 = tempWinC2Y1; /* jump to upper of two lines */ | |
758 } | |
38 | 759 |
760 | |
761 snprintf(text,TEXTSIZE,"\020\016%01.1f",unit_depth_float(stateUsed->lifeData.apnea_total_max_depth_meter)); | |
762 t3_basics_colorscheme_mod(text); | |
413 | 763 if(!pSettings->FlipDisplay) |
764 { | |
765 GFX_write_string(&FontT105,tXc1,text,0); | |
766 } | |
767 else | |
768 { | |
769 GFX_write_string(&FontT105,tXc2,text,0); | |
770 } | |
38 | 771 break; |
772 | |
773 case CVIEW_T3_StopWatch: | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
774 |
38 | 775 Stopwatch.Total = timer_Stopwatch_GetTime(); |
776 Stopwatch.Minutes = Stopwatch.Total / 60; | |
777 Stopwatch.Seconds = Stopwatch.Total - ( Stopwatch.Minutes * 60 ); | |
778 fAverageDepth = timer_Stopwatch_GetAvarageDepth_Meter(); | |
779 fAverageDepthAbsolute = stateUsed->lifeData.average_depth_meter; | |
780 | |
781 snprintf(text,TEXTSIZE,"\032\f%c",TXT_AvgDepth); | |
782 GFX_write_string(&FontT42,tXc1,text,0); | |
783 snprintf(text,TEXTSIZE,"\030\003\016%01.1f",unit_depth_float(fAverageDepthAbsolute)); | |
784 GFX_write_string(&FontT105,tXc1,text,0); | |
785 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
786 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
787 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
788 tXc1->WindowX0 = 480; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
789 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
790 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
791 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
792 tXc1->WindowX1 = 320; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
793 tXc1->WindowY0 = t3c1.WindowY0; /* select customer window */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
794 } |
38 | 795 // snprintf(text,TEXTSIZE,"\032\f%c%c - %c",TXT_2BYTE, TXT2BYTE_Clock, TXT_AvgDepth); |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
796 |
38 | 797 snprintf(text,TEXTSIZE,"\032\f%c", TXT_Stopwatch); |
798 GFX_write_string(&FontT42,tXc1,text,0); | |
799 snprintf(text,TEXTSIZE,"\030\016%01.1f",unit_depth_float(fAverageDepth)); | |
800 GFX_write_string(&FontT105,tXc1,text,0); | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
801 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
802 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
803 tXc1->WindowY0 = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
804 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
805 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
806 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
807 tXc1->WindowY1 -= 100; /* jump to upper of two lines */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
808 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
809 |
38 | 810 snprintf(text,TEXTSIZE,"\030%u:\016\016%02u",Stopwatch.Minutes, Stopwatch.Seconds); |
811 GFX_write_string(&FontT105,tXc1,text,0); | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
812 |
496 | 813 break; |
38 | 814 |
815 case CVIEW_T3_GasList: | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
816 gasPosIdx = 0; |
38 | 817 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE, TXT2BYTE_Gaslist); |
818 GFX_write_string(&FontT42,tXc1,text,0); | |
819 | |
820 textpointer = 0; | |
821 tXc2->WindowX0 = 0; | |
518 | 822 tXc2->WindowTab = 800/3; // /2 |
38 | 823 |
413 | 824 if(pSettings->FlipDisplay) |
825 { | |
826 tXc2->WindowY1 = 0; | |
827 } | |
828 | |
38 | 829 pGasLine = settingsGetPointer()->gas; |
830 if(actualLeftMaxDepth(stateUsed)) | |
831 fPpO2limitHigh = (float)(settingsGetPointer()->ppO2_max_deco) / 100; | |
832 else | |
833 fPpO2limitHigh = (float)(settingsGetPointer()->ppO2_max_std) / 100; | |
834 fPpO2limitLow = (float)(settingsGetPointer()->ppO2_min) / 100; | |
835 for(int gasId=1;gasId<=NUM_GASES;gasId++) | |
836 { | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
837 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
838 if(!pGasLine[gasId].note.ub.off) |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
839 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
840 #endif |
38 | 841 textpointer = 0; |
518 | 842 text[textpointer++] = '\003'; |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
843 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
844 lineNumber = 1; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
845 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
846 switch(gasPosIdx) |
38 | 847 { |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
848 case 0: lineNumber = 0; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
849 case 1: |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
850 break; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
851 case 4: text[textpointer++] = '\001'; /* display centered */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
852 break; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
853 case 2: lineNumber = 0; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
854 case 3: text[textpointer++] = '\002'; /* display right aligned */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
855 default: |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
856 break; |
38 | 857 } |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
858 #if 0 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
859 if(gasPosIdx < 3) |
518 | 860 { |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
861 lineNumber = 1; |
518 | 862 } |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
863 else |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
864 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
865 lineNumber = 0; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
866 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
867 #endif |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
868 gasPosIdx++; |
518 | 869 |
38 | 870 fPpO2ofGasAtThisDepth = (stateUsed->lifeData.pressure_ambient_bar - WATER_VAPOUR_PRESSURE) * pGasLine[gasId].oxygen_percentage / 100; |
871 if(pGasLine[gasId].note.ub.active == 0) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
872 strcpy(&text[textpointer++],"\031"); |
518 | 873 else if(stateUsed->lifeData.actualGas.GasIdInSettings == gasId) /* actual selected gas */ |
874 { | |
875 strcpy(&text[textpointer++],"\030"); | |
876 } | |
38 | 877 else if((fPpO2ofGasAtThisDepth > fPpO2limitHigh) || (fPpO2ofGasAtThisDepth < fPpO2limitLow)) |
878 strcpy(&text[textpointer++],"\025"); | |
518 | 879 else if(actualBetterGasId() == gasId) |
880 { | |
881 strcpy(&text[textpointer++],"\026"); /* Highlight better gas */ | |
882 } | |
38 | 883 else |
518 | 884 strcpy(&text[textpointer++],"\023"); /* Blue for travel or deco without special state */ |
38 | 885 |
886 text[textpointer++] = ' '; | |
887 oxygen = pGasLine[gasId].oxygen_percentage; | |
888 helium = pGasLine[gasId].helium_percentage; | |
889 textpointer += write_gas(&text[textpointer], oxygen, helium); | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
890 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
891 if((pGasLine[gasId].depth_meter) && (gasPosIdx < 5)) /* do not show for potential last gas because of formating issues */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
892 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
893 textpointer += snprintf(&text[textpointer],7,"\016\016%u%c%c",unit_depth_integer(pGasLine[gasId].depth_meter), unit_depth_char1(), unit_depth_char2()); |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
894 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
895 text[textpointer++] = 0; |
518 | 896 GFX_write_string(&FontT42, tXc1, text, lineNumber); |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
897 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
898 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
899 #endif |
38 | 900 } |
901 break; | |
902 | |
903 case CVIEW_T3_Temperature: | |
904 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Temperature); | |
905 GFX_write_string(&FontT42,tXc1,text,0); | |
189
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
174
diff
changeset
|
906 |
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
174
diff
changeset
|
907 temperature = unit_temperature_float(stateUsed->lifeData.temperature_celsius); |
38 | 908 textpointer = snprintf(text,TEXTSIZE,"\030\003\016%01.1f \140",temperature); // "\016\016%01.1f `" + C or F |
909 if(settingsGetPointer()->nonMetricalSystem == 0) | |
910 text[textpointer++] = 'C'; | |
911 else | |
912 text[textpointer++] = 'F'; | |
913 text[textpointer++] = 0; | |
914 GFX_write_string(&FontT105,tXc1,text,0); | |
915 break; | |
916 | |
917 case CVIEW_Compass: | |
496 | 918 center.x = 600; |
919 center.y = 116; | |
38 | 920 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE, TXT2BYTE_Compass); |
921 GFX_write_string(&FontT42,tXc1,text,0); | |
922 snprintf(text,100,"\030\003%03i`",(uint16_t)stateUsed->lifeData.compass_heading); | |
923 GFX_write_string(&FontT105,tXc1,text,0); | |
496 | 924 t3_basics_compass(tXscreen, center, (uint16_t)stateUsed->lifeData.compass_heading, stateUsed->diveSettings.compassHeading); |
38 | 925 break; |
926 | |
927 case CVIEW_T3_Decostop: | |
928 default: | |
929 // decostop | |
930 if(pDecoinfo->output_time_to_surface_seconds) | |
931 { | |
932 tHome_findNextStop(pDecoinfo->output_stop_length_seconds, &nextstopDepthMeter, &nextstopLengthSeconds); | |
933 } | |
934 else | |
935 { | |
936 nextstopDepthMeter = 0; | |
937 nextstopLengthSeconds = 0; | |
938 } | |
939 | |
940 SafetyStopTime.Total = timer_Safetystop_GetCountDown(); | |
941 SafetyStopTime.Minutes = SafetyStopTime.Total / 60; | |
942 SafetyStopTime.Seconds = SafetyStopTime.Total - (SafetyStopTime.Minutes * 60); | |
943 | |
944 if(nextstopDepthMeter) | |
945 { | |
946 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Decostop); | |
947 GFX_write_string(&FontT42,tXc1,text,0); | |
948 | |
949 textpointer = 0; | |
950 snprintf(&text[textpointer],TEXTSIZE,"\020\003%u%c%c %u'" | |
951 , unit_depth_integer(nextstopDepthMeter) | |
952 , unit_depth_char1_T105() | |
953 , unit_depth_char2_T105() | |
954 , (nextstopLengthSeconds+59)/60); | |
955 // old without feet hw 170703 snprintf(&text[textpointer],TEXTSIZE,"\020\003%um %u'",nextstopDepthMeter,(nextstopLengthSeconds+59)/60); | |
956 t3_basics_colorscheme_mod(text); | |
496 | 957 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 958 } |
959 else if(SafetyStopTime.Total && (depth > timer_Safetystop_GetDepthUpperLimit())) | |
960 { | |
961 textpointer = 0; | |
962 snprintf(&text[textpointer],TEXTSIZE,"\032\f%c%c",TXT_2BYTE,TXT2BYTE_SafetyStop2); | |
963 GFX_write_string(&FontT42,tXc1,text,0); | |
964 | |
965 textpointer = 0; | |
966 snprintf(&text[textpointer],TEXTSIZE,"\020\003\016%u:%02u",SafetyStopTime.Minutes,SafetyStopTime.Seconds); | |
967 t3_basics_colorscheme_mod(text); | |
496 | 968 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 969 } |
237
ec16fd26e280
Bugfix: do not show NDL in bigscreen mode when zero
Jan Mulder <jlmulder@xs4all.nl>
parents:
214
diff
changeset
|
970 else if(pDecoinfo->output_ndl_seconds) // NDL |
38 | 971 { |
972 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Nullzeit); | |
973 GFX_write_string(&FontT42,tXc1,text,0); | |
974 if(pDecoinfo->output_ndl_seconds < 1000 * 60) | |
975 snprintf(text,TEXTSIZE,"\020\003%i'",pDecoinfo->output_ndl_seconds/60); | |
976 else | |
977 snprintf(text,TEXTSIZE,"\020\003%ih",pDecoinfo->output_ndl_seconds/3600); | |
978 t3_basics_colorscheme_mod(text); | |
496 | 979 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 980 } |
981 break; | |
982 | |
983 case CVIEW_sensors: | |
984 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE,TXT2BYTE_O2monitor); | |
985 GFX_write_string(&FontT42,tXc1,text,0); | |
986 | |
987 for(int i=0;i<3;i++) | |
988 { | |
989 textpointer = 0; | |
990 text[textpointer++] = '\030'; | |
991 if(i==1) | |
992 text[textpointer++] = '\001'; | |
993 else if(i==2) | |
994 text[textpointer++] = '\002'; | |
995 if(stateUsed->diveSettings.ppo2sensors_deactivated & (1<<i)) | |
996 { | |
997 text[textpointer++] = '\031'; | |
998 text[textpointer++] = ' '; | |
999 text[textpointer++] = '-'; | |
1000 text[textpointer++] = ' '; | |
1001 } | |
1002 else | |
1003 { | |
1004 if(stateUsed->warnings.sensorOutOfBounds[i]) | |
1005 text[textpointer++] = '\025'; | |
1006 textpointer += snprintf(&text[textpointer],TEXTSIZE,"%.1f",stateUsed->lifeData.ppO2Sensor_bar[i]); | |
1007 } | |
496 | 1008 GFX_write_string(&FontT144,tXc1,text,0); |
38 | 1009 } |
1010 break; | |
1011 | |
1012 case CVIEW_T3_MaxDepth: | |
1013 snprintf(text,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
413 | 1014 if(pSettings->FlipDisplay) |
1015 { | |
1016 if(mode == DIVEMODE_Apnea) | |
1017 { | |
1018 GFX_write_string(&FontT42,tXc2,text,0); | |
1019 } | |
1020 else | |
1021 { | |
1022 GFX_write_string(&FontT42,tXc1,text,0); | |
1023 } | |
1024 } | |
1025 else | |
1026 { | |
1027 GFX_write_string(&FontT42,tXc1,text,0); | |
1028 } | |
38 | 1029 snprintf(text,TEXTSIZE,"\020\003\016%01.1f",unit_depth_float(stateUsed->lifeData.max_depth_meter)); |
1030 t3_basics_colorscheme_mod(text); | |
413 | 1031 if(pSettings->FlipDisplay) |
1032 { | |
1033 if(mode == DIVEMODE_Apnea) | |
1034 { | |
1035 GFX_write_string(&FontT105,tXc2,text,0); | |
1036 } | |
1037 else | |
1038 { | |
1039 GFX_write_string(&FontT105,tXc1,text,0); | |
1040 } | |
1041 } | |
1042 else | |
1043 { | |
496 | 1044 GFX_write_string(&FontT105,tXc1,text,0); |
413 | 1045 } |
38 | 1046 break; |
1047 | |
1048 case CVIEW_T3_TTS: | |
1049 snprintf(text,TEXTSIZE,"\032\f%c",TXT_TTS); | |
1050 GFX_write_string(&FontT42,tXc1,text,0); | |
1051 if(pDecoinfo->output_time_to_surface_seconds) | |
1052 { | |
1053 if(pDecoinfo->output_time_to_surface_seconds < 1000 * 60) | |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1054 snprintf(text,TEXTSIZE,"\020\003\002%i'",(pDecoinfo->output_time_to_surface_seconds + 59)/ 60); |
38 | 1055 else |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1056 snprintf(text,TEXTSIZE,"\020\003\002%ih",(pDecoinfo->output_time_to_surface_seconds + 59)/ 3600); |
38 | 1057 t3_basics_colorscheme_mod(text); |
496 | 1058 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1059 } |
1060 break; | |
1061 | |
1062 case CVIEW_T3_ppO2andGas: | |
1063 snprintf(text,TEXTSIZE,"\032\f%c",TXT_ppO2); | |
1064 GFX_write_string(&FontT42,tXc1,text,0); | |
1065 snprintf(text,TEXTSIZE,"\020\003%01.2f",stateUsed->lifeData.ppO2); | |
1066 t3_basics_colorscheme_mod(text); | |
496 | 1067 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1068 |
1069 textpointer = 0; | |
1070 text[textpointer++] = '\020'; | |
1071 text[textpointer++] = '\003'; | |
1072 oxygen_percentage = 100; | |
1073 oxygen_percentage -= stateUsed->lifeData.actualGas.nitrogen_percentage; | |
1074 oxygen_percentage -= stateUsed->lifeData.actualGas.helium_percentage; | |
1075 text[textpointer++] = '\002'; | |
1076 tHome_gas_writer(oxygen_percentage,stateUsed->lifeData.actualGas.helium_percentage,&text[textpointer]); | |
1077 //textpointer = snprintf(&text[textpointer],TEXTSIZE,"\020\002%02u/%02u",oxygen_percentage, stateUsed->lifeData.actualGas.helium_percentage); | |
1078 t3_basics_colorscheme_mod(text); | |
496 | 1079 GFX_write_string(&FontT48,tXc1,text,0); |
38 | 1080 break; |
496 | 1081 |
1082 case CVIEW_T3_Navigation: | |
1083 Stopwatch.Total = timer_Stopwatch_GetTime(); | |
1084 Stopwatch.Minutes = Stopwatch.Total / 60; | |
1085 Stopwatch.Seconds = Stopwatch.Total - ( Stopwatch.Minutes * 60 ); | |
1086 fAverageDepth = timer_Stopwatch_GetAvarageDepth_Meter(); | |
1087 | |
1088 if(!pSettings->FlipDisplay) | |
1089 { | |
1090 tXc2->WindowX0 = 550; | |
1091 } | |
1092 else | |
1093 { | |
1094 tXc2->WindowX1 = 800; | |
1095 tXc2->WindowY0 = t3c2.WindowY0; /* select customer window */ | |
1096 } | |
1097 | |
1098 snprintf(text,TEXTSIZE,"\032\002\f%c", TXT_Stopwatch); | |
511 | 1099 GFX_write_string(&FontT42,tXc1,text,0); |
496 | 1100 snprintf(text,TEXTSIZE,"\030\016\002%01.1f",unit_depth_float(fAverageDepth)); |
511 | 1101 GFX_write_string(&FontT105,tXc1,text,0); |
496 | 1102 if(!pSettings->FlipDisplay) |
1103 { | |
1104 tXc2->WindowY0 = 100; | |
1105 } | |
1106 else | |
1107 { | |
1108 tXc2->WindowY1 -= 100; /* jump to upper of two lines */ | |
1109 } | |
1110 | |
1111 snprintf(text,TEXTSIZE,"\030\002%u:\016\016%02u",Stopwatch.Minutes, Stopwatch.Seconds); | |
511 | 1112 GFX_write_string(&FontT105,tXc1,text,1); |
496 | 1113 |
1114 | |
1115 center.x = 400; | |
1116 center.y = 116; | |
1117 | |
1118 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE, TXT2BYTE_Compass); | |
1119 GFX_write_string(&FontT42,tXc1,text,0); | |
1120 //snprintf(text,100,"\030\003%03i`",(uint16_t)stateUsed->lifeData.compass_heading); | |
1121 snprintf(text,100,"\030%03i`",(uint16_t)stateUsed->lifeData.compass_heading); | |
1122 GFX_write_string(&FontT144,tXc1,text,0); | |
1123 t3_basics_compass(tXscreen, center, (uint16_t)stateUsed->lifeData.compass_heading, stateUsed->diveSettings.compassHeading); | |
1124 | |
1125 break; | |
1126 | |
1127 case CVIEW_T3_DepthData: | |
1128 snprintf(text,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
1129 if(pSettings->FlipDisplay) | |
1130 { | |
1131 if(mode == DIVEMODE_Apnea) | |
1132 { | |
1133 GFX_write_string(&FontT42,tXc2,text,0); | |
1134 } | |
1135 else | |
1136 { | |
1137 GFX_write_string(&FontT42,tXc1,text,0); | |
1138 } | |
1139 } | |
1140 else | |
1141 { | |
1142 GFX_write_string(&FontT42,tXc1,text,0); | |
1143 } | |
1144 snprintf(text,TEXTSIZE,"\020\003\016%01.1f",unit_depth_float(stateUsed->lifeData.max_depth_meter)); | |
1145 t3_basics_colorscheme_mod(text); | |
1146 if(pSettings->FlipDisplay) | |
1147 { | |
1148 if(mode == DIVEMODE_Apnea) | |
1149 { | |
1150 GFX_write_string(&FontT105,tXc2,text,0); | |
1151 } | |
1152 else | |
1153 { | |
1154 GFX_write_string(&FontT105,tXc1,text,0); | |
1155 } | |
1156 } | |
1157 else | |
1158 { | |
1159 GFX_write_string(&FontT105,tXc1,text,0); | |
1160 } | |
1161 fAverageDepthAbsolute = stateUsed->lifeData.average_depth_meter; | |
1162 snprintf(text,TEXTSIZE,"\032\002\f%c",TXT_AvgDepth); | |
511 | 1163 GFX_write_string(&FontT42,tXc1,text,0); |
496 | 1164 |
1165 snprintf(text,TEXTSIZE,"\020\003\016\002\%01.1f",unit_depth_float(fAverageDepthAbsolute)); | |
511 | 1166 GFX_write_string(&FontT105,tXc1,text,0); |
496 | 1167 break; |
38 | 1168 } |
496 | 1169 |
1170 | |
1171 | |
38 | 1172 tXc1->WindowX0 = tempWinX0; |
1173 tXc1->WindowY0 = tempWinY0; | |
496 | 1174 tXc1->WindowX1 = tempWinX1; |
1175 tXc1->WindowY1 = tempWinY1; | |
413 | 1176 |
38 | 1177 tXc2->WindowX0 = tempWinC2X0; |
413 | 1178 tXc2->WindowY0 = tempWinC2Y0; |
1179 tXc2->WindowX1 = tempWinC2X1; | |
1180 tXc2->WindowY1 = tempWinC2Y1; | |
38 | 1181 tXc2->WindowTab = tempWinC2Tab; |
1182 } | |
1183 | |
1184 | |
1185 uint8_t t3_test_customview_warnings(void) | |
1186 { | |
1187 uint8_t count = 0; | |
1188 | |
1189 count = 0; | |
1190 count += stateUsed->warnings.decoMissed; | |
1191 count += stateUsed->warnings.ppO2Low; | |
1192 count += stateUsed->warnings.ppO2High; | |
1193 //count += stateUsed->warnings.lowBattery; | |
1194 count += stateUsed->warnings.sensorLinkLost; | |
1195 count += stateUsed->warnings.fallback; | |
1196 | |
1197 return count; | |
1198 } | |
1199 | |
1200 //void t3_show_customview_warnings(GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXl1, GFX_DrawCfgWindow* tXr1, uint8_t mode) | |
1201 void t3_basics_show_customview_warnings(GFX_DrawCfgWindow* tXc1) | |
1202 { | |
1203 char text[256], textMain[256]; | |
1204 uint8_t textpointer, textpointerMain, lineFree, more; | |
1205 | |
1206 snprintf(text,TEXTSIZE,"\025\f%c",TXT_Warning); | |
1207 GFX_write_string(&FontT42,&t3c1,text,0); | |
1208 | |
1209 lineFree = 1; | |
1210 more = 0; | |
1211 | |
1212 textpointerMain = 0; | |
511 | 1213 textMain[textpointerMain++] = '\025'; /* red */ |
1214 textMain[textpointerMain++] = '\003'; /* doublesize */ | |
38 | 1215 |
1216 textpointer = 0; | |
1217 | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1218 text[textpointer++] = '\031'; |
38 | 1219 text[textpointer++] = TXT_2BYTE; |
1220 text[textpointer++] = TXT2BYTE_WarnDecoMissed; | |
1221 if(stateUsed->warnings.decoMissed) | |
1222 { | |
1223 text[textpointer - 3] = '\025'; | |
1224 if(lineFree) | |
1225 { | |
1226 textMain[textpointerMain++] = TXT_2BYTE; | |
1227 textMain[textpointerMain++] = text[textpointer - 1]; | |
1228 textMain[textpointerMain] = 0; | |
1229 lineFree--; | |
1230 } | |
1231 else | |
1232 { | |
1233 more++; | |
1234 } | |
1235 } | |
1236 | |
1237 text[textpointer++] = '\t'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1238 text[textpointer++] = '\031'; |
38 | 1239 text[textpointer++] = TXT_2BYTE; |
1240 text[textpointer++] = TXT2BYTE_WarnPPO2Low; | |
1241 if(stateUsed->warnings.ppO2Low) | |
1242 { | |
1243 text[textpointer - 3] = '\025'; | |
1244 if(lineFree) | |
1245 { | |
1246 textMain[textpointerMain++] = TXT_2BYTE; | |
1247 textMain[textpointerMain++] = text[textpointer - 1]; | |
1248 textMain[textpointerMain] = 0; | |
1249 lineFree--; | |
1250 } | |
1251 else | |
1252 { | |
1253 more++; | |
1254 } | |
1255 } | |
1256 | |
1257 text[textpointer++] = '\n'; | |
1258 text[textpointer++] = '\r'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1259 text[textpointer++] = '\031'; |
38 | 1260 text[textpointer++] = TXT_2BYTE; |
1261 text[textpointer++] = TXT2BYTE_WarnPPO2High; | |
1262 if(stateUsed->warnings.ppO2High) | |
1263 { | |
1264 text[textpointer - 3] = '\025'; | |
1265 if(lineFree) | |
1266 { | |
1267 textMain[textpointerMain++] = TXT_2BYTE; | |
1268 textMain[textpointerMain++] = text[textpointer - 1]; | |
1269 textMain[textpointerMain] = 0; | |
1270 lineFree--; | |
1271 } | |
1272 else | |
1273 { | |
1274 more++; | |
1275 } | |
1276 } | |
1277 | |
1278 text[textpointer++] = '\t'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1279 text[textpointer++] = '\031'; |
38 | 1280 text[textpointer++] = TXT_2BYTE; |
1281 text[textpointer++] = TXT2BYTE_WarnFallback; | |
1282 if(stateUsed->warnings.fallback) | |
1283 { | |
1284 text[textpointer - 3] = '\025'; | |
1285 if(lineFree) | |
1286 { | |
1287 textMain[textpointerMain++] = TXT_2BYTE; | |
1288 textMain[textpointerMain++] = text[textpointer - 1]; | |
1289 textMain[textpointerMain] = 0; | |
1290 lineFree--; | |
1291 } | |
1292 else | |
1293 { | |
1294 more++; | |
1295 } | |
1296 } | |
1297 | |
1298 text[textpointer++] = '\n'; | |
1299 text[textpointer++] = '\r'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1300 text[textpointer++] = '\031'; |
38 | 1301 text[textpointer++] = TXT_2BYTE; |
1302 text[textpointer++] = TXT2BYTE_WarnSensorLinkLost; | |
1303 if(stateUsed->warnings.sensorLinkLost) | |
1304 { | |
1305 text[textpointer - 3] = '\025'; | |
1306 if(lineFree) | |
1307 { | |
1308 textMain[textpointerMain++] = TXT_2BYTE; | |
1309 textMain[textpointerMain++] = text[textpointer - 1]; | |
1310 textMain[textpointerMain] = 0; | |
1311 lineFree--; | |
1312 } | |
1313 else | |
1314 { | |
1315 more++; | |
1316 } | |
1317 } | |
1318 | |
1319 /* | |
1320 text[textpointer++] = '\t'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1321 text[textpointer++] = '\031'; |
38 | 1322 text[textpointer++] = TXT_2BYTE; |
1323 text[textpointer++] = TXT2BYTE_WarnBatteryLow; | |
1324 if(stateUsed->warnings.lowBattery) | |
1325 { | |
1326 text[textpointer - 3] = '\025'; | |
1327 if(lineFree) | |
1328 { | |
1329 textMain[textpointerMain++] = TXT_2BYTE; | |
1330 textMain[textpointerMain++] = text[textpointer - 1]; | |
1331 textMain[textpointerMain] = 0; | |
1332 lineFree--; | |
1333 } | |
1334 else | |
1335 { | |
1336 more++; | |
1337 } | |
1338 } | |
1339 */ | |
1340 text[textpointer] = 0; | |
1341 /* | |
1342 if(more) | |
1343 { | |
1344 text[textpointer++] = '\002'; | |
1345 text[textpointer++] = '+'; | |
1346 if(more < 10) | |
1347 text[textpointer++] = '0' + more; | |
1348 else | |
1349 text[textpointer++] = 'X'; | |
1350 text[textpointer] = 0; | |
1351 } | |
1352 */ | |
511 | 1353 GFX_write_string(&FontT48,&t3c1,textMain,0); |
38 | 1354 if(more) |
1355 { | |
511 | 1356 GFX_write_string(&FontT48,&t3c2,text,0); |
38 | 1357 } |
1358 } | |
1359 | |
496 | 1360 uint8_t t3_customview_disabled(uint8_t view) |
1361 { | |
1362 uint8_t i = 0; | |
1363 uint8_t cv_disabled = 0; | |
1364 const uint8_t *pcv_changelist; | |
1365 uint32_t cv_config = settingsGetPointer()->cv_config_BigScreen; | |
1366 | |
511 | 1367 pcv_changelist = cv_changelist_BS; |
496 | 1368 |
1369 while(pcv_changelist[i] != CVIEW_T3_END) | |
1370 { | |
1371 if((view == pcv_changelist[i]) && !CHECK_BIT_THOME(cv_config, pcv_changelist[i])) | |
1372 { | |
1373 cv_disabled = 1; | |
1374 break; | |
1375 } | |
1376 i++; | |
1377 } | |
1378 | |
1379 if (((view == CVIEW_sensors) || (view == CVIEW_sensors_mV)) && | |
1380 ((stateUsed->diveSettings.ppo2sensors_deactivated) || (stateUsed->diveSettings.ccrOption == 0))) | |
1381 { | |
1382 cv_disabled = 1; | |
1383 } | |
1384 | |
1385 return cv_disabled; | |
1386 } | |
38 | 1387 |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1388 void t3_change_customview(uint8_t action) |
38 | 1389 { |
511 | 1390 |
496 | 1391 t3_basics_change_customview(&t3_selection_customview, t3_customviewsStandard, action); |
38 | 1392 } |
1393 | |
1394 | |
511 | 1395 void t3_basics_change_customview(uint8_t *tX_selection_customview,const uint8_t *tX_customviews, uint8_t action) |
38 | 1396 { |
1397 const SDecoinfo * pDecoinfo; | |
1398 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
1399 pDecoinfo = &stateUsed->decolistBuehlmann; | |
1400 else | |
1401 pDecoinfo = &stateUsed->decolistVPM; | |
1402 | |
511 | 1403 uint8_t curViewIdx = 0xff; |
1404 uint8_t index = 0; | |
1405 uint8_t lastViewIdx = 0; | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1406 uint8_t iterate = 0; /* set to 1 if a view has to be skipped */ |
38 | 1407 |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1408 /* set pointer to currently selected view and count number of entries */ |
511 | 1409 while((tX_customviews[index] != CVIEW_T3_END)) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1410 { |
511 | 1411 if (tX_customviews[index] == *tX_selection_customview) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1412 { |
511 | 1413 curViewIdx = index; |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1414 } |
511 | 1415 index++; |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1416 } |
511 | 1417 if(curViewIdx == 0xff) /* called with unknown view */ |
496 | 1418 { |
511 | 1419 curViewIdx = 0; |
1420 *tX_selection_customview = tX_customviews[index]; | |
496 | 1421 } |
511 | 1422 lastViewIdx = index; |
1423 index = curViewIdx; | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1424 do |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1425 { |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1426 iterate = 0; |
496 | 1427 switch(action) |
1428 { | |
1429 case ACTION_BUTTON_ENTER: | |
1430 case ACTION_PITCH_POS: | |
1431 | |
511 | 1432 if(tX_customviews[index] != CVIEW_T3_END) |
496 | 1433 { |
511 | 1434 index++; |
1435 } | |
1436 if(tX_customviews[index] == CVIEW_T3_END) | |
1437 { | |
1438 index = 0; | |
496 | 1439 } |
1440 break; | |
1441 case ACTION_PITCH_NEG: | |
511 | 1442 if(index == 0) |
496 | 1443 { |
511 | 1444 index = lastViewIdx - 1; |
496 | 1445 } |
1446 else | |
1447 { | |
511 | 1448 index--; |
496 | 1449 } |
1450 break; | |
1451 default: | |
1452 break; | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1453 } |
496 | 1454 |
511 | 1455 if(t3_customview_disabled(tX_customviews[index])) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1456 { |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1457 iterate = 1; |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1458 } |
511 | 1459 if((tX_customviews[index] == CVIEW_T3_TTS) && !pDecoinfo->output_time_to_surface_seconds) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1460 { |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1461 iterate = 1; |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1462 } |
496 | 1463 if((iterate) && (action == ACTION_END)) |
1464 { | |
1465 action = ACTION_BUTTON_ENTER; | |
1466 } | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1467 }while (iterate == 1); |
38 | 1468 |
511 | 1469 *tX_selection_customview = tX_customviews[index]; |
38 | 1470 } |
1471 | |
1472 | |
1473 void t3_basics_colorscheme_mod(char *text) | |
1474 { | |
1475 if((text[0] == '\020') && !GFX_is_colorschemeDiveStandard()) | |
1476 { | |
1477 text[0] = '\027'; | |
1478 } | |
1479 } | |
1480 | |
1481 | |
496 | 1482 point_t t3_compass_circle(uint8_t id, uint16_t degree, point_t center) |
38 | 1483 { |
1484 float fCos, fSin; | |
1485 const float piMult = ((2 * 3.14159) / 360); | |
1486 // const int radius[4] = {95,105,115,60}; | |
1487 const int radius[4] = {85,95,105,90}; | |
496 | 1488 static point_t forcenter = {.x = 900, .y = 500}; /* used to identify change of circle position */ |
38 | 1489 static point_t r[4][360] = { 0 }; |
1490 | |
496 | 1491 if((r[0][0].y == 0) || (forcenter.x != center.x) || (forcenter.y != center.y)) /* calculate values only once during first call or if center position changed */ |
38 | 1492 { |
1493 for(int i=0;i<360;i++) | |
1494 { | |
1495 fCos = cos(i * piMult); | |
1496 fSin = sin(i * piMult); | |
1497 for(int j=0;j<4;j++) | |
1498 { | |
496 | 1499 r[j][i].x = center.x + (int)(fSin * radius[j]); |
1500 r[j][i].y = center.y + (int)(fCos * radius[j]); | |
38 | 1501 } |
1502 } | |
496 | 1503 forcenter.x = center.x; |
1504 forcenter.y = center.y; | |
38 | 1505 } |
1506 if(id > 3) id = 0; | |
1507 if(degree > 359) degree = 0; | |
1508 return r[id][degree]; | |
1509 } | |
1510 | |
1511 | |
496 | 1512 void t3_basics_compass(GFX_DrawCfgScreen *tXscreen, point_t center, uint16_t ActualHeading, uint16_t UserSetHeading) |
38 | 1513 { |
496 | 1514 uint8_t loop = 0; |
38 | 1515 uint16_t LineHeading; |
496 | 1516 |
38 | 1517 static int32_t LastHeading = 0; |
1518 int32_t newHeading = 0; | |
1519 int32_t diff = 0; | |
1520 int32_t diff2 = 0; | |
1521 | |
1522 int32_t diffAbs = 0; | |
1523 int32_t diffAbs2 = 0; | |
1524 | |
1525 newHeading = ActualHeading; | |
1526 | |
1527 diff = newHeading - LastHeading; | |
1528 | |
1529 if(newHeading < LastHeading) | |
1530 diff2 = newHeading + 360 - LastHeading; | |
1531 else | |
1532 diff2 = newHeading - 360 - LastHeading; | |
1533 | |
1534 diffAbs = diff; | |
1535 if(diffAbs < 0) | |
1536 diffAbs *= -1; | |
1537 | |
1538 diffAbs2 = diff2; | |
1539 if(diffAbs2 < 0) | |
1540 diffAbs2 *= -1; | |
1541 | |
1542 if(diffAbs <= diffAbs2) | |
1543 newHeading = LastHeading + (diff / 2); | |
1544 else | |
1545 newHeading = LastHeading + (diff2 / 2); | |
1546 | |
1547 if(newHeading < 0) | |
1548 newHeading += 360; | |
1549 else | |
1550 if(newHeading >= 360) | |
1551 newHeading -= 360; | |
1552 | |
1553 LastHeading = newHeading; | |
1554 ActualHeading = newHeading; | |
1555 | |
1556 if (ActualHeading < 90) | |
1557 ActualHeading += 360; | |
1558 | |
1559 while(ActualHeading > 359) ActualHeading -= 360; | |
1560 | |
1561 LineHeading = 360 - ActualHeading; | |
496 | 1562 |
1563 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(0,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font030); // North | |
38 | 1564 LineHeading += 90; |
496 | 1565 |
1566 for (loop = 0; loop < 3; loop++) | |
1567 { | |
1568 if(LineHeading > 359) LineHeading -= 360; | |
1569 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(0,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font031); // Main Ticks | |
1570 LineHeading += 90; | |
1571 } | |
38 | 1572 |
1573 LineHeading = 360 - ActualHeading; | |
1574 LineHeading += 45; | |
496 | 1575 |
1576 for (loop = 0; loop < 4; loop++) | |
1577 { | |
1578 if(LineHeading > 359) LineHeading -= 360; | |
1579 GFX_draw_thick_line(5,tXscreen, t3_compass_circle(1,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font031); // Subtick | |
1580 LineHeading += 90; | |
1581 } | |
38 | 1582 |
1583 LineHeading = 360 - ActualHeading; | |
1584 LineHeading += 22; | |
496 | 1585 for (loop = 0; loop < 8; loop++) |
1586 { | |
1587 if(LineHeading > 359) LineHeading -= 360; | |
1588 GFX_draw_thick_line(3,tXscreen, t3_compass_circle(1,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font031); // Subtick | |
1589 LineHeading += 45; | |
1590 } | |
38 | 1591 if(UserSetHeading) |
1592 { | |
1593 LineHeading = UserSetHeading + 360 - ActualHeading; | |
1594 if(LineHeading > 359) LineHeading -= 360; | |
496 | 1595 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(3,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_CompassUserHeadingTick); |
38 | 1596 |
1597 // R�ckpeilung, User Back Heading | |
1598 LineHeading = UserSetHeading + 360 + 180 - ActualHeading; | |
1599 if(LineHeading > 359) LineHeading -= 360; | |
1600 if(LineHeading > 359) LineHeading -= 360; | |
496 | 1601 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(3,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_CompassUserBackHeadingTick); |
38 | 1602 } |
1603 | |
1604 GFX_draw_circle(tXscreen, center, 106, CLUT_Font030); | |
1605 GFX_draw_circle(tXscreen, center, 107, CLUT_Font030); | |
1606 GFX_draw_circle(tXscreen, center, 108, CLUT_Font030); | |
1607 } | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1608 |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1609 uint8_t t3_GetEnabled_customviews() |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1610 { |
496 | 1611 uint8_t *pViews; |
1612 uint8_t increment = 1; | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1613 uint8_t enabledViewCnt = 0; |
496 | 1614 |
511 | 1615 pViews = (uint8_t*)t3_customviewsStandard; |
496 | 1616 while((*pViews != CVIEW_T3_END)) |
1617 { | |
1618 increment = 1; | |
1619 /* check if view is enabled */ | |
1620 if(t3_customview_disabled(*pViews)) | |
1621 { | |
1622 increment = 0; | |
1623 } | |
1624 pViews++; | |
1625 enabledViewCnt += increment; | |
1626 } | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1627 return enabledViewCnt; |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1628 } |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1629 |
518 | 1630 uint8_t t3_getCustomView(void) |
1631 { | |
1632 return t3_selection_customview; | |
1633 } |