Mercurial > public > ostc4
annotate Discovery/Src/t7.c @ 660:f4b553da620a
Add option to reset bluetooth name
author | heinrichsweikamp |
---|---|
date | Sun, 08 Aug 2021 09:36:23 +0200 |
parents | 3ccf13af4651 |
children | 87bee7cc77b3 |
rev | line source |
---|---|
38 | 1 /////////////////////////////////////////////////////////////////////////////// |
2 /// -*- coding: UTF-8 -*- | |
3 /// | |
4 /// \file Discovery/Src/t7.c | |
5 /// \brief Main Template file for dive mode 7x | |
6 /// \author Heinrichs Weikamp gmbh | |
7 /// \date 23-April-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 "t7.h" | |
595 | 31 #include "t3.h" |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
32 #include "settings.h" |
38 | 33 #include "data_exchange_main.h" |
34 #include "decom.h" | |
35 #include "gfx_fonts.h" | |
36 #include "logbook_miniLive.h" | |
37 #include "math.h" | |
660 | 38 #include "tComm.h" |
38 | 39 #include "tHome.h" |
40 #include "simulation.h" | |
41 #include "timer.h" | |
42 #include "unit.h" | |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
43 #include "motion.h" |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
44 #include "configuration.h" |
38 | 45 |
46 /* Private function prototypes -----------------------------------------------*/ | |
47 | |
48 void t7_refresh_surface(void); | |
49 void t7_refresh_surface_debugmode(void); | |
50 void t7_refresh_divemode(void); | |
51 void t7_refresh_sleep_design_fun(void); | |
52 void t7_refresh_divemode_userselected_left_lower_corner(void); | |
53 void t7_refresh_customview(void); | |
405 | 54 uint8_t t7_customview_disabled(uint8_t view); |
38 | 55 |
56 void draw_frame(_Bool PluginBoxHeader, _Bool LinesOnTheSides, uint8_t colorBox, uint8_t colorLinesOnTheSide); | |
57 | |
58 void t7_tissues(const SDiveState * pState); | |
59 void t7_compass(uint16_t ActualHeading, uint16_t UserSetHeading); | |
60 void t7_SummaryOfLeftCorner(void); | |
61 void t7_debug(void); | |
62 | |
63 void t7_miniLiveLogProfile(void); | |
64 void t7_logo_OSTC(void); | |
196
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
65 static void t7_colorscheme_mod(char *text); |
38 | 66 |
67 uint8_t t7_test_customview_warnings(void); | |
68 void t7_show_customview_warnings(void); | |
69 | |
70 uint8_t t7_test_customview_warnings_surface_mode(void); | |
71 void t7_show_customview_warnings_surface_mode(void); | |
72 | |
73 uint8_t t7_customtextPrepare(char * text); | |
74 | |
193
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
75 /* Imported function prototypes ---------------------------------------------*/ |
38 | 76 extern uint8_t write_gas(char *text, uint8_t oxygen, uint8_t helium); |
77 | |
78 /* Exported variables --------------------------------------------------------*/ | |
79 | |
80 /* Private variables ---------------------------------------------------------*/ | |
81 | |
82 GFX_DrawCfgScreen t7screen; | |
83 GFX_DrawCfgScreen t7screenCompass; | |
84 | |
85 /* left 3 fields | |
86 * right 3 fields | |
87 * centered one field on top of customview, one below | |
88 * customview header + customview + warning | |
89 */ | |
90 GFX_DrawCfgWindow t7l1, t7l2, t7l3; | |
91 GFX_DrawCfgWindow t7r1, t7r2, t7r3; | |
92 GFX_DrawCfgWindow t7c1, t7batt, t7c2, t7charge, t7voltage; | |
93 GFX_DrawCfgWindow t7cH, t7cC, t7cW, t7cY0free; | |
94 GFX_DrawCfgWindow t7pCompass; | |
95 GFX_DrawCfgWindow t7surfaceL, t7surfaceR; | |
96 | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
97 uint8_t selection_customview = LLC_Temperature; |
38 | 98 |
99 uint8_t updateNecessary = 0; | |
100 | |
101 typedef struct{ | |
102 uint32_t pointer; | |
103 uint32_t x0; | |
104 uint32_t y0; | |
105 uint32_t width; | |
106 uint32_t height; | |
107 } SBackground; | |
108 | |
109 SBackground background = | |
110 { | |
166
255eedad4155
cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents:
149
diff
changeset
|
111 .pointer = 0, |
38 | 112 }; |
113 | |
114 | |
115 /* Private types -------------------------------------------------------------*/ | |
116 const uint8_t customviewsDiveStandard[] = | |
117 { | |
118 CVIEW_sensors, | |
119 CVIEW_Compass, | |
120 CVIEW_Decolist, | |
121 CVIEW_Tissues, | |
122 CVIEW_Profile, | |
123 CVIEW_Gaslist, | |
124 CVIEW_sensors_mV, | |
125 CVIEW_EADTime, | |
126 CVIEW_SummaryOfLeftCorner, | |
127 CVIEW_noneOrDebug, | |
128 CVIEW_END, | |
129 CVIEW_END | |
130 }; | |
131 | |
132 const uint8_t customviewsSurfaceStandard[] = | |
133 { | |
134 // CVIEW_CompassDebug, | |
135 CVIEW_Hello, | |
136 CVIEW_sensors, | |
137 CVIEW_Compass, | |
138 CVIEW_Tissues, | |
139 CVIEW_sensors_mV, | |
140 CVIEW_END, | |
141 CVIEW_END | |
142 }; | |
143 | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
144 |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
145 static uint8_t selection_custom_field = LLC_Temperature; |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
146 |
38 | 147 const uint8_t *customviewsDive = customviewsDiveStandard; |
148 const uint8_t *customviewsSurface = customviewsSurfaceStandard; | |
149 | |
656 | 150 #define TEXTSIZE 30 |
38 | 151 /* offset includes line: 2 = line +1 |
152 * box (line) is 300 px | |
153 * inside is 296 px | |
154 * left of box are 249 px ( 0..248) | |
155 * right of box are 249 px (551 .. 799) | |
156 */ | |
157 | |
158 #define CUSTOMBOX_LINE_LEFT (250) | |
159 #define CUSTOMBOX_LINE_RIGHT (549) | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
160 #define CUSTOMBOX_LINE_TOP (0) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
161 #define CUSTOMBOX_LINE_MIDDLE (142) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
162 #define CUSTOMBOX_LINE_BOTTOM (318) |
38 | 163 #define CUSTOMBOX_INSIDE_OFFSET (2) |
164 #define CUSTOMBOX_OUTSIDE_OFFSET (2) | |
165 #define CUSTOMBOX_SPACE_INSIDE (CUSTOMBOX_LINE_RIGHT + 1 - (CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET + CUSTOMBOX_INSIDE_OFFSET)) | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
166 #define TOP_LINE_HIGHT (25) |
38 | 167 |
336
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
168 #define SHOW_AMBIENTE_SURFACE_DELTA (0.02f) |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
169 #define SHOW_AMBIENTE_DEBOUNCE (0.003f) |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
170 |
38 | 171 /* Exported functions --------------------------------------------------------*/ |
172 | |
173 void t7_init(void) | |
174 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
175 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
176 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
177 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
178 |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
179 selection_custom_field = LLC_Temperature; |
38 | 180 selection_customview = customviewsSurface[0]; |
181 | |
182 t7screen.FBStartAdress = 0; | |
183 t7screen.ImageHeight = 480; | |
184 t7screen.ImageWidth = 800; | |
185 t7screen.LayerIndex = 1; | |
186 | |
187 t7screenCompass.FBStartAdress = 0; | |
188 t7screenCompass.ImageHeight = 240; | |
189 t7screenCompass.ImageWidth = 1600; | |
190 t7screenCompass.LayerIndex = 0; | |
191 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
192 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
193 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
194 t7l1.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
195 t7l1.WindowNumberOfTextLines = 2; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
196 t7l1.WindowLineSpacing = 19; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
197 t7l1.WindowTab = 100; // vermtl. ohne Verwendung in diesem Fenster |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
198 t7l1.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
199 t7l1.WindowX1 = CUSTOMBOX_LINE_LEFT - CUSTOMBOX_OUTSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
200 t7l1.WindowY0 = 318; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
201 t7l1.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
202 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
203 t7l2.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
204 t7l2.WindowNumberOfTextLines = 2; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
205 t7l2.WindowLineSpacing = 22; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
206 t7l2.WindowTab = 100; // vermtl. ohne Verwendung in diesem Fenster |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
207 t7l2.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
208 t7l2.WindowX1 = t7l1.WindowX1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
209 t7l2.WindowY0 = 142; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
210 t7l2.WindowY1 = t7l1.WindowY0 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
211 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
212 t7l3.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
213 t7l3.WindowNumberOfTextLines = 2; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
214 t7l3.WindowLineSpacing = 58; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
215 t7l3.WindowTab = 100; // vermtl. ohne Verwendung in diesem Fenster |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
216 t7l3.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
217 t7l3.WindowX1 = t7l1.WindowX1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
218 t7l3.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
219 t7l3.WindowY1 = t7l2.WindowY0 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
220 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
221 t7r1.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
222 t7r1.WindowNumberOfTextLines = 2; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
223 t7r1.WindowLineSpacing = t7l1.WindowLineSpacing; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
224 t7r1.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
225 t7r1.WindowX0 = 550; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
226 t7r1.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
227 t7r1.WindowY0 = t7l1.WindowY0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
228 t7r1.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
229 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
230 t7r2.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
231 t7r2.WindowNumberOfTextLines = 2; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
232 t7r2.WindowLineSpacing = t7l2.WindowLineSpacing; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
233 t7r2.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
234 t7r2.WindowX0 = 550; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
235 t7r2.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
236 t7r2.WindowY0 = t7l2.WindowY0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
237 t7r2.WindowY1 = t7l2.WindowY1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
238 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
239 t7r3.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
240 t7r3.WindowNumberOfTextLines = 2; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
241 t7r3.WindowLineSpacing = 0;//t7l3.WindowLineSpacing; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
242 t7r3.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
243 t7r3.WindowX0 = CUSTOMBOX_LINE_RIGHT + CUSTOMBOX_OUTSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
244 t7r3.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
245 t7r3.WindowY0 = t7l3.WindowY0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
246 t7r3.WindowY1 = t7l3.WindowY1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
247 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
248 t7cC.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
249 t7cC.WindowNumberOfTextLines = 3; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
250 t7cC.WindowLineSpacing = 95; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
251 t7cC.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
252 t7cC.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
253 t7cC.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
254 t7cC.WindowY0 = 90; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
255 t7cC.WindowY1 = 434 - 95; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
256 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
257 t7cH.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
258 t7cH.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
259 t7cH.WindowLineSpacing = 95; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
260 t7cH.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
261 t7cH.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
262 t7cH.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
263 t7cH.WindowY0 = 434 - 94; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
264 t7cH.WindowY1 = 434; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
265 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
266 t7cW.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
267 t7cW.WindowNumberOfTextLines = 3; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
268 t7cW.WindowLineSpacing = 95; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
269 t7cW.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
270 t7cW.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
271 t7cW.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
272 t7cW.WindowY0 = 90; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
273 t7cW.WindowY1 = 434 - 95; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
274 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
275 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
276 t7surfaceL.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
277 t7surfaceL.WindowNumberOfTextLines = 9; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
278 t7surfaceL.WindowLineSpacing = 53; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
279 t7surfaceL.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
280 t7surfaceL.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
281 t7surfaceL.WindowX1 = CUSTOMBOX_LINE_LEFT - CUSTOMBOX_OUTSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
282 t7surfaceL.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
283 t7surfaceL.WindowY1 = 480; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
284 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
285 t7surfaceR.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
286 t7surfaceR.WindowNumberOfTextLines = 9; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
287 t7surfaceR.WindowLineSpacing = 53; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
288 t7surfaceR.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
289 t7surfaceR.WindowX0 = CUSTOMBOX_LINE_RIGHT + CUSTOMBOX_OUTSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
290 t7surfaceR.WindowX1 = 800; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
291 t7surfaceR.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
292 t7surfaceR.WindowY1 = 480; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
293 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
294 t7cY0free.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
295 t7cY0free.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
296 t7cY0free.WindowLineSpacing = 95; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
297 t7cY0free.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
298 t7cY0free.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
299 t7cY0free.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
300 t7cY0free.WindowY0 = 90; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
301 t7cY0free.WindowY1 = 434 - 95; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
302 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
303 t7batt.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
304 t7batt.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
305 t7batt.WindowLineSpacing = 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
306 t7batt.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
307 t7batt.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
308 t7batt.WindowX0 = t7batt.WindowX1 - (52+52); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
309 t7batt.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
310 t7batt.WindowY0 = t7batt.WindowY1 - 25; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
311 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
312 t7charge.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
313 t7charge.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
314 t7charge.WindowLineSpacing = 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
315 t7charge.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
316 t7charge.WindowX1 = t7batt.WindowX1 - 18; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
317 t7charge.WindowX0 = t7charge.WindowX1 - 14; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
318 t7charge.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
319 t7charge.WindowY0 = t7batt.WindowY1 - 25; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
320 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
321 t7voltage.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
322 t7voltage.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
323 t7voltage.WindowLineSpacing = 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
324 t7voltage.WindowTab = 100; |
145 | 325 t7voltage.WindowX0 = t7charge.WindowX0 - 10; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
326 t7voltage.WindowX1 = t7voltage.WindowX0 + (18*3)+ 9; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
327 t7voltage.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
328 t7voltage.WindowY0 = t7batt.WindowY1 - 25; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
329 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
330 t7c1.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
331 t7c1.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
332 t7c1.WindowLineSpacing = 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
333 t7c1.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
334 t7c1.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
335 t7c1.WindowX1 = t7batt.WindowX0 - 18; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
336 t7c1.WindowY0 = 435; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
337 t7c1.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
338 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
339 t7c2.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
340 t7c2.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
341 t7c2.WindowLineSpacing = 0; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
342 t7c2.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
343 t7c2.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
344 t7c2.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
345 t7c2.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
346 t7c2.WindowY1 = 69; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
347 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
348 t7pCompass.Image = &t7screenCompass; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
349 t7pCompass.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
350 t7pCompass.WindowLineSpacing = 100; // Abstand von Y0 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
351 t7pCompass.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
352 t7pCompass.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
353 t7pCompass.WindowX1 = 1600-1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
354 t7pCompass.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
355 t7pCompass.WindowY1 = 100-1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
356 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
357 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
358 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
359 /* 6 segments (left / right) used to show data during dive */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
360 |
38 | 361 t7l1.Image = &t7screen; |
362 t7l1.WindowNumberOfTextLines = 2; | |
363 t7l1.WindowLineSpacing = 19; // Abstand von Y0 | |
364 t7l1.WindowTab = 100; // vermtl. ohne Verwendung in diesem Fenster | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
365 t7l1.WindowX0 = CUSTOMBOX_LINE_RIGHT + CUSTOMBOX_OUTSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
366 t7l1.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
367 t7l1.WindowY0 = CUSTOMBOX_LINE_TOP; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
368 t7l1.WindowY1 = 150 + TOP_LINE_HIGHT; |
38 | 369 |
370 t7l2.Image = &t7screen; | |
371 t7l2.WindowNumberOfTextLines = 2; | |
372 t7l2.WindowLineSpacing = 22; // Abstand von Y0 | |
373 t7l2.WindowTab = 100; // vermtl. ohne Verwendung in diesem Fenster | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
374 t7l2.WindowX0 = t7l1.WindowX0; |
38 | 375 t7l2.WindowX1 = t7l1.WindowX1; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
376 t7l2.WindowY0 = t7l1.WindowY1 + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
377 t7l2.WindowY1 = t7l2.WindowY0 + 146; |
38 | 378 |
379 t7l3.Image = &t7screen; | |
380 t7l3.WindowNumberOfTextLines = 2; | |
381 t7l3.WindowLineSpacing = 58; // Abstand von Y0 | |
382 t7l3.WindowTab = 100; // vermtl. ohne Verwendung in diesem Fenster | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
383 t7l3.WindowX0 = t7l1.WindowX0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
384 t7l3.WindowX1 = t7l1.WindowX1;; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
385 t7l3.WindowY0 = 479 - 150; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
386 t7l3.WindowY1 = 479; |
38 | 387 |
388 t7r1.Image = &t7screen; | |
389 t7r1.WindowNumberOfTextLines = 2; | |
390 t7r1.WindowLineSpacing = t7l1.WindowLineSpacing; | |
391 t7r1.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
392 t7r1.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
393 t7r1.WindowX1 = CUSTOMBOX_LINE_LEFT - CUSTOMBOX_OUTSIDE_OFFSET; |
38 | 394 t7r1.WindowY0 = t7l1.WindowY0; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
395 t7r1.WindowY1 = t7l1.WindowY1; |
38 | 396 |
397 t7r2.Image = &t7screen; | |
398 t7r2.WindowNumberOfTextLines = 2; | |
399 t7r2.WindowLineSpacing = t7l2.WindowLineSpacing; | |
400 t7r2.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
401 t7r2.WindowX0 = t7r1.WindowX0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
402 t7r2.WindowX1 = t7r1.WindowX1; |
38 | 403 t7r2.WindowY0 = t7l2.WindowY0; |
404 t7r2.WindowY1 = t7l2.WindowY1; | |
405 | |
406 t7r3.Image = &t7screen; | |
407 t7r3.WindowNumberOfTextLines = 2; | |
408 t7r3.WindowLineSpacing = 0;//t7l3.WindowLineSpacing; | |
409 t7r3.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
410 t7r3.WindowX0 = t7r1.WindowX0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
411 t7r3.WindowX1 = t7r1.WindowX1; |
38 | 412 t7r3.WindowY0 = t7l3.WindowY0; |
413 t7r3.WindowY1 = t7l3.WindowY1; | |
414 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
415 /* screen for CustomText / serial number */ |
38 | 416 t7cC.Image = &t7screen; |
417 t7cC.WindowNumberOfTextLines = 3; | |
418 t7cC.WindowLineSpacing = 95; // Abstand von Y0 | |
419 t7cC.WindowTab = 100; | |
420 t7cC.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; | |
421 t7cC.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
422 t7cC.WindowY0 = 165; //90; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
423 t7cC.WindowY1 = 415; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
424 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
425 /* used by warning message box */ |
38 | 426 t7cH.Image = &t7screen; |
427 t7cH.WindowNumberOfTextLines = 1; | |
428 t7cH.WindowLineSpacing = 95; // Abstand von Y0 | |
429 t7cH.WindowTab = 100; | |
430 t7cH.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; | |
431 t7cH.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
432 t7cH.WindowY0 = 46; //480 - 434; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
433 t7cH.WindowY1 = 390 - 46;// - 90; //46 + 390; //480 - (434 - 94); //434; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
434 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
435 /* used by warning custom box */ |
38 | 436 t7cW.Image = &t7screen; |
437 t7cW.WindowNumberOfTextLines = 3; | |
438 t7cW.WindowLineSpacing = 95; // Abstand von Y0 | |
439 t7cW.WindowTab = 100; | |
440 t7cW.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; | |
441 t7cW.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
442 t7cW.WindowY0 = 480 - (434 - 90); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
443 t7cW.WindowY1 = 480 - 90; //434 - 95; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
444 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
445 /* time and environment */ |
38 | 446 t7surfaceL.Image = &t7screen; |
447 t7surfaceL.WindowNumberOfTextLines = 9; | |
448 t7surfaceL.WindowLineSpacing = 53; | |
449 t7surfaceL.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
450 t7surfaceL.WindowX0 = CUSTOMBOX_LINE_RIGHT + CUSTOMBOX_OUTSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
451 t7surfaceL.WindowX1 = 799; |
38 | 452 t7surfaceL.WindowY0 = 0; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
453 t7surfaceL.WindowY1 = 479; |
38 | 454 |
455 t7surfaceR.Image = &t7screen; | |
456 t7surfaceR.WindowNumberOfTextLines = 9; | |
457 t7surfaceR.WindowLineSpacing = 53; | |
458 t7surfaceR.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
459 t7surfaceR.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
460 t7surfaceR.WindowX1 = CUSTOMBOX_LINE_LEFT - CUSTOMBOX_OUTSIDE_OFFSET; |
38 | 461 t7surfaceR.WindowY0 = 0; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
462 t7surfaceR.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
463 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
464 /* info screen in the middle */ |
38 | 465 t7cY0free.Image = &t7screen; |
466 t7cY0free.WindowNumberOfTextLines = 1; | |
467 t7cY0free.WindowLineSpacing = 95; | |
468 t7cY0free.WindowTab = 100; | |
469 t7cY0free.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; | |
470 t7cY0free.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
471 t7cY0free.WindowY0 = 115; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
472 t7cY0free.WindowY1 = 365; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
473 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
474 /* voltage value (V or %) */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
475 t7voltage.Image = &t7screen; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
476 t7voltage.WindowNumberOfTextLines = 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
477 t7voltage.WindowLineSpacing = 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
478 t7voltage.WindowTab = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
479 t7voltage.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
480 t7voltage.WindowX1 = t7voltage.WindowX0 + (18*3) +9; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
481 t7voltage.WindowY1 = TOP_LINE_HIGHT; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
482 t7voltage.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
483 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
484 /* battery symbol */ |
38 | 485 t7batt.Image = &t7screen; |
486 t7batt.WindowNumberOfTextLines = 1; | |
487 t7batt.WindowLineSpacing = 10; | |
488 t7batt.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
489 t7batt.WindowX0 = t7voltage.WindowX1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
490 t7batt.WindowX1 = t7batt.WindowX0 + (52); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
491 t7batt.WindowY1 = TOP_LINE_HIGHT; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
492 t7batt.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
493 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
494 /* charger symbol */ |
38 | 495 t7charge.Image = &t7screen; |
496 t7charge.WindowNumberOfTextLines = 1; | |
497 t7charge.WindowLineSpacing = 10; | |
498 t7charge.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
499 t7charge.WindowX1 = t7batt.WindowX0 - 18; |
38 | 500 t7charge.WindowX0 = t7charge.WindowX1 - 14; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
501 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
502 t7charge.WindowY1 = TOP_LINE_HIGHT; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
503 t7charge.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
504 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
505 /* show dive mode OC / CC */ |
38 | 506 t7c1.Image = &t7screen; |
507 t7c1.WindowNumberOfTextLines = 1; | |
508 t7c1.WindowLineSpacing = 10; | |
509 t7c1.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
510 t7c1.WindowX0 = t7batt.WindowX1 + 18; //CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
511 t7c1.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; //t7batt.WindowX1 + 18; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
512 t7c1.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
513 t7c1.WindowY1 = 479 - 435; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
514 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
515 /* Gas warnings and exit Sim*/ |
38 | 516 t7c2.Image = &t7screen; |
517 t7c2.WindowNumberOfTextLines = 1; | |
518 t7c2.WindowLineSpacing = 0; // Abstand von Y0 | |
519 t7c2.WindowTab = 100; | |
520 t7c2.WindowX0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; | |
521 t7c2.WindowX1 = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_INSIDE_OFFSET; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
522 t7c2.WindowY0 = 480 - 69; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
523 t7c2.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
524 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
525 /* Rotating compass */ |
38 | 526 t7pCompass.Image = &t7screenCompass; |
527 t7pCompass.WindowNumberOfTextLines = 1; | |
528 t7pCompass.WindowLineSpacing = 100; // Abstand von Y0 | |
529 t7pCompass.WindowTab = 100; | |
530 t7pCompass.WindowX0 = 0; | |
531 t7pCompass.WindowX1 = 1600-1; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
532 t7pCompass.WindowY0 = 479 - 75; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
533 t7pCompass.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
534 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
535 } |
38 | 536 |
537 init_t7_compass(); | |
538 } | |
539 | |
540 | |
541 void t7_refresh_sleepmode_fun(void) | |
542 { | |
543 uint32_t oldScreen; | |
544 | |
545 oldScreen = t7screen.FBStartAdress; | |
546 t7screen.FBStartAdress = getFrame(22); | |
547 | |
548 t7_refresh_sleep_design_fun(); | |
549 | |
550 if(get_globalState() == StStop) | |
551 { | |
166
255eedad4155
cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents:
149
diff
changeset
|
552 GFX_SetFramesTopBottom(t7screen.FBStartAdress, 0,480); |
38 | 553 } |
554 releaseFrame(22,oldScreen); | |
555 } | |
556 | |
557 | |
558 void t7_refresh(void) | |
559 { | |
560 static uint8_t last_mode = MODE_SURFACE; | |
561 SStateList status; | |
562 get_globalStateList(&status); | |
563 | |
564 t7screen.FBStartAdress = getFrame(22); | |
565 | |
566 background.pointer = 0; | |
567 | |
568 if(stateUsed->mode == MODE_DIVE) | |
569 { | |
570 if(last_mode != MODE_DIVE) | |
571 { | |
572 last_mode = MODE_DIVE; | |
573 /* lower left corner primary */ | |
574 selection_custom_field = settingsGetPointer()->tX_userselectedLeftLowerCornerPrimary; | |
595 | 575 /* custom view primary OR debug if automatic return is off | T7 is default dive view => also initialize big font view */ |
38 | 576 if((settingsGetPointer()->tX_customViewTimeout == 0) && (settingsGetPointer()->showDebugInfo)) |
595 | 577 { |
578 selection_customview = CVIEW_noneOrDebug; | |
579 t3_select_customview(CVIEW_noneOrDebug); | |
580 } | |
38 | 581 else |
595 | 582 { |
38 | 583 selection_customview = settingsGetPointer()->tX_customViewPrimary; |
595 | 584 t3_set_customview_to_primary(); |
585 } | |
495 | 586 t7_change_customview(ACTION_END); |
553 | 587 |
588 if((settingsGetPointer()->MotionDetection != MOTION_DETECT_OFF)) | |
589 { | |
590 InitMotionDetection(); | |
591 } | |
38 | 592 } |
593 | |
594 if(status.page == PageSurface) | |
595 set_globalState(StD); | |
596 | |
597 if(stateUsed->diveSettings.diveMode == DIVEMODE_Gauge) | |
598 { | |
599 settingsGetPointer()->design = 5; | |
600 releaseAllFramesExcept(22,t7screen.FBStartAdress); | |
601 releaseFrame(22,t7screen.FBStartAdress); | |
602 return; | |
603 } | |
604 else if(stateUsed->diveSettings.diveMode == DIVEMODE_Apnea) | |
605 { | |
606 settingsGetPointer()->design = 6; | |
607 releaseAllFramesExcept(22,t7screen.FBStartAdress); | |
608 releaseFrame(22,t7screen.FBStartAdress); | |
609 return; | |
610 } | |
611 else | |
612 { | |
613 t7_refresh_divemode(); | |
614 } | |
615 } | |
616 else // from if(stateUsed->mode == MODE_DIVE) | |
617 { | |
618 if(last_mode != MODE_SURFACE) | |
619 { | |
620 last_mode = MODE_SURFACE; | |
621 selection_customview = customviewsSurface[0]; | |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
622 InitMotionDetection(); |
553 | 623 resetFocusState(); |
38 | 624 } |
625 if(status.page == PageDive) | |
626 set_globalState(StS); | |
627 | |
628 if(settingsGetPointer()->showDebugInfo) | |
629 t7_refresh_surface_debugmode(); | |
630 else | |
631 t7_refresh_surface(); | |
632 } | |
633 | |
634 tHome_show_lost_connection_count(&t7screen); | |
635 | |
636 if(status.base == BaseHome) | |
637 { | |
638 if(background.pointer) | |
639 { | |
640 GFX_SetFrameTop(t7screen.FBStartAdress); | |
641 GFX_SetFrameBottom(background.pointer,background.x0 , background.y0, background.width, background.height); | |
642 } | |
643 else | |
166
255eedad4155
cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents:
149
diff
changeset
|
644 GFX_SetFramesTopBottom(t7screen.FBStartAdress, 0,480); |
38 | 645 } |
646 | |
647 releaseAllFramesExcept(22,t7screen.FBStartAdress); | |
648 } | |
649 | |
650 /* Private functions ---------------------------------------------------------*/ | |
651 | |
652 void t7_fill_surfacetime_helper(SSurfacetime *outArray, uint32_t inputMinutes, uint32_t inputSeconds) | |
653 { | |
654 inputSeconds += inputMinutes * 60; | |
655 | |
656 outArray->Total = inputSeconds; | |
657 | |
658 outArray->Days = inputSeconds / 86400;// (24*60*60); | |
659 inputSeconds -= 86400 * (uint32_t)outArray->Days; | |
660 | |
661 outArray->Hours = inputSeconds / 3600;// (60*60); | |
662 inputSeconds -= 3600 * (uint32_t)outArray->Hours; | |
663 | |
664 outArray->Minutes = inputSeconds / 60;; | |
665 inputSeconds -= 60 * (uint32_t)outArray->Minutes; | |
666 | |
667 outArray->Seconds = inputSeconds; | |
668 } | |
669 | |
670 void t7_refresh_sleep_design_fun(void) | |
671 { | |
672 static uint16_t state = 0; | |
673 uint16_t ytop = 0; | |
674 | |
675 state +=1; | |
676 if(state > 800) | |
677 state = 1; | |
678 | |
679 if(state > 400) | |
680 ytop = 800 - state; | |
681 else | |
682 ytop = 0 + state; | |
178
d36596281501
Minor: Replace stupid "Sleep Sleep Sleep" message with something more meaningful
heinrichsweikamp
parents:
174
diff
changeset
|
683 Gfx_write_label_var(&t7screen, 300,800, ytop,&FontT48,CLUT_Font020,"Shutting down..."); |
38 | 684 } |
685 | |
686 void t7_refresh_surface(void) | |
687 { | |
336
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
688 static float debounceAmbientPressure = 0; |
38 | 689 char text[256]; |
567 | 690 char timeSuffix; |
691 uint8_t hours; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
692 uint8_t loop, textIdx; |
38 | 693 uint8_t date[3], year,month,day; |
694 uint32_t color; | |
695 uint8_t customview_warnings = 0; | |
696 | |
697 RTC_DateTypeDef Sdate; | |
698 RTC_TimeTypeDef Stime; | |
699 RTC_DateTypeDef SdateFirmware; | |
700 | |
701 uint8_t dateNotSet = 0; | |
702 | |
703 uint8_t oxygen_percentage, gasOffset, actualGasID; | |
457 | 704 #ifdef ENABLE_BOTTLE_SENSOR |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
705 uint16_t bottleFirstGas_bar; |
457 | 706 #endif |
38 | 707 point_t start, stop;//, other; |
708 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
709 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
710 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
711 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
712 |
38 | 713 // update in all customview modes |
714 if(DataEX_check_RTE_version__needs_update() || font_update_required()) | |
715 updateNecessary = 1; | |
716 else | |
717 updateNecessary = 0; | |
718 | |
719 /* buttons */ | |
720 text[0] = TXT_2BYTE; | |
721 text[1] = TXT2BYTE_ButtonLogbook; | |
722 text[2] = 0; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
723 write_content_simple(&t7screen, 0, 799, 479-TOP_LINE_HIGHT, &FontT24,text,CLUT_ButtonSurfaceScreen); |
38 | 724 |
725 text[0] = '\001'; | |
726 text[1] = TXT_2BYTE; | |
727 text[2] = TXT2BYTE_ButtonView; | |
728 text[3] = 0; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
729 write_content_simple(&t7screen, 0, 799, 479-TOP_LINE_HIGHT, &FontT24,text,CLUT_ButtonSurfaceScreen); |
38 | 730 |
731 text[0] = '\002'; | |
732 text[1] = TXT_2BYTE; | |
733 text[2] = TXT2BYTE_ButtonMenu; | |
734 text[3] = 0; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
735 write_content_simple(&t7screen, 0, 799, 479-TOP_LINE_HIGHT, &FontT24,text,CLUT_ButtonSurfaceScreen); |
38 | 736 |
737 /* was power on reset */ | |
738 //..... | |
739 /* removed hw 160802 in V1.1.1 | |
740 if(errorsInSettings) | |
741 { | |
742 sprintf(text,"Settings: %u",errorsInSettings); | |
743 GFX_write_string_color(&FontT42,&t7surfaceR,text,4,CLUT_WarningRed); | |
744 } | |
745 else | |
746 */ | |
660 | 747 if(DataEX_was_power_on()) { |
38 | 748 GFX_write_string_color(&FontT42,&t7surfaceR,"cold start",4,CLUT_WarningRed); |
660 | 749 // Reset the bluetooth interface after a cold start |
750 tComm_Set_Bluetooth_Name(1); | |
751 } | |
38 | 752 |
753 /* time and date */ | |
754 translateDate(stateUsed->lifeData.dateBinaryFormat, &Sdate); | |
755 translateTime(stateUsed->lifeData.timeBinaryFormat, &Stime); | |
756 | |
757 firmwareGetDate(&SdateFirmware); | |
758 if(tHome_DateCode(&Sdate) < tHome_DateCode(&SdateFirmware)) | |
759 dateNotSet = 1; | |
760 else | |
761 dateNotSet = 0; | |
762 /* | |
763 if(Stime.Seconds % 2) | |
764 snprintf(text,255,"\001%02d:%02d",Stime.Hours,Stime.Minutes); | |
765 else | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
766 snprintf(text,255,"\001%02d\031:\020%02d",Stime.Hours,Stime.Minutes); |
38 | 767 GFX_write_string(&FontT54,&t7surfaceR,text,3); |
768 */ | |
769 // debug version: | |
567 | 770 |
771 if (settingsGetPointer()->amPMTime) | |
772 { | |
773 if (Stime.Hours > 11) | |
774 { | |
775 timeSuffix = 'P'; | |
776 } | |
777 else | |
778 { | |
779 timeSuffix = 'A'; | |
780 } | |
781 | |
782 if (Stime.Hours % 12 == 0) | |
783 { | |
784 hours = 12; | |
785 } | |
786 else | |
787 { | |
788 hours = (Stime.Hours % 12); | |
789 } | |
790 | |
791 if(Stime.Seconds % 2) | |
792 snprintf(text,255,"\001%02d:%02d:%02d\016\016%cM\017",hours,Stime.Minutes,Stime.Seconds,timeSuffix); | |
793 else if(dateNotSet) | |
794 snprintf(text,255,"\001\031%02d:%02d:%02d\016\016%cM\017\020",hours,Stime.Minutes,Stime.Seconds,timeSuffix); | |
795 else | |
796 snprintf(text,255,"\001%02d\031:\020%02d:%02d\016\016%cM\017",hours,Stime.Minutes,Stime.Seconds,timeSuffix); | |
797 GFX_write_string(&FontT48,&t7surfaceR,text,3); | |
798 } | |
38 | 799 else |
567 | 800 { |
801 if(Stime.Seconds % 2) | |
802 snprintf(text,255,"\001%02d:%02d:%02d",Stime.Hours,Stime.Minutes,Stime.Seconds); | |
803 else if(dateNotSet) | |
804 snprintf(text,255,"\001\031%02d:%02d:%02d\020",Stime.Hours,Stime.Minutes,Stime.Seconds); | |
805 else | |
806 snprintf(text,255,"\001%02d\031:\020%02d:%02d",Stime.Hours,Stime.Minutes,Stime.Seconds); | |
807 GFX_write_string(&FontT54,&t7surfaceR,text,3); | |
808 } | |
38 | 809 |
810 if(settingsGetPointer()->date_format == DDMMYY) | |
811 { | |
812 day = 0; | |
813 month = 1; | |
814 year = 2; | |
815 } | |
816 else | |
817 if(settingsGetPointer()->date_format == MMDDYY) | |
818 { | |
819 day = 1; | |
820 month = 0; | |
821 year = 2; | |
822 } | |
823 else | |
824 { | |
825 day = 2; | |
826 month = 1; | |
827 year = 0; | |
828 } | |
829 date[day] = Sdate.Date; | |
830 date[month] = Sdate.Month; | |
831 date[year] = Sdate.Year; | |
832 | |
833 if((Stime.Seconds % 2) || (dateNotSet == 0)) | |
834 snprintf(text,255,"\001%02d.%02d.%02d",date[0],date[1],date[2]); | |
835 else | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
836 snprintf(text,255,"\001\031%02d.%02d.%02d",date[0],date[1],date[2]); |
38 | 837 |
838 GFX_write_string(&FontT54,&t7surfaceR,text,5); | |
839 | |
840 if(!DataEX_was_power_on() && !errorsInSettings) | |
841 { | |
842 text[0] = '\001'; | |
843 text[1] = '\004'; | |
481
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
844 text[2] = '\016'; |
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
845 text[3] = '\016'; |
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
846 text[4] = TXT_2BYTE; |
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
847 text[5] = TXT2BYTE_Sunday; |
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
848 text[6] = 0; |
38 | 849 if(Sdate.WeekDay != RTC_WEEKDAY_SUNDAY) |
481
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
850 text[5] += Sdate.WeekDay; |
38 | 851 |
852 if(!(Stime.Seconds % 2) && (dateNotSet == 1)) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
853 text[1] = '\031'; |
38 | 854 |
481
89f6857276f8
Bugfix calculation of string center position:
ideenmodellierer
parents:
477
diff
changeset
|
855 GFX_write_string(&FontT48,&t7surfaceR,text,4); |
38 | 856 } |
857 | |
858 /* DEBUG uTick Pressure and Compass */ | |
859 /* | |
860 snprintf(text,255,"\001%u",stateRealGetPointer()->pressure_uTick_new - stateRealGetPointer()->pressure_uTick_old); | |
861 GFX_write_string(&FontT42,&t7surfaceR,text,1); | |
862 snprintf(text,255,"\001%u",HAL_GetTick() - stateRealGetPointer()->pressure_uTick_local_new); | |
863 GFX_write_string(&FontT42,&t7surfaceR,text,2); | |
864 | |
865 snprintf(text,255,"\001%u",stateRealGetPointer()->compass_uTick_new - stateRealGetPointer()->compass_uTick_old); | |
866 GFX_write_string(&FontT42,&t7surfaceR,text,6); | |
867 snprintf(text,255,"\001%u",HAL_GetTick() - stateRealGetPointer()->compass_uTick_local_new); | |
868 GFX_write_string(&FontT42,&t7surfaceR,text,7); | |
869 | |
870 static uint32_t bildschirmRefresh = 0; | |
871 snprintf(text,255,"\001%u",HAL_GetTick() - bildschirmRefresh); | |
872 GFX_write_string(&FontT42,&t7surfaceR,text,8); | |
873 bildschirmRefresh = HAL_GetTick(); | |
874 | |
875 static uint16_t bildschirmRefreshCount = 1; | |
876 if(bildschirmRefreshCount>10) | |
877 bildschirmRefreshCount = 1; | |
878 for(int i=0;i<bildschirmRefreshCount;i++) | |
879 text[i] = '.'; | |
880 text[bildschirmRefreshCount++] = 0; | |
881 GFX_write_string(&FontT42,&t7surfaceR,text,4); | |
882 */ | |
883 | |
884 /* noFlyTime or DesaturationTime */ | |
477
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
885 if((stateUsed->lifeData.no_fly_time_minutes) && ((!display_count_high_time) || (stateUsed->lifeData.desaturation_time_minutes == 0))) |
38 | 886 { |
887 SSurfacetime NoFlyTime = {0,0,0,0}; | |
888 t7_fill_surfacetime_helper(&NoFlyTime,stateUsed->lifeData.no_fly_time_minutes, 0); | |
889 | |
890 if(NoFlyTime.Days) | |
891 { | |
892 snprintf(text,30,"\001%02d\016\016d\017 %02d\016\016h\017",NoFlyTime.Days, NoFlyTime.Hours); | |
893 } | |
894 else | |
895 { | |
896 snprintf(text,20,"\001%02d:%02d",NoFlyTime.Hours, NoFlyTime.Minutes); | |
897 } | |
898 | |
899 GFX_write_string(&FontT54,&t7surfaceR,text,7); | |
900 | |
901 text[0] = '\001'; | |
902 text[1] = '\022'; | |
903 text[2] = '\016'; | |
904 text[3] = '\016'; | |
905 text[4] = TXT_2BYTE; | |
906 text[5] = TXT2BYTE_noFly; | |
907 text[6] = 0; | |
908 GFX_write_string(&FontT48,&t7surfaceR,text,6); | |
909 } | |
910 else | |
911 if(stateUsed->lifeData.desaturation_time_minutes) | |
912 { | |
913 SSurfacetime DesatTime = {0,0,0,0}; | |
914 t7_fill_surfacetime_helper(&DesatTime,stateUsed->lifeData.desaturation_time_minutes, 0); | |
915 | |
916 if(DesatTime.Days) | |
917 { | |
918 snprintf(text,30,"\001%02d\016\016d\017 %02d\016\016h\017",DesatTime.Days, DesatTime.Hours); | |
919 } | |
920 else | |
921 { | |
922 snprintf(text,20,"\001%02d:%02d",DesatTime.Hours, DesatTime.Minutes); | |
923 } | |
924 GFX_write_string(&FontT54,&t7surfaceR,text,7); | |
925 | |
926 text[0] = '\001'; | |
927 text[1] = '\022'; | |
928 text[2] = '\016'; | |
929 text[3] = '\016'; | |
930 text[4] = TXT_2BYTE; | |
931 text[5] = TXT2BYTE_Desaturation; | |
932 text[6] = 0; | |
933 GFX_write_string(&FontT48,&t7surfaceR,text,6); | |
934 } | |
935 | |
936 /* Time since last dive */ | |
937 if(stateUsed->lifeData.surface_time_seconds) | |
938 { | |
939 SSurfacetime SurfTime = {0,0,0,0}; | |
940 t7_fill_surfacetime_helper(&SurfTime, 0, stateUsed->lifeData.surface_time_seconds); | |
941 | |
942 if(SurfTime.Days == 0) | |
943 { | |
944 snprintf(text,20,"\001\022%02d:%02d",SurfTime.Hours, SurfTime.Minutes); | |
945 } | |
946 else | |
947 { | |
948 snprintf(text,30,"\001\022%02d\016\016d\017 %02d\016\016h\017",SurfTime.Days, SurfTime.Hours); | |
949 } | |
950 | |
951 GFX_write_string(&FontT54,&t7surfaceR,text,2); | |
952 | |
953 | |
954 text[0] = '\001'; | |
955 text[1] = '\022'; | |
956 text[2] = '\016'; | |
957 text[3] = '\016'; | |
958 text[4] = TXT_2BYTE; | |
959 text[5] = TXT2BYTE_TimeSinceLastDive; | |
960 text[6] = 0; | |
961 GFX_write_string(&FontT48,&t7surfaceR,text,1); | |
962 } | |
963 | |
964 /* beta version */ | |
965 if( firmwareDataGetPointer()->versionBeta ) | |
966 { | |
967 snprintf(text,255,"\025 BETA"); | |
968 GFX_write_string(&FontT48,&t7surfaceL,text,2); | |
969 } | |
970 | |
971 /* surface pressure and temperature */ | |
972 if(stateUsed->sensorErrorsRTE == 0) | |
973 { | |
336
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
974 if(fabs(stateUsed->lifeData.pressure_surface_bar - stateUsed->lifeData.pressure_ambient_bar) < SHOW_AMBIENTE_SURFACE_DELTA) /* show ambient pressure if difference to surface is significant*/ |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
975 { |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
976 snprintf(text,30,"%01.0f\022\016\016 %s", stateUsed->lifeData.pressure_surface_bar * 1000.0f,TEXT_PRESSURE_UNIT); |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
977 } |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
978 else |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
979 { |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
980 if(fabsf(debounceAmbientPressure - stateUsed->lifeData.pressure_ambient_bar) > SHOW_AMBIENTE_DEBOUNCE) /* there might be a jitter ~+-1 HPa on the pressure signal => update only if delta is bigger */ |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
981 { |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
982 debounceAmbientPressure = stateUsed->lifeData.pressure_ambient_bar; |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
983 } |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
984 snprintf(text,30,"%01.0f\022\016\016 %s", debounceAmbientPressure * 1000.0f,TEXT_PRESSURE_UNIT); |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
985 } |
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
986 |
38 | 987 GFX_write_string(&FontT48,&t7surfaceL,text,3); |
988 | |
989 if(settingsGetPointer()->nonMetricalSystem) | |
990 snprintf(text,40,"%01.0f\140\022\016\016 fahrenheit",unit_temperature_float(stateUsed->lifeData.temperature_celsius)); | |
991 else | |
992 snprintf(text,30,"%01.0f\140\022\016\016 celsius",stateUsed->lifeData.temperature_celsius); | |
993 GFX_write_string(&FontT48,&t7surfaceL,text,4); | |
994 } | |
995 else | |
996 { | |
103
f5d2f02dc73f
Generalize TEXT of pressure unit
Dmitry Romanov <kitt@bk.ru>
parents:
102
diff
changeset
|
997 snprintf(text,30,"ERR\022\016\016 %s",TEXT_PRESSURE_UNIT); |
38 | 998 GFX_write_string(&FontT48,&t7surfaceL,text,3); |
999 | |
1000 if(settingsGetPointer()->nonMetricalSystem) | |
1001 snprintf(text,40,"ERR\022\016\016 fahrenheit"); | |
1002 else | |
1003 snprintf(text,30,"ERR\022\016\016 celsius"); | |
1004 GFX_write_string(&FontT48,&t7surfaceL,text,4); | |
1005 } | |
1006 | |
1007 | |
1008 /* gas mix and selection */ | |
1009 if((stateUsed->diveSettings.diveMode == DIVEMODE_Gauge) || (stateUsed->diveSettings.diveMode == DIVEMODE_Apnea)) | |
1010 { | |
1011 if(stateUsed->diveSettings.diveMode == DIVEMODE_Gauge) | |
1012 text[0] = TXT_Gauge; | |
1013 else | |
1014 text[0] = TXT_Apnoe; | |
1015 | |
1016 text[1] = 0; | |
1017 GFX_write_string(&FontT48,&t7surfaceL,text,6); | |
1018 } | |
1019 else | |
1020 { | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1021 textIdx = 0; |
38 | 1022 if(stateUsed->diveSettings.diveMode == DIVEMODE_CCR) |
1023 gasOffset = NUM_OFFSET_DILUENT; | |
1024 else | |
1025 gasOffset = 0; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1026 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1027 /* Display gas setup */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1028 for(loop = 1; loop <= NUM_GASES; loop++) |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1029 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1030 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1031 if(stateUsed->diveSettings.gas[loop+gasOffset].note.ub.off) |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1032 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1033 text[textIdx++] = '\021'; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1034 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1035 else |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1036 #endif |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1037 if(stateUsed->diveSettings.gas[loop+gasOffset].note.ub.active) |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1038 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1039 text[textIdx++]= '\020'; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1040 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1041 else |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1042 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1043 text[textIdx++]= '\031'; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1044 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1045 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1046 text[textIdx++] = '0' + loop; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1047 text[textIdx++] = '\177'; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1048 text[textIdx++] = '\177'; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1049 text[textIdx++] = 10; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1050 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1051 text[textIdx++] = 0; |
38 | 1052 GFX_write_string(&FontT48,&t7surfaceL,text,6); |
1053 | |
1054 | |
1055 oxygen_percentage = 100; | |
1056 oxygen_percentage -= stateUsed->lifeData.actualGas.nitrogen_percentage; | |
1057 oxygen_percentage -= stateUsed->lifeData.actualGas.helium_percentage; | |
1058 | |
1059 tHome_gas_writer(oxygen_percentage,stateUsed->lifeData.actualGas.helium_percentage,&text[0]); | |
1060 GFX_write_string(&FontT48,&t7surfaceL,text,7); | |
1061 | |
1062 actualGasID = stateUsed->lifeData.actualGas.GasIdInSettings; | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
1063 |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1064 #ifdef ENABLE_BOTTLE_SENSOR |
38 | 1065 bottleFirstGas_bar = stateUsed->lifeData.bottle_bar[actualGasID]; |
1066 if(bottleFirstGas_bar) | |
1067 { | |
1068 snprintf(text,255,"%3u\022\016\016 bar",bottleFirstGas_bar); | |
1069 GFX_write_string(&FontT48,&t7surfaceL,text,8); | |
1070 } | |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1071 #endif |
38 | 1072 // after gas name :-) |
1073 if(actualGasID > gasOffset) // security | |
1074 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1075 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1076 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1077 start.y = t7surfaceL.WindowY0 + (3 * t7surfaceL.WindowLineSpacing); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1078 start.x = t7surfaceL.WindowX0 + ((stateUsed->lifeData.actualGas.GasIdInSettings - gasOffset - 1) * 35); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1079 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1080 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1081 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1082 start.y = t7surfaceR.WindowY0 + (3 * t7surfaceR.WindowLineSpacing); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1083 start.x = t7surfaceR.WindowX0 + ((stateUsed->lifeData.actualGas.GasIdInSettings - gasOffset - 1) * 35); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1084 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1085 |
38 | 1086 stop.x = start.x + 25; |
1087 stop.y = start.y + 52; | |
1088 GFX_draw_box2(&t7screen, start, stop, CLUT_Font020, 1); | |
1089 } | |
1090 } | |
1091 | |
1092 /* dive mode */ | |
193
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1093 switch (stateUsed->diveSettings.diveMode) { |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1094 case DIVEMODE_CCR: |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1095 GFX_write_string(&FontT24, &t7c1, "\f\002" "CCR", 0); |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1096 break; |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1097 case DIVEMODE_OC: |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1098 GFX_write_string(&FontT24, &t7c1, "\f\002" "OC", 0); |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1099 break; |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1100 case DIVEMODE_Gauge: |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1101 GFX_write_string(&FontT24, &t7c1, "\f\002" "Gauge", 0); |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1102 break; |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1103 case DIVEMODE_Apnea: |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1104 GFX_write_string(&FontT24, &t7c1, "\f\002" "Apnea", 0); |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1105 break; |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1106 default: |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1107 GFX_write_string(&FontT24, &t7c1, "\f\002" "OC", 0); |
255326edf00b
Bugfix: show proper dive mode
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1108 } |
38 | 1109 |
1110 /*battery */ | |
1111 | |
1112 text[0] = '3'; | |
1113 text[1] = '1'; | |
1114 text[2] = '1'; | |
1115 text[3] = '1'; | |
1116 text[4] = '1'; | |
1117 text[5] = '1'; | |
1118 text[6] = '1'; | |
1119 text[7] = '1'; | |
1120 text[8] = '1'; | |
1121 text[9] = '1'; | |
1122 text[10] = '1'; | |
1123 text[11] = '0'; | |
1124 text[12] = 0; | |
1125 | |
1126 for(int i=1;i<=10;i++) | |
1127 { | |
1128 if( stateUsed->lifeData.battery_charge > (9 * i)) | |
1129 text[i] += 1; | |
1130 } | |
1131 | |
1132 if(stateUsed->chargeStatus == CHARGER_off) | |
1133 { | |
1134 if(stateUsed->warnings.lowBattery) | |
1135 { | |
1136 if(warning_count_high_time) | |
1137 { | |
1138 for(int i=1;i<=10;i++) | |
1139 text[i] = '1'; | |
1140 } | |
1141 else | |
1142 { | |
1143 text[1] = '2'; | |
1144 } | |
1145 GFX_write_string_color(&Batt24,&t7batt,text,0,CLUT_WarningRed); | |
1146 if((stateUsed->lifeData.battery_charge > 0) && (stateUsed->lifeData.battery_charge < 140)) | |
1147 { | |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1148 #ifdef ALWAYS_SHOW_VOLTAGE |
432
2b4440f75434
show battery percent and voltage and surfacemode. That gives additional
heinrichsweikamp
parents:
405
diff
changeset
|
1149 // show battery percent and voltage |
2b4440f75434
show battery percent and voltage and surfacemode. That gives additional
heinrichsweikamp
parents:
405
diff
changeset
|
1150 snprintf(text,16,"\f\002%u%% \f%.1fV",(uint8_t)stateUsed->lifeData.battery_charge,stateUsed->lifeData.battery_voltage); |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1151 #else |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1152 snprintf(text,16,"\004\025\f\002%u%%",(uint8_t)stateUsed->lifeData.battery_charge); |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1153 #endif |
38 | 1154 if(warning_count_high_time) |
1155 text[0] = '\a'; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1156 GFX_write_string(&FontT24,&t7voltage,text,0); |
38 | 1157 } |
1158 else | |
1159 { | |
1160 snprintf(text,6,"\f%.1fV",stateUsed->lifeData.battery_voltage); | |
1161 GFX_write_string(&FontT24,&t7voltage,text,0); | |
1162 } | |
1163 } | |
1164 else | |
1165 { | |
1166 GFX_write_string_color(&Batt24,&t7batt,text,0,CLUT_BatteryStandard); | |
1167 | |
1168 if((stateUsed->lifeData.battery_charge > 0) && (stateUsed->lifeData.battery_charge < 140)) | |
1169 { | |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1170 #ifdef ALWAYS_SHOW_VOLTAGE |
432
2b4440f75434
show battery percent and voltage and surfacemode. That gives additional
heinrichsweikamp
parents:
405
diff
changeset
|
1171 // show battery percent and voltage |
2b4440f75434
show battery percent and voltage and surfacemode. That gives additional
heinrichsweikamp
parents:
405
diff
changeset
|
1172 snprintf(text,16,"\f\002%u%% \f%.1fV",(uint8_t)stateUsed->lifeData.battery_charge,stateUsed->lifeData.battery_voltage); |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1173 #else |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1174 snprintf(text,16,"\f\002%u%%",(uint8_t)stateUsed->lifeData.battery_charge); |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
1175 #endif |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1176 GFX_write_string(&FontT24,&t7voltage,text,0); |
38 | 1177 } |
1178 else | |
1179 { | |
1180 snprintf(text,6,"\f%.1fV",stateUsed->lifeData.battery_voltage); | |
1181 GFX_write_string(&FontT24,&t7voltage,text,0); | |
1182 } | |
1183 } | |
1184 } | |
1185 else | |
1186 { | |
1187 GFX_write_string_color(&Batt24,&t7batt,text,0,CLUT_BatteryCharging); | |
1188 | |
1189 switch(stateUsed->chargeStatus) | |
1190 { | |
1191 case CHARGER_running: | |
1192 default: | |
1193 color = CLUT_BatteryStandard; | |
1194 break; | |
1195 case CHARGER_complete: | |
1196 color = CLUT_BatteryCharging; | |
1197 break; | |
1198 case CHARGER_lostConnection: | |
1199 color = CLUT_BatteryProblem; | |
1200 break; | |
1201 } | |
1202 text[0] = '4'; | |
1203 text[1] = 0; | |
1204 GFX_write_string_color(&Batt24,&t7charge,text,0,color); | |
1205 } | |
1206 | |
1207 | |
1208 | |
1209 customview_warnings = t7_test_customview_warnings_surface_mode(); | |
1210 if(customview_warnings && warning_count_high_time) | |
1211 t7_show_customview_warnings_surface_mode(); | |
1212 else | |
1213 t7_refresh_customview(); | |
1214 draw_frame(0,0, CLUT_pluginboxSurface, CLUT_Font020); | |
1215 } | |
1216 | |
1217 void t7_refresh_surface_debugmode(void) | |
1218 { | |
1219 // could be warning, now just to set RTE variables | |
1220 DataEX_check_RTE_version__needs_update(); | |
1221 | |
1222 | |
1223 char TextL1[4*TEXTSIZE]; | |
1224 uint32_t color; | |
1225 // uint8_t gasIdFirst; | |
1226 SSettings* pSettings = settingsGetPointer(); | |
198
878dc9e0dbc5
cleanup: another cleanup session (data_exchange_main.c)
Jan Mulder <jlmulder@xs4all.nl>
parents:
196
diff
changeset
|
1227 SDataExchangeSlaveToMaster *dataIn = get_dataInPointer(); |
38 | 1228 |
1229 SWindowGimpStyle windowGimp; | |
1230 | |
1231 RTC_DateTypeDef Sdate; | |
1232 RTC_TimeTypeDef Stime; | |
1233 | |
1234 translateDate(stateUsed->lifeData.dateBinaryFormat, &Sdate); | |
1235 translateTime(stateUsed->lifeData.timeBinaryFormat, &Stime); | |
1236 | |
1237 | |
1238 if(stateUsed->data_old__lost_connection_to_slave) | |
1239 { | |
1240 Gfx_write_label_var(&t7screen, 500,800, 0,&FontT42,CLUT_DiveMainLabel,"old"); | |
198
878dc9e0dbc5
cleanup: another cleanup session (data_exchange_main.c)
Jan Mulder <jlmulder@xs4all.nl>
parents:
196
diff
changeset
|
1241 snprintf(TextL1,TEXTSIZE,"%X %X %X %X",dataIn->header.checkCode[0],dataIn->header.checkCode[1],dataIn->header.checkCode[2],dataIn->header.checkCode[3]); |
38 | 1242 Gfx_write_label_var(&t7screen, 500,800, 45,&FontT48,CLUT_Font020,TextL1); |
1243 } | |
1244 else | |
1245 if(DataEX_lost_connection_count()) | |
1246 { | |
336
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
1247 snprintf(TextL1,TEXTSIZE,"\002%ld",DataEX_lost_connection_count()); |
38 | 1248 Gfx_write_label_var(&t7screen, 600,800, 45,&FontT48,CLUT_Font020,TextL1); |
1249 } | |
1250 | |
1251 snprintf(TextL1,TEXTSIZE,"\002%i",blockedFramesCount()); | |
1252 Gfx_write_label_var(&t7screen, 600,800, 0,&FontT48,CLUT_Font020,TextL1); | |
1253 | |
1254 if(stateUsed->lifeData.compass_DX_f | stateUsed->lifeData.compass_DY_f | stateUsed->lifeData.compass_DZ_f) | |
1255 { | |
1256 snprintf(TextL1,TEXTSIZE,"X %i",stateUsed->lifeData.compass_DX_f); | |
1257 Gfx_write_label_var(&t7screen, 0,400, 45,&FontT48,CLUT_Font020,TextL1); | |
1258 snprintf(TextL1,TEXTSIZE,"Y %i",stateUsed->lifeData.compass_DY_f); | |
1259 Gfx_write_label_var(&t7screen, 0,400,145,&FontT48,CLUT_Font020,TextL1); | |
1260 snprintf(TextL1,TEXTSIZE,"Z %i",stateUsed->lifeData.compass_DZ_f); | |
1261 Gfx_write_label_var(&t7screen, 0,400,255,&FontT48,CLUT_Font020,TextL1); | |
1262 return; | |
1263 } | |
103
f5d2f02dc73f
Generalize TEXT of pressure unit
Dmitry Romanov <kitt@bk.ru>
parents:
102
diff
changeset
|
1264 snprintf(TextL1,TEXTSIZE,"%01.0f %s",stateUsed->lifeData.pressure_ambient_bar * 1000.0f,TEXT_PRESSURE_UNIT); |
38 | 1265 Gfx_write_label_var(&t7screen, 0,400, 0,&FontT42,CLUT_DiveMainLabel,"Ambient Pressure"); |
1266 Gfx_write_label_var(&t7screen, 0,400, 45,&FontT48,CLUT_Font020,TextL1); | |
1267 | |
1268 snprintf(TextL1,TEXTSIZE,"%01.2f C",stateUsed->lifeData.temperature_celsius); | |
1269 Gfx_write_label_var(&t7screen, 0,400,100,&FontT42,CLUT_DiveMainLabel,"Temperature"); | |
1270 Gfx_write_label_var(&t7screen, 0,400,145,&FontT48,CLUT_Font020,TextL1); | |
1271 | |
1272 snprintf(TextL1,TEXTSIZE,"%03.0f %03.0f %03.0f",stateUsed->lifeData.compass_heading,stateUsed->lifeData.compass_roll,stateUsed->lifeData.compass_pitch); | |
1273 Gfx_write_label_var(&t7screen, 0,400,200,&FontT42,CLUT_DiveMainLabel,"Heading Roll Pitch"); | |
1274 Gfx_write_label_var(&t7screen, 0,400,255,&FontT48,CLUT_Font020,TextL1); | |
1275 | |
103
f5d2f02dc73f
Generalize TEXT of pressure unit
Dmitry Romanov <kitt@bk.ru>
parents:
102
diff
changeset
|
1276 snprintf(TextL1,TEXTSIZE,"%01.0f %s",stateUsed->lifeData.pressure_surface_bar * 1000.0f,TEXT_PRESSURE_UNIT); |
38 | 1277 Gfx_write_label_var(&t7screen, 0,400,310,&FontT42,CLUT_DiveMainLabel,"Surface Pressure"); |
1278 Gfx_write_label_var(&t7screen, 0,400,355,&FontT48,CLUT_Font020,TextL1); | |
1279 | |
1280 // gasIdFirst = stateUsed->lifeData.actualGas.GasIdInSettings; | |
198
878dc9e0dbc5
cleanup: another cleanup session (data_exchange_main.c)
Jan Mulder <jlmulder@xs4all.nl>
parents:
196
diff
changeset
|
1281 snprintf(TextL1,TEXTSIZE,"%u.%u",dataIn->RTE_VERSION_high,dataIn->RTE_VERSION_low); |
38 | 1282 Gfx_write_label_var(&t7screen, 320,500,100,&FontT42,CLUT_DiveMainLabel,"RTE"); |
1283 Gfx_write_label_var(&t7screen, 320,500,145,&FontT48,CLUT_Font020,TextL1); | |
1284 | |
1285 Gfx_write_label_var(&t7screen, 500,800,100,&FontT42,CLUT_DiveMainLabel,"Battery"); | |
1286 snprintf(TextL1,TEXTSIZE,"%01.4f V",stateUsed->lifeData.battery_voltage); | |
1287 Gfx_write_label_var(&t7screen, 500,800,145,&FontT48,CLUT_Font020,TextL1); | |
1288 snprintf(TextL1,TEXTSIZE,"%03.1f %%",stateUsed->lifeData.battery_charge); | |
1289 Gfx_write_label_var(&t7screen, 500,800,200,&FontT48,CLUT_Font020,TextL1); | |
1290 if(stateUsed->chargeStatus != CHARGER_off) | |
1291 { | |
1292 switch(stateUsed->chargeStatus) | |
1293 { | |
1294 case CHARGER_running: | |
1295 default: | |
1296 color = CLUT_BatteryStandard; | |
1297 break; | |
1298 case CHARGER_complete: | |
1299 color = CLUT_BatteryCharging; | |
1300 break; | |
1301 case CHARGER_lostConnection: | |
1302 color = CLUT_BatteryProblem; | |
1303 break; | |
1304 } | |
1305 TextL1[0] = '4'; | |
1306 TextL1[1] = 0; | |
1307 Gfx_write_label_var(&t7screen, 660,800,200,&Batt24,color,TextL1); | |
1308 } | |
1309 | |
1310 extern uint32_t base_tempLightLevel; | |
1311 | |
336
449e9e9632e4
Show actual instead of surface (30minute old) pressure if the actual differs significant (e.g. in plane or during pressure testing)
ideenmodellierer
parents:
315
diff
changeset
|
1312 snprintf(TextL1,TEXTSIZE,"# %u (%ld)",stateUsed->lifeData.ambient_light_level, base_tempLightLevel); |
38 | 1313 Gfx_write_label_var(&t7screen, 401,600,310,&FontT42,CLUT_DiveMainLabel,"Light"); |
1314 Gfx_write_label_var(&t7screen, 401,800,355,&FontT48,CLUT_Font020,TextL1); | |
1315 | |
1316 // snprintf(TextL1,TEXTSIZE,"# %u",stateUsed->lifeData.ambient_light_level); | |
1317 // Gfx_write_label_var(&t7screen, 601,800,310,&FontT42,CLUT_DiveMainLabel,"Light"); | |
1318 // Gfx_write_label_var(&t7screen, 601,800,355,&FontT48,CLUT_Font020,TextL1); | |
1319 | |
348 | 1320 /* show surface pressure state */ |
1321 if(stateUsed->lifeData.bool_temp1 ) | |
1322 { | |
1323 snprintf(TextL1,TEXTSIZE,"stable"); | |
1324 } | |
1325 else | |
1326 { | |
1327 snprintf(TextL1,TEXTSIZE,"unstable"); | |
1328 } | |
1329 Gfx_write_label_var(&t7screen, 500,800,400,&FontT48,CLUT_Font020,TextL1); | |
38 | 1330 |
1331 | |
1332 if(Sdate.Year < 15) | |
1333 { | |
1334 if(warning_count_high_time) | |
1335 { | |
1336 snprintf(TextL1,4*TEXTSIZE,"\017 %02d-%02d-%02d %02d:%02d:%02d", Sdate.Date, Sdate.Month, 2000 + Sdate.Year,Stime.Hours, Stime.Minutes, Stime.Seconds); | |
1337 Gfx_write_label_var(&t7screen, 0,800,420,&FontT48,CLUT_Font020,TextL1); | |
1338 } | |
1339 } | |
1340 else | |
1341 { | |
1342 if(pSettings->customtext[0]) | |
1343 { | |
1344 if(pSettings->customtext[59]) | |
1345 pSettings->customtext[59] = 0; | |
1346 Gfx_write_label_var(&t7screen, 0,400,420,&FontT24,CLUT_Font020,pSettings->customtext); | |
1347 } | |
1348 else | |
1349 { | |
1350 snprintf(TextL1,4*TEXTSIZE,"\017 %02d-%02d-%02d %02d:%02d:%02d Dives: %u", Sdate.Date, Sdate.Month, 2000 + Sdate.Year,Stime.Hours, Stime.Minutes, Stime.Seconds,pSettings->totalDiveCounter ); | |
1351 Gfx_write_label_var(&t7screen, 0,800,420,&FontT48,CLUT_Font020,TextL1); | |
1352 } | |
1353 } | |
1354 | |
1355 windowGimp.left = 400; | |
1356 windowGimp.top = 0; | |
1357 GFX_draw_image_monochrome(&t7screen, windowGimp, &ImgOSTC, 0); | |
1358 } | |
1359 | |
1360 /* CUSTOMVIEW | |
1361 * in the middle of the screen | |
1362 */ | |
1363 | |
1364 uint8_t t7_test_customview_warnings(void) | |
1365 { | |
1366 uint8_t count = 0; | |
1367 | |
1368 count = 0; | |
1369 count += stateUsed->warnings.decoMissed; | |
1370 count += stateUsed->warnings.ppO2Low; | |
1371 count += stateUsed->warnings.ppO2High; | |
1372 //count += stateUsed->warnings.lowBattery; | |
1373 count += stateUsed->warnings.sensorLinkLost; | |
1374 count += stateUsed->warnings.fallback; | |
477
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1375 #ifdef ENABLE_BOTTLE_SENSOR |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1376 if(stateUsed->warnings.newPressure) |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1377 { |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1378 count++; |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1379 } |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1380 #endif |
38 | 1381 return count; |
1382 } | |
1383 | |
1384 | |
1385 uint8_t t7_test_customview_warnings_surface_mode(void) | |
1386 { | |
1387 uint8_t count = 0; | |
1388 count = 0; | |
1389 count += stateUsed->cnsHigh_at_the_end_of_dive; | |
1390 count += stateUsed->decoMissed_at_the_end_of_dive; | |
477
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1391 #ifdef ENABLE_BOTTLE_SENSOR |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1392 if(stateUsed->warnings.newPressure) |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1393 { |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1394 count++; |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1395 } |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1396 #endif |
38 | 1397 return count; |
1398 } | |
1399 | |
1400 | |
1401 void t7_show_customview_warnings_surface_mode(void) | |
1402 { | |
1403 char text[256]; | |
1404 uint8_t textpointer, lineFree; | |
1405 | |
1406 text[0] = '\025'; | |
1407 text[1] = '\f'; | |
1408 text[2] = '\001'; | |
1409 text[3] = TXT_Warning; | |
1410 text[4] = 0; | |
1411 GFX_write_string(&FontT42,&t7cH,text,0); | |
1412 | |
1413 textpointer = 0; | |
1414 lineFree = 5; | |
1415 | |
1416 if(stateUsed->decoMissed_at_the_end_of_dive) | |
1417 { | |
1418 text[textpointer++] = TXT_2BYTE; | |
1419 text[textpointer++] = TXT2BYTE_WarnDecoMissed; | |
1420 text[textpointer++] = '\n'; | |
1421 text[textpointer++] = '\r'; | |
1422 text[textpointer] = 0; | |
1423 lineFree--; | |
1424 } | |
1425 | |
1426 if(stateUsed->cnsHigh_at_the_end_of_dive) | |
1427 { | |
1428 text[textpointer++] = TXT_2BYTE; | |
1429 text[textpointer++] = TXT2BYTE_WarnCnsHigh; | |
1430 text[textpointer++] = '\n'; | |
1431 text[textpointer++] = '\r'; | |
1432 text[textpointer] = 0; | |
1433 lineFree--; | |
1434 } | |
477
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1435 #ifdef ENABLE_BOTTLE_SENSOR |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1436 if(stateUsed->warnings.newPressure) |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1437 { |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1438 sprintf(&text[textpointer] ," %u Bar\n", stateUsed->warnings.newPressure); |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1439 textpointer++; |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1440 lineFree--; |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1441 } |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1442 #endif |
38 | 1443 if(textpointer != 0) |
1444 GFX_write_string(&FontT48,&t7cW,text,1); | |
1445 } | |
1446 | |
1447 | |
1448 void t7_show_customview_warnings(void) | |
1449 { | |
1450 char text[256]; | |
1451 uint8_t textpointer, lineFree; | |
1452 | |
1453 text[0] = '\025'; | |
1454 text[1] = '\f'; | |
1455 text[2] = '\001'; | |
1456 text[3] = TXT_Warning; | |
1457 text[4] = 0; | |
1458 GFX_write_string(&FontT42,&t7cH,text,0); | |
1459 | |
1460 textpointer = 0; | |
1461 lineFree = 5; | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1462 |
38 | 1463 if(lineFree && stateUsed->warnings.decoMissed) |
1464 { | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1465 text[textpointer++] = '\001'; |
38 | 1466 text[textpointer++] = TXT_2BYTE; |
1467 text[textpointer++] = TXT2BYTE_WarnDecoMissed; | |
1468 text[textpointer++] = '\n'; | |
1469 text[textpointer++] = '\r'; | |
1470 text[textpointer] = 0; | |
1471 lineFree--; | |
1472 } | |
1473 | |
1474 if(lineFree && stateUsed->warnings.fallback) | |
1475 { | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1476 text[textpointer++] = '\001'; |
38 | 1477 text[textpointer++] = TXT_2BYTE; |
1478 text[textpointer++] = TXT2BYTE_WarnFallback; | |
1479 text[textpointer++] = '\n'; | |
1480 text[textpointer++] = '\r'; | |
1481 text[textpointer] = 0; | |
1482 lineFree--; | |
1483 } | |
1484 | |
1485 if(lineFree && stateUsed->warnings.ppO2Low) | |
1486 { | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1487 text[textpointer++] = '\001'; |
38 | 1488 text[textpointer++] = TXT_2BYTE; |
1489 text[textpointer++] = TXT2BYTE_WarnPPO2Low; | |
1490 text[textpointer++] = '\n'; | |
1491 text[textpointer++] = '\r'; | |
1492 text[textpointer] = 0; | |
1493 lineFree--; | |
1494 } | |
1495 | |
1496 if(lineFree && stateUsed->warnings.ppO2High) | |
1497 { | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1498 text[textpointer++] = '\001'; |
38 | 1499 text[textpointer++] = TXT_2BYTE; |
1500 text[textpointer++] = TXT2BYTE_WarnPPO2High; | |
1501 text[textpointer++] = '\n'; | |
1502 text[textpointer++] = '\r'; | |
1503 text[textpointer] = 0; | |
1504 lineFree--; | |
1505 } | |
1506 | |
1507 if(lineFree && stateUsed->warnings.sensorLinkLost) | |
1508 { | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1509 text[textpointer++] = '\001'; |
38 | 1510 text[textpointer++] = TXT_2BYTE; |
1511 text[textpointer++] = TXT2BYTE_WarnSensorLinkLost; | |
1512 text[textpointer++] = '\n'; | |
1513 text[textpointer++] = '\r'; | |
1514 text[textpointer] = 0; | |
1515 lineFree--; | |
1516 } | |
477
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1517 #ifdef ENABLE_BOTTLE_SENSOR |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1518 if(stateUsed->warnings.newPressure) |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1519 { |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1520 text[textpointer++] = '\001'; |
477
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1521 sprintf(&text[textpointer]," %u Bar\n", stateUsed->warnings.newPressure); |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1522 textpointer++; |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1523 lineFree--; |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1524 } |
5e6a612d03b5
Only switch between "no fly" and "desaturation" in case there is desaturation time left:
ideenmodellierer
parents:
457
diff
changeset
|
1525 #endif |
38 | 1526 /* |
1527 if(lineFree && stateUsed->warnings.lowBattery) | |
1528 { | |
1529 text[textpointer++] = TXT_2BYTE; | |
1530 text[textpointer++] = TXT2BYTE_WarnBatteryLow; | |
1531 text[textpointer++] = '\n'; | |
1532 text[textpointer++] = '\r'; | |
1533 text[textpointer] = 0; | |
1534 lineFree--; | |
1535 } | |
1536 */ | |
1537 GFX_write_string(&FontT48,&t7cW,text,1); | |
1538 } | |
1539 | |
1540 | |
1541 void t7_set_customview_to_primary(void) | |
1542 { | |
1543 if(stateUsed->mode == MODE_DIVE) | |
1544 selection_customview = settingsGetPointer()->tX_customViewPrimary; | |
1545 } | |
1546 | |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1547 uint8_t t7_GetEnabled_customviews() |
38 | 1548 { |
379 | 1549 int8_t i; |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1550 uint8_t *pViews; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1551 uint8_t increment = 1; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1552 |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1553 uint8_t enabledViewCnt = 0; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1554 uint32_t cv_config = settingsGetPointer()->cv_configuration; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1555 |
530
c880907fd1d7
Bugfix: No need to consider surface custom view in count of enabled view:
Ideenmodellierer
parents:
527
diff
changeset
|
1556 pViews = (uint8_t*)customviewsDive; |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1557 |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1558 while((*pViews != CVIEW_END)) |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1559 { |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1560 increment = 1; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1561 /* check if view is enabled */ |
379 | 1562 i=0; |
1563 do | |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1564 { |
379 | 1565 if(*pViews == cv_changelist[i]) |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1566 { |
379 | 1567 if(!CHECK_BIT_THOME(cv_config, cv_changelist[i])) |
1568 { | |
1569 increment = 0; | |
1570 } | |
1571 break; | |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1572 } |
379 | 1573 i++; |
1574 } while(cv_changelist[i] != CVIEW_END); | |
1575 if(cv_changelist[i] == CVIEW_END) | |
1576 { | |
1577 increment = 0; | |
1578 } | |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1579 if (((*pViews == CVIEW_sensors) || (*pViews == CVIEW_sensors_mV)) && |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1580 ((stateUsed->diveSettings.ppo2sensors_deactivated == 0x07) || (stateUsed->diveSettings.ccrOption == 0))) |
369
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1581 { |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1582 increment = 0; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1583 } |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1584 |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1585 pViews++; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1586 enabledViewCnt += increment; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1587 } |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1588 return enabledViewCnt; |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1589 } |
210bffc496a3
Added a function to count the active custom views.
ideenmodellierer
parents:
367
diff
changeset
|
1590 |
405 | 1591 uint8_t t7_customview_disabled(uint8_t view) |
1592 { | |
1593 uint8_t i = 0; | |
1594 uint8_t cv_disabled = 0; | |
1595 | |
1596 while(cv_changelist[i] != CVIEW_END) | |
1597 { | |
1598 if((view == cv_changelist[i]) && !CHECK_BIT_THOME(settingsGetPointer()->cv_configuration, cv_changelist[i])) | |
1599 { | |
1600 cv_disabled = 1; | |
1601 break; | |
1602 } | |
1603 i++; | |
1604 } | |
1605 | |
1606 if (((view == CVIEW_sensors) || (view == CVIEW_sensors_mV)) && | |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
1607 ((stateUsed->diveSettings.ppo2sensors_deactivated == 0x07) || (stateUsed->diveSettings.ccrOption == 0) || (stateUsed->warnings.fallback))) |
405 | 1608 { |
1609 cv_disabled = 1; | |
1610 } | |
1611 return cv_disabled; | |
1612 } | |
1613 | |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
1614 uint8_t t7_change_customview(uint8_t action) |
38 | 1615 { |
365
c18aebb03fed
Bugfix: selection of current view not working
ideenmodellierer
parents:
361
diff
changeset
|
1616 uint8_t *pViews; |
660 | 1617 uint8_t *pStartView,*pLastView; |
1618 uint8_t *pCurView = NULL; | |
38 | 1619 _Bool cv_disabled = 0; |
1620 | |
1621 if(stateUsed->mode == MODE_DIVE) | |
374 | 1622 pViews = (uint8_t*)customviewsDive; |
38 | 1623 else |
374 | 1624 pViews = (uint8_t*)customviewsSurface; |
38 | 1625 |
361
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1626 pStartView = pViews; |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1627 /* set pointer to currently selected view and count number of entries */ |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1628 while((*pViews != CVIEW_END)) |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1629 { |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1630 if (*pViews == selection_customview) |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1631 { |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1632 pCurView = pViews; |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1633 } |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1634 pViews++; |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1635 } |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1636 pLastView = pViews; |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1637 pViews = pCurView; |
b111fc4250e9
Pass action to customer vie update function.
Ideenmodellierer
parents:
247
diff
changeset
|
1638 |
366 | 1639 do |
1640 { | |
495 | 1641 switch(action) |
1642 { | |
1643 case ACTION_BUTTON_ENTER: | |
1644 case ACTION_PITCH_POS: | |
510
0004704906d0
Display warning in t7 using centered strings
Ideenmodellierer
parents:
495
diff
changeset
|
1645 if(*pViews != CVIEW_END) |
495 | 1646 pViews++; |
510
0004704906d0
Display warning in t7 using centered strings
Ideenmodellierer
parents:
495
diff
changeset
|
1647 if(*pViews == CVIEW_END) |
366 | 1648 { |
1649 pViews = pStartView; | |
1650 } | |
495 | 1651 break; |
1652 case ACTION_PITCH_NEG: | |
1653 if(pViews == pStartView) | |
1654 { | |
1655 pViews = pLastView - 1; | |
1656 } | |
1657 else | |
1658 { | |
1659 pViews--; | |
1660 } | |
1661 break; | |
1662 default: | |
1663 break; | |
1664 } | |
1665 | |
1666 cv_disabled = t7_customview_disabled(*pViews); | |
1667 if((cv_disabled) && (action == ACTION_END)) | |
1668 { | |
1669 action = ACTION_BUTTON_ENTER; | |
1670 } | |
366 | 1671 } while(cv_disabled); |
1672 | |
38 | 1673 selection_customview = *pViews; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
1674 return *pViews; |
38 | 1675 } |
1676 | |
577
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1677 void t7_select_customview(uint8_t selectedCustomview) |
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1678 { |
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1679 if(selectedCustomview < CVIEW_END) |
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1680 { |
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1681 selection_customview = selectedCustomview; |
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1682 } |
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1683 } |
38 | 1684 |
1685 uint8_t t7_get_length_of_customtext(void) | |
1686 { | |
1687 uint8_t i = 0; | |
1688 settingsGetPointer()->customtext[60-1] = 0; | |
1689 while(settingsGetPointer()->customtext[i] > 0) | |
1690 i++; | |
1691 return i; | |
1692 } | |
1693 | |
1694 | |
1695 void t7_refresh_customview(void) | |
1696 { | |
405 | 1697 static uint8_t last_customview = CVIEW_END; |
38 | 1698 |
1699 char text[256]; | |
567 | 1700 char timeSuffix; |
1701 uint8_t hoursToDisplay; | |
38 | 1702 uint16_t textpointer = 0; |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
1703 uint16_t heading = 0; |
38 | 1704 int16_t start; |
51
8f8ea3a32e82
Resolved warnings pointing to possible invalid memory access
Ideenmodellierer
parents:
38
diff
changeset
|
1705 uint8_t lineCountCustomtext = 0; |
38 | 1706 int16_t shiftWindowY0; |
1707 RTC_DateTypeDef Sdate; | |
1708 RTC_TimeTypeDef Stime; | |
1709 float fPpO2limitHigh, fPpO2limitLow, fPpO2ofGasAtThisDepth; // CVIEW_Gaslist | |
1710 const SGasLine * pGasLine; // CVIEW_Gaslist | |
1711 uint8_t oxygen, helium; // CVIEW_Gaslist | |
1712 float depth, surface, fraction_nitrogen, fraction_helium, ead, end; // CVIEW_EADTime | |
1713 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1714 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1715 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1716 |
405 | 1717 if(last_customview != selection_customview) /* check if current selection is disabled and should be skipped */ |
1718 { | |
1719 if(t7_customview_disabled(selection_customview)) | |
1720 { | |
1721 t7_change_customview(ACTION_BUTTON_ENTER); | |
1722 } | |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
1723 last_customview = selection_customview; |
405 | 1724 } |
38 | 1725 switch(selection_customview) |
1726 { | |
1727 case CVIEW_noneOrDebug: | |
1728 if(settingsGetPointer()->showDebugInfo) | |
1729 { | |
1730 // header | |
1731 strcpy(text,"\032\f\001Debug"); | |
1732 GFX_write_string(&FontT42,&t7cH,text,0); | |
1733 // content | |
1734 t7_debug(); | |
1735 } | |
1736 break; | |
1737 | |
1738 case CVIEW_SummaryOfLeftCorner: | |
1739 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_Summary); | |
1740 GFX_write_string(&FontT42,&t7cH,text,0); | |
1741 // content | |
1742 t7_SummaryOfLeftCorner(); | |
1743 break; | |
1744 | |
1745 case CVIEW_CompassDebug: | |
1746 snprintf(text,100,"\032\f\001Compass raw"); | |
1747 GFX_write_string(&FontT42,&t7cH,text,0); | |
1748 snprintf(text,255,"%1.1f\n\r%1.1f\n\r%1.1f\n\r%i\n\r%i\n\r%i" | |
1749 ,stateUsed->lifeData.compass_heading | |
1750 ,stateUsed->lifeData.compass_roll | |
1751 ,stateUsed->lifeData.compass_pitch | |
1752 ,stateUsed->lifeData.compass_DX_f | |
1753 ,stateUsed->lifeData.compass_DY_f | |
1754 ,stateUsed->lifeData.compass_DZ_f | |
1755 ); | |
1756 | |
1757 t7cY0free.WindowY0 = t7cC.WindowY0 - 10; | |
1758 t7cY0free.WindowLineSpacing = 48; | |
1759 t7cY0free.WindowNumberOfTextLines = 6; | |
1760 GFX_write_string(&FontT42, &t7cY0free, text, 1); | |
1761 break; | |
1762 | |
1763 case CVIEW_Hello: | |
1764 t7_logo_OSTC(); | |
1765 t7cC.WindowLineSpacing = 53; | |
1766 t7cC.WindowNumberOfTextLines = 5; | |
1767 shiftWindowY0 = 18; | |
1768 | |
1769 if(updateNecessary)//if(DataEX_check_RTE_version__needs_update() || font_update_required()) | |
1770 { | |
1771 if(warning_count_high_time) | |
1772 { | |
1773 shiftWindowY0 += 20; | |
1774 t7cC.WindowY0 -= shiftWindowY0; | |
1775 textpointer = 0; | |
1776 text[textpointer++] = TXT_2BYTE; | |
1777 text[textpointer++] = TXT2BYTE_PleaseUpdate; | |
1778 text[textpointer++] = '\n'; | |
1779 text[textpointer++] = '\r'; | |
1780 if(DataEX_check_RTE_version__needs_update()) | |
1781 { | |
1782 text[textpointer++] = TXT_2BYTE; | |
1783 text[textpointer++] = TXT2BYTE_RTE; | |
1784 text[textpointer++] = '\n'; | |
1785 text[textpointer++] = '\r'; | |
1786 } | |
1787 if(font_update_required()) | |
1788 { | |
1789 text[textpointer++] = TXT_2BYTE; | |
1790 text[textpointer++] = TXT2BYTE_Fonts; | |
1791 } | |
1792 text[textpointer++] = 0; | |
1793 GFX_write_string_color(&FontT42,&t7cC,text,1, CLUT_WarningRed); | |
1794 t7cC.WindowY0 += shiftWindowY0; | |
1795 } | |
1796 t7cC.WindowNumberOfTextLines = 3; | |
1797 } | |
1798 else // customtext | |
1799 { | |
1800 lineCountCustomtext = t7_customtextPrepare(text); | |
1801 if(lineCountCustomtext <= 2) | |
1802 shiftWindowY0 += 20+26; // nach unten | |
1803 else | |
1804 if(lineCountCustomtext <= 3) | |
1805 shiftWindowY0 += 20; // nach unten | |
1806 t7cC.WindowY0 -= shiftWindowY0; | |
1807 | |
1808 GFX_write_string(&FontT42,&t7cC,text,1); | |
1809 t7cC.WindowNumberOfTextLines = 3; | |
1810 t7cC.WindowY0 += shiftWindowY0; | |
1811 } | |
1812 if(lineCountCustomtext <= 4) | |
1813 { | |
1814 snprintf(text,100,"\001#%0u V%01u.%01u.%01u", | |
1815 settingsGetPointer()->serialLow + (256 * settingsGetPointer()->serialHigh), | |
1816 firmwareDataGetPointer()->versionFirst, | |
1817 firmwareDataGetPointer()->versionSecond, | |
1818 firmwareDataGetPointer()->versionThird | |
1819 ); | |
1820 GFX_write_string(&FontT24,&t7cC,text,0); | |
1821 } | |
1822 break; | |
1823 | |
1824 case CVIEW_Gaslist: | |
1825 // a lot of code taken from tMenuGas.c | |
1826 // header | |
1827 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_Gaslist); | |
1828 GFX_write_string(&FontT42,&t7cH,text,0); | |
1829 // content | |
1830 textpointer = 0; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1831 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1832 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1833 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1834 t7cY0free.WindowY0 = t7cC.WindowY0 - 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1835 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1836 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1837 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1838 t7cY0free.WindowY1 = 400; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1839 } |
38 | 1840 t7cY0free.WindowLineSpacing = 48+9; |
1841 t7cY0free.WindowNumberOfTextLines = 5; // NUM_GASES == 5 | |
1842 t7cY0free.WindowTab = 420; | |
1843 | |
1844 pGasLine = settingsGetPointer()->gas; | |
1845 if(actualLeftMaxDepth(stateUsed)) | |
1846 fPpO2limitHigh = (float)(settingsGetPointer()->ppO2_max_deco) / 100; | |
1847 else | |
1848 fPpO2limitHigh = (float)(settingsGetPointer()->ppO2_max_std) / 100; | |
1849 fPpO2limitLow = (float)(settingsGetPointer()->ppO2_min) / 100; | |
1850 for(int gasId=1;gasId<=NUM_GASES;gasId++) | |
1851 { | |
1852 textpointer = 0; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1853 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1854 if(!pGasLine[gasId].note.ub.off) |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1855 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1856 #endif |
38 | 1857 fPpO2ofGasAtThisDepth = (stateUsed->lifeData.pressure_ambient_bar - WATER_VAPOUR_PRESSURE) * pGasLine[gasId].oxygen_percentage / 100; |
1858 if(pGasLine[gasId].note.ub.active == 0) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1859 strcpy(&text[textpointer++],"\031"); |
517 | 1860 else if(stateUsed->lifeData.actualGas.GasIdInSettings == gasId) /* actual selected gas */ |
1861 { | |
1862 strcpy(&text[textpointer++],"\030"); | |
1863 } | |
38 | 1864 else if((fPpO2ofGasAtThisDepth > fPpO2limitHigh) || (fPpO2ofGasAtThisDepth < fPpO2limitLow)) |
1865 strcpy(&text[textpointer++],"\025"); | |
517 | 1866 else if(actualBetterGasId() == gasId) |
1867 { | |
1868 strcpy(&text[textpointer++],"\026"); /* Highlight better gas */ | |
1869 } | |
38 | 1870 else |
517 | 1871 strcpy(&text[textpointer++],"\023"); |
38 | 1872 |
1873 text[textpointer++] = ' '; | |
1874 oxygen = pGasLine[gasId].oxygen_percentage; | |
1875 helium = pGasLine[gasId].helium_percentage; | |
1876 textpointer += write_gas(&text[textpointer], oxygen, helium); | |
1877 // Wechseltiefe | |
1878 if(pGasLine[gasId].depth_meter) | |
1879 { | |
631 | 1880 textpointer += snprintf(&text[textpointer],10,"\t%u %c%c",unit_depth_integer(pGasLine[gasId].depth_meter), unit_depth_char1(), unit_depth_char2()); |
38 | 1881 } |
1882 GFX_write_string(&FontT42, &t7cY0free, text, gasId); | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1883 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1884 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
1885 #endif |
38 | 1886 } |
1887 break; | |
1888 | |
1889 case CVIEW_EADTime: | |
1890 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_Info ); | |
1891 GFX_write_string(&FontT42,&t7cH,text,0); | |
1892 textpointer = 0; | |
1893 | |
1894 t7cY0free.WindowY0 = t7cC.WindowY0 - 10; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1895 if(pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1896 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1897 t7cY0free.WindowY1 = 400; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
1898 } |
38 | 1899 t7cY0free.WindowLineSpacing = 48; |
1900 t7cY0free.WindowNumberOfTextLines = 6; | |
1901 | |
1902 // time | |
1903 snprintf(text,100,"\032\001%c%c",TXT_2BYTE,TXT2BYTE_Clock ); | |
1904 GFX_write_string(&FontT42, &t7cY0free, text, 1); | |
1905 | |
1906 translateDate(stateRealGetPointer()->lifeData.dateBinaryFormat, &Sdate); | |
1907 translateTime(stateRealGetPointer()->lifeData.timeBinaryFormat, &Stime); | |
567 | 1908 |
1909 if (settingsGetPointer()->amPMTime) | |
1910 { | |
1911 if (Stime.Hours > 11) | |
1912 { | |
1913 timeSuffix = 'P'; | |
1914 } | |
1915 else | |
1916 { | |
1917 timeSuffix = 'A'; | |
1918 } | |
1919 | |
1920 if (Stime.Hours % 12 == 0) | |
1921 { | |
1922 hoursToDisplay = 12; | |
1923 } | |
1924 else | |
1925 { | |
1926 hoursToDisplay = (Stime.Hours % 12); | |
1927 } | |
1928 | |
1929 if(Stime.Seconds % 2) | |
1930 textpointer += snprintf(&text[textpointer],100,"\030\001%02d:%02d %cM",hoursToDisplay,Stime.Minutes,timeSuffix); | |
1931 else | |
1932 textpointer += snprintf(&text[textpointer],100,"\030\001%02d\031:\030%02d %cM",hoursToDisplay,Stime.Minutes,timeSuffix); | |
1933 } | |
38 | 1934 else |
567 | 1935 { |
1936 if(Stime.Seconds % 2) | |
1937 textpointer += snprintf(&text[textpointer],100,"\030\001%02d:%02d",Stime.Hours,Stime.Minutes); | |
1938 else | |
1939 textpointer += snprintf(&text[textpointer],100,"\030\001%02d\031:\030%02d",Stime.Hours,Stime.Minutes); | |
1940 } | |
1941 | |
38 | 1942 GFX_write_string(&FontT42, &t7cY0free, text, 2); |
1943 | |
1944 // EAD / END | |
1945 // The equivalent air depth can be calculated for depths in metres as follows: | |
1946 // EAD = (Depth + 10) � Fraction of N2 / 0.79 - 10 (wikipedia) | |
1947 // The equivalent narcotic depth can be calculated for depths in metres as follows: | |
1948 // END = (Depth + 10) � (1 - Fraction of helium) - 10 (wikipedia) | |
1949 decom_get_inert_gases((float)stateUsed->lifeData.pressure_ambient_bar,&(stateUsed->lifeData.actualGas),&fraction_nitrogen,&fraction_helium); | |
1950 depth = stateUsed->lifeData.pressure_ambient_bar; | |
1951 surface = stateUsed->lifeData.pressure_surface_bar; | |
1952 ead = 10.f * ((depth * fraction_nitrogen/0.79f) - surface); | |
1953 end = 10.0f * ((depth * (1.f - fraction_helium)) - surface); | |
1954 if(ead < 0) | |
1955 ead = 0; | |
1956 if(end < 0) | |
1957 end = 0; | |
1958 | |
1959 snprintf(text,100,"\032\001EAD"); | |
1960 GFX_write_string(&FontT42, &t7cY0free, text, 3); | |
1961 snprintf(text,100,"\030\001%01.1f %c%c" | |
1962 , unit_depth_float(ead) | |
1963 , unit_depth_char1() | |
1964 , unit_depth_char2() | |
1965 ); | |
1966 GFX_write_string(&FontT42, &t7cY0free, text, 4); | |
1967 | |
1968 snprintf(text,100,"\032\001END"); | |
1969 GFX_write_string(&FontT42, &t7cY0free, text, 5); | |
1970 snprintf(text,100,"\030\001%01.1f %c%c" | |
1971 , unit_depth_float(ead) | |
1972 , unit_depth_char1() | |
1973 , unit_depth_char2() | |
1974 ); | |
1975 GFX_write_string(&FontT42, &t7cY0free, text, 6); | |
1976 break; | |
1977 | |
1978 case CVIEW_Profile: | |
1979 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_Profile); | |
1980 GFX_write_string(&FontT42,&t7cH,text,0); | |
1981 textpointer = 0; | |
1982 t7_miniLiveLogProfile(); | |
1983 break; | |
1984 | |
1985 case CVIEW_Tissues: | |
1986 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_Tissues); | |
1987 GFX_write_string(&FontT42,&t7cH,text,0); | |
1988 textpointer = 0; | |
1989 t7_tissues(stateUsed); | |
1990 break; | |
1991 | |
1992 case CVIEW_sensors: | |
1993 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_O2monitor); | |
1994 GFX_write_string(&FontT42,&t7cH,text,0); | |
1995 textpointer = 0; | |
1996 text[textpointer++] = '\030'; // main color | |
1997 for(int i=0;i<3;i++) | |
1998 { | |
577
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
567
diff
changeset
|
1999 if((stateUsed->diveSettings.ppo2sensors_deactivated & (1<<i)) || (stateUsed->lifeData.ppO2Sensor_bar[i] == 0.0)) |
38 | 2000 { |
2001 text[textpointer++] = '\031'; // labelcolor | |
2002 text[textpointer++] = '\001'; | |
2003 text[textpointer++] = '-'; | |
2004 text[textpointer++] = '\n'; | |
2005 text[textpointer++] = '\r'; | |
2006 text[textpointer++] = '\030'; // main color | |
2007 text[textpointer] = 0; | |
2008 } | |
2009 else | |
2010 { | |
2011 if(stateUsed->warnings.sensorOutOfBounds[i]) | |
2012 text[textpointer++] = '\025'; // Warning Red | |
2013 textpointer += snprintf(&text[textpointer],100,"\001%01.2f\n\r\030",stateUsed->lifeData.ppO2Sensor_bar[i]); | |
2014 } | |
2015 } | |
2016 t7cC.WindowLineSpacing = 95; | |
2017 t7cC.WindowNumberOfTextLines = 3; | |
2018 text[textpointer] = 0; | |
315
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2019 if(pSettings->FlipDisplay) |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2020 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2021 t7cC.WindowY1 -= 40; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2022 } |
38 | 2023 GFX_write_string(&FontT105,&t7cC,text,1); |
315
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2024 if(pSettings->FlipDisplay) |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2025 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2026 t7cC.WindowY1 += 40; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2027 } |
38 | 2028 break; |
2029 | |
2030 case CVIEW_sensors_mV: | |
2031 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE,TXT2BYTE_O2voltage); | |
2032 GFX_write_string(&FontT42,&t7cH,text,0); | |
2033 textpointer = 0; | |
2034 text[textpointer++] = '\030'; | |
2035 for(int i=0;i<3;i++) | |
2036 { | |
2037 if(stateUsed->diveSettings.ppo2sensors_deactivated & (1<<i)) | |
2038 { | |
2039 text[textpointer++] = '\031'; | |
2040 text[textpointer++] = '\001'; | |
2041 text[textpointer++] = '-'; | |
2042 text[textpointer++] = '\n'; | |
2043 text[textpointer++] = '\r'; | |
2044 text[textpointer++] = '\030'; | |
2045 text[textpointer] = 0; | |
2046 } | |
2047 else | |
2048 { | |
2049 if(stateUsed->warnings.sensorOutOfBounds[i]) | |
2050 text[textpointer++] = '\025'; | |
2051 textpointer += snprintf(&text[textpointer],100,"\001%01.1f mV\n\r\030",(stateUsed->lifeData.sensorVoltage_mV[i])); | |
2052 } | |
2053 } | |
2054 t7cC.WindowLineSpacing = 95; | |
2055 t7cC.WindowNumberOfTextLines = 3; | |
2056 text[textpointer] = 0; | |
315
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2057 if(pSettings->FlipDisplay) |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2058 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2059 t7cC.WindowY1 -= 40; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2060 } |
38 | 2061 GFX_write_string(&FontT48,&t7cC,text,1); |
315
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2062 if(pSettings->FlipDisplay) |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2063 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2064 t7cC.WindowY1 += 40; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
2065 } |
38 | 2066 break; |
2067 | |
2068 case CVIEW_Compass: | |
2069 default: | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2070 |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2071 if(pSettings->compassInertia) |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2072 { |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2073 heading = (uint16_t)compass_getCompensated(); |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2074 } |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2075 else |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2076 { |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2077 heading = (uint16_t)stateUsed->lifeData.compass_heading; |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2078 } |
38 | 2079 snprintf(text,100,"\032\f\001%c%c",TXT_2BYTE, TXT2BYTE_Compass); |
2080 GFX_write_string(&FontT42,&t7cH,text,0); | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2081 t7_compass(heading, stateUsed->diveSettings.compassHeading); |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2082 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2083 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2084 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2085 t7cY0free.WindowX0 += 15; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2086 t7cY0free.WindowY0 = 230; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2087 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2088 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2089 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2090 t7cY0free.WindowX0 -= 15; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2091 t7cY0free.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2092 t7cY0free.WindowY1 = 250; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2093 } |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2094 snprintf(text,100,"\030\001%03i`",heading); |
38 | 2095 GFX_write_string(&FontT54,&t7cY0free,text,0); |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2096 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2097 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2098 t7cY0free.WindowX0 -= 15; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2099 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2100 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2101 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2102 t7cY0free.WindowX0 += 15; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2103 } |
38 | 2104 break; |
2105 | |
2106 case CVIEW_Decolist: | |
2107 snprintf(text,100,"\032\f\001 %c%c", TXT_2BYTE, TXT2BYTE_Decolist); | |
2108 GFX_write_string(&FontT42,&t7cH,text,0); | |
2109 | |
2110 const SDecoinfo * pDecoinfo; | |
2111 uint8_t depthNext, depthLast, depthSecond, depthInc; | |
2112 | |
2113 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
2114 pDecoinfo = &stateUsed->decolistBuehlmann; | |
2115 else | |
2116 pDecoinfo = &stateUsed->decolistVPM; | |
2117 | |
2118 depthLast = (uint8_t)(stateUsed->diveSettings.last_stop_depth_bar * 10); | |
2119 depthSecond = (uint8_t)(stateUsed->diveSettings.input_second_to_last_stop_depth_bar * 10); | |
2120 depthInc = (uint8_t)(stateUsed->diveSettings.input_next_stop_increment_depth_bar * 10); | |
2121 | |
2122 if(settingsGetPointer()->nonMetricalSystem) | |
2123 { | |
2124 depthLast = (uint8_t)unit_depth_integer(depthLast); | |
2125 depthSecond = (uint8_t)unit_depth_integer(depthSecond); | |
2126 depthInc = (uint8_t)unit_depth_integer(depthInc); | |
2127 } | |
2128 | |
2129 for(start=DECOINFO_STRUCT_MAX_STOPS-1; start>0; start--) | |
2130 if(pDecoinfo->output_stop_length_seconds[start]) break; | |
2131 start -= 6; | |
2132 if(start < 0) start = 0; | |
2133 | |
2134 textpointer = 0; | |
2135 for(int i=start;i<6+start;i++) | |
2136 { | |
2137 if(i == 0) | |
2138 depthNext = depthLast; | |
2139 else | |
2140 depthNext = depthSecond + (( i - 1 )* depthInc); | |
2141 | |
2142 if(pDecoinfo->output_stop_length_seconds[i]) | |
2143 textpointer += snprintf(&text[textpointer],20,"\030\034 %2u\016\016%c%c\017%3i'\n\r",depthNext, unit_depth_char1(), unit_depth_char2(), (pDecoinfo->output_stop_length_seconds[i]+59)/60); | |
2144 else | |
2145 textpointer += snprintf(&text[textpointer],20,"\031\034 %2u\016\016%c%c\017\n\r",depthNext, unit_depth_char1(), unit_depth_char2()); | |
2146 if(textpointer > 200) break; | |
2147 } | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2148 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2149 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2150 t7cY0free.WindowY0 = t7cC.WindowY0 - 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2151 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2152 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2153 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2154 t7cY0free.WindowY0 = t7cC.WindowY0 - 10; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2155 t7cY0free.WindowY1 = 400; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2156 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2157 |
38 | 2158 t7cY0free.WindowLineSpacing = 48; |
2159 t7cY0free.WindowNumberOfTextLines = 6; | |
2160 GFX_write_string(&FontT42, &t7cY0free, text, 1); | |
2161 break; | |
2162 } | |
2163 } | |
2164 | |
2165 | |
2166 | |
2167 /* DIVE MODE | |
2168 */ | |
2169 void t7_refresh_divemode(void) | |
2170 { | |
2171 char TextL1[TEXTSIZE]; | |
2172 char TextL2[TEXTSIZE]; | |
2173 | |
2174 char TextR1[TEXTSIZE]; | |
2175 char TextR2[TEXTSIZE]; | |
2176 char TextR3[TEXTSIZE]; | |
2177 | |
2178 char TextC1[2*TEXTSIZE]; | |
2179 char TextC2[TEXTSIZE]; | |
2180 uint8_t textPointer; | |
2181 | |
2182 point_t start, stop; | |
2183 uint8_t color; | |
2184 int textlength; | |
2185 | |
2186 uint16_t nextstopLengthSeconds = 0; | |
2187 uint8_t nextstopDepthMeter = 0; | |
2188 uint8_t oxygen_percentage = 0; | |
2189 SDivetime Divetime = {0,0,0, 0}; | |
2190 SDivetime SafetyStopTime = {0,0,0,0}; | |
2191 SDivetime TimeoutTime = {0,0,0,0}; | |
2192 uint8_t customview_warnings = 0; | |
2193 const SDecoinfo * pDecoinfo; | |
2194 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2195 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2196 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2197 |
38 | 2198 Divetime.Total = stateUsed->lifeData.dive_time_seconds_without_surface_time; |
2199 Divetime.Minutes = Divetime.Total / 60; | |
2200 Divetime.Seconds = Divetime.Total - ( Divetime.Minutes * 60 ); | |
2201 | |
2202 SafetyStopTime.Total = timer_Safetystop_GetCountDown(); | |
2203 SafetyStopTime.Minutes = SafetyStopTime.Total / 60; | |
2204 SafetyStopTime.Seconds = SafetyStopTime.Total - (SafetyStopTime.Minutes * 60); | |
2205 | |
2206 TimeoutTime.Total = settingsGetPointer()->timeoutDiveReachedZeroDepth - stateUsed->lifeData.counterSecondsShallowDepth; | |
2207 if(TimeoutTime.Total > settingsGetPointer()->timeoutDiveReachedZeroDepth) | |
2208 { | |
2209 TimeoutTime.Total = 0; | |
2210 } | |
2211 TimeoutTime.Minutes = TimeoutTime.Total / 60; | |
2212 TimeoutTime.Seconds = TimeoutTime.Total - (TimeoutTime.Minutes * 60); | |
2213 | |
2214 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
2215 pDecoinfo = &stateUsed->decolistBuehlmann; | |
2216 else | |
2217 pDecoinfo = &stateUsed->decolistVPM; | |
2218 | |
2219 if(pDecoinfo->output_time_to_surface_seconds) | |
2220 { | |
2221 tHome_findNextStop(pDecoinfo->output_stop_length_seconds, &nextstopDepthMeter, &nextstopLengthSeconds); | |
2222 } | |
2223 else | |
2224 { | |
2225 nextstopDepthMeter = 0; | |
2226 nextstopLengthSeconds = 0; | |
2227 } | |
2228 | |
2229 /* depth */ | |
174
ecb71521d004
Bugfix: make max depth move with current depth (part 2)
Jan Mulder <jlmulder@xs4all.nl>
parents:
166
diff
changeset
|
2230 float depth = unit_depth_float(stateUsed->lifeData.depth_meter); |
38 | 2231 |
2232 if(depth <= 0.3f) | |
2233 depth = 0; | |
2234 | |
2235 if(settingsGetPointer()->nonMetricalSystem) | |
2236 snprintf(TextL1,TEXTSIZE,"\032\f[feet]"); | |
2237 else | |
2238 snprintf(TextL1,TEXTSIZE,"\032\f%c",TXT_Depth); | |
2239 GFX_write_string(&FontT24,&t7l1,TextL1,0); | |
2240 | |
2241 if((stateUsed->lifeData.ascent_rate_meter_per_min > 8) || (stateUsed->lifeData.ascent_rate_meter_per_min < -10)) | |
2242 { | |
2243 snprintf(TextL1,TEXTSIZE,"\f\002%.0f %c%c/min " | |
2244 , unit_depth_float(stateUsed->lifeData.ascent_rate_meter_per_min) | |
2245 , unit_depth_char1() | |
2246 , unit_depth_char2() | |
2247 ); | |
2248 GFX_write_string(&FontT24,&t7l1,TextL1,0); | |
2249 } | |
2250 | |
2251 if( depth < 100) | |
2252 snprintf(TextL1,TEXTSIZE,"\020%01.1f",depth); | |
2253 else | |
2254 snprintf(TextL1,TEXTSIZE,"\020%01.0f",depth); | |
2255 | |
2256 t7_colorscheme_mod(TextL1); | |
2257 GFX_write_string(&FontT144,&t7l1,TextL1,1); | |
2258 | |
2259 /* max depth */ | |
2260 snprintf(TextL2,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
2261 GFX_write_string(&FontT42,&t7l2,TextL2,0); | |
2262 | |
2263 if(unit_depth_float(stateUsed->lifeData.max_depth_meter) < 100) | |
2264 snprintf(TextL2,TEXTSIZE,"\020%01.1f",unit_depth_float(stateUsed->lifeData.max_depth_meter)); | |
2265 else | |
2266 snprintf(TextL2,TEXTSIZE,"\020%01.0f",unit_depth_float(stateUsed->lifeData.max_depth_meter)); | |
2267 | |
2268 t7_colorscheme_mod(TextL2); | |
2269 GFX_write_string(&FontT105,&t7l2,TextL2,1); | |
2270 | |
187
485c5135cf7f
cleanup: forgotten cleanup from 9da7dd50e2ec
Jan Mulder <jlmulder@xs4all.nl>
parents:
178
diff
changeset
|
2271 /* ascent rate graph */ |
392 | 2272 if(stateUsed->lifeData.ascent_rate_meter_per_min > 1) /* a value < 1 would cause a bar in negative direction brush rectangle of 12 and step width of 6 */ |
38 | 2273 { |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2274 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2275 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2276 start.y = t7l1.WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2277 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2278 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2279 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2280 start.y = t7l3.WindowY0 - 25; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2281 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2282 |
38 | 2283 for(int i = 0; i<4;i++) |
2284 { | |
2285 start.y += 5*6; | |
2286 stop.y = start.y; | |
2287 start.x = CUSTOMBOX_LINE_LEFT - 1; | |
2288 stop.x = start.x - 17; | |
2289 GFX_draw_line(&t7screen, start, stop, 0); | |
2290 // start.x = CUSTOMBOX_LINE_RIGHT + 2; old right too | |
2291 // stop.x = start.x + 17; | |
2292 // GFX_draw_line(&t7screen, start, stop, 0); | |
2293 } | |
2294 // new thick bar design Sept. 2015 | |
2295 start.x = CUSTOMBOX_LINE_LEFT - CUSTOMBOX_OUTSIDE_OFFSET - 3 - 5; | |
2296 stop.x = start.x; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2297 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2298 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2299 start.y = t7l1.WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2300 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2301 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2302 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2303 start.y = t7l3.WindowY0 - 25; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2304 } |
38 | 2305 stop.y = start.y + (uint16_t)(stateUsed->lifeData.ascent_rate_meter_per_min * 6); |
2306 stop.y -= 3; // wegen der Liniendicke von 12 anstelle von 9 | |
2307 if(stop.y >= 470) | |
2308 stop.y = 470; | |
2309 start.y += 7; // starte etwas weiter oben | |
2310 if(stateUsed->lifeData.ascent_rate_meter_per_min <= 10) | |
2311 color = CLUT_EverythingOkayGreen; | |
2312 else | |
2313 if(stateUsed->lifeData.ascent_rate_meter_per_min <= 15) | |
2314 color = CLUT_WarningYellow; | |
2315 else | |
2316 color = CLUT_WarningRed; | |
2317 | |
2318 GFX_draw_thick_line(12,&t7screen, start, stop, color); | |
2319 } | |
2320 //snprintf(TextL2,TEXTSIZE,"\f%.1f m/min",stateUsed->lifeData.ascent_rate_meter_per_min); | |
2321 | |
2322 /* divetime */ | |
2323 if(stateUsed->lifeData.counterSecondsShallowDepth) | |
2324 { | |
2325 snprintf(TextR1,TEXTSIZE,"\f\002\136 %u:%02u",TimeoutTime.Minutes, TimeoutTime.Seconds); | |
2326 GFX_write_string(&FontT42,&t7r1,TextR1,0); | |
2327 } | |
2328 else | |
2329 { | |
2330 snprintf(TextR1,TEXTSIZE,"\032\f\002%c",TXT_Divetime); | |
2331 GFX_write_string(&FontT42,&t7r1,TextR1,0); | |
2332 } | |
2333 | |
2334 if(Divetime.Minutes < 1000) | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
2335 snprintf(TextR1,TEXTSIZE,"\020\002\016%u:%02u",Divetime.Minutes, Divetime.Seconds); |
38 | 2336 else |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
2337 snprintf(TextR1,TEXTSIZE,"\020\002\016%u'",Divetime.Minutes); |
38 | 2338 t7_colorscheme_mod(TextR1); |
2339 GFX_write_string(&FontT105,&t7r1,TextR1,1); | |
2340 | |
2341 /* next deco stop */ | |
2342 if(nextstopDepthMeter) | |
2343 { | |
2344 snprintf(TextR2,TEXTSIZE,"\032\f\002%c",TXT_Decostop); | |
2345 GFX_write_string(&FontT42,&t7r2,TextR2,0); | |
2346 textlength = snprintf(TextR2,TEXTSIZE,"\020\002%u%c%c %u'" | |
2347 , unit_depth_integer(nextstopDepthMeter) | |
2348 , unit_depth_char1_T105() | |
2349 , unit_depth_char2_T105() | |
2350 , (nextstopLengthSeconds+59)/60); | |
2351 t7_colorscheme_mod(TextR2); | |
2352 if(time_elapsed_ms(pDecoinfo->tickstamp, HAL_GetTick()) > MAX_AGE_DECOINFO_MS) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
2353 TextR2[0] = '\031'; |
38 | 2354 if(textlength <= 9) |
2355 GFX_write_string(&FontT105,&t7r2,TextR2,1); | |
567 | 2356 else if(textlength <= 10) |
2357 GFX_write_string(&FontT84Spaced,&t7r2,TextR2,1); | |
38 | 2358 else |
2359 GFX_write_string(&FontT54,&t7r2,TextR2,1); | |
2360 } | |
2361 else if(SafetyStopTime.Total && (depth > timer_Safetystop_GetDepthUpperLimit())) | |
2362 { | |
2363 snprintf(TextR2,TEXTSIZE,"\032\f\002%c%c",TXT_2BYTE,TXT2BYTE_SafetyStop2); | |
2364 GFX_write_string(&FontT42,&t7r2,TextR2,0); | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
2365 snprintf(TextR2,TEXTSIZE,"\020\002\016%u:%02u",SafetyStopTime.Minutes,SafetyStopTime.Seconds); |
38 | 2366 t7_colorscheme_mod(TextR2); |
2367 GFX_write_string(&FontT105,&t7r2,TextR2,1); | |
2368 } | |
2369 | |
2370 /* tts - option 1 | |
2371 * ndl - option 2 | |
2372 * empty - option 3 */ | |
2373 if(pDecoinfo->output_time_to_surface_seconds) | |
2374 { | |
2375 snprintf(TextR3,TEXTSIZE,"\032\f\002%c",TXT_TTS); | |
2376 GFX_write_string(&FontT42,&t7r3,TextR3,0); | |
2377 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:
211
diff
changeset
|
2378 snprintf(TextR3,TEXTSIZE,"\020\002%i'",(pDecoinfo->output_time_to_surface_seconds + 59)/ 60); |
38 | 2379 else |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
2380 snprintf(TextR3,TEXTSIZE,"\020\002%ih",(pDecoinfo->output_time_to_surface_seconds + 59)/ 3600); |
38 | 2381 t7_colorscheme_mod(TextR3); |
2382 if(time_elapsed_ms(pDecoinfo->tickstamp, HAL_GetTick()) > MAX_AGE_DECOINFO_MS) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
2383 TextR2[0] = '\031'; |
38 | 2384 GFX_write_string(&FontT105,&t7r3,TextR3,1); |
2385 } | |
2386 else if(pDecoinfo->output_ndl_seconds) | |
2387 { | |
2388 snprintf(TextR3,TEXTSIZE,"\032\f\002%c",TXT_Nullzeit); | |
2389 GFX_write_string(&FontT42,&t7r3,TextR3,0); | |
2390 if(pDecoinfo->output_ndl_seconds < 1000 * 60) | |
2391 snprintf(TextR3,TEXTSIZE,"\020\002%i'",pDecoinfo->output_ndl_seconds/60); | |
2392 else | |
2393 snprintf(TextR3,TEXTSIZE,"\020\002%ih",pDecoinfo->output_ndl_seconds/3600); | |
2394 t7_colorscheme_mod(TextR3); | |
2395 if(time_elapsed_ms(pDecoinfo->tickstamp, HAL_GetTick()) > MAX_AGE_DECOINFO_MS) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
517
diff
changeset
|
2396 TextR2[0] = '\031'; |
38 | 2397 GFX_write_string(&FontT105,&t7r3,TextR3,1); |
2398 } | |
2399 | |
2400 /* Menu Selection (and gas mix) */ | |
2401 if(get_globalState() == StDMGAS) | |
2402 { | |
2403 textPointer = 0; | |
2404 TextR1[textPointer++] = '\a'; | |
2405 // TextR1[textPointer++] = '\f'; | |
2406 TextR1[textPointer++] = '\001'; | |
2407 TextR1[textPointer++] = ' '; | |
2408 textPointer += tHome_gas_writer(stateUsed->diveSettings.gas[actualBetterGasId()].oxygen_percentage,stateUsed->diveSettings.gas[actualBetterGasId()].helium_percentage,&TextR1[textPointer]); | |
2409 TextR1[textPointer++] = '?'; | |
2410 TextR1[textPointer++] = ' '; | |
2411 TextR1[textPointer++] = 0; | |
2412 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2413 } | |
2414 else if(get_globalState() == StDMSPT) | |
2415 { | |
2416 textPointer = 0; | |
2417 TextR1[textPointer++] = '\a'; | |
2418 TextR1[textPointer++] = '\001'; | |
2419 TextR1[textPointer++] = ' '; | |
656 | 2420 textPointer += snprintf(&TextR1[textPointer],TEXTSIZE,"%f01.2",((float)(stateUsed->diveSettings.setpoint[actualBetterSetpointId()].setpoint_cbar))/100); |
38 | 2421 TextR1[textPointer++] = '?'; |
2422 TextR1[textPointer++] = ' '; | |
2423 TextR1[textPointer++] = 0; | |
2424 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2425 } | |
2426 else if(get_globalState() == StDMENU) | |
2427 { | |
2428 snprintf(TextR1,TEXTSIZE,"\a\001%c%c", TXT_2BYTE, TXT2BYTE_DiveMenuQ); | |
2429 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2430 } | |
2431 else if(get_globalState() == StDSIM1) | |
2432 { | |
2433 snprintf(TextR1,TEXTSIZE,"\a\001%c%c", TXT_2BYTE, TXT2BYTE_DiveQuitQ); | |
2434 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2435 } | |
2436 else if(get_globalState() == StDSIM2) | |
2437 { | |
2438 if(settingsGetPointer()->nonMetricalSystem) | |
2439 snprintf(TextR1,TEXTSIZE,"\a\001" " Sim:-3.33ft "); | |
2440 else | |
2441 snprintf(TextR1,TEXTSIZE,"\a\001" " Sim:-1m "); | |
2442 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2443 | |
2444 snprintf(TextR1,TEXTSIZE,"\a\f %u %c%c" | |
2445 , unit_depth_integer(simulation_get_aim_depth()) | |
2446 , unit_depth_char1() | |
2447 , unit_depth_char2() | |
2448 ); | |
2449 GFX_write_string_color(&FontT42,&t7l1,TextR1,0,CLUT_WarningYellow); | |
2450 | |
2451 } | |
2452 else if(get_globalState() == StDSIM3) | |
2453 { | |
2454 if(settingsGetPointer()->nonMetricalSystem) | |
2455 snprintf(TextR1,TEXTSIZE,"\a\001" " Sim:+3.33ft "); | |
2456 else | |
2457 snprintf(TextR1,TEXTSIZE,"\a\001" " Sim:+1m "); | |
2458 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2459 snprintf(TextR1,TEXTSIZE,"\a\f %u %c%c" | |
2460 , unit_depth_integer(simulation_get_aim_depth()) | |
2461 , unit_depth_char1() | |
2462 , unit_depth_char2() | |
2463 ); | |
2464 GFX_write_string_color(&FontT42,&t7l1,TextR1,0,CLUT_WarningYellow); | |
2465 } | |
2466 else if(get_globalState() == StDSIM4) | |
2467 { | |
2468 snprintf(TextR1,TEXTSIZE,"\a\001" " Sim:+5' "); | |
2469 GFX_write_string_color(&FontT48,&t7c2,TextR1,0,CLUT_WarningYellow); | |
2470 snprintf(TextR1,TEXTSIZE,"\a\f %u %c%c" | |
2471 , unit_depth_integer(simulation_get_aim_depth()) | |
2472 , unit_depth_char1() | |
2473 , unit_depth_char2() | |
2474 ); | |
2475 GFX_write_string_color(&FontT42,&t7l1,TextR1,0,CLUT_WarningYellow); | |
2476 } | |
2477 else | |
2478 { | |
2479 /* gas mix */ | |
2480 oxygen_percentage = 100; | |
2481 oxygen_percentage -= stateUsed->lifeData.actualGas.nitrogen_percentage; | |
2482 oxygen_percentage -= stateUsed->lifeData.actualGas.helium_percentage; | |
2483 | |
2484 textPointer = 0; | |
2485 TextC2[textPointer++] = '\020'; | |
2486 if(stateUsed->warnings.betterGas && warning_count_high_time) | |
2487 { | |
2488 TextC2[textPointer++] = '\a'; | |
2489 } | |
2490 else | |
2491 { | |
2492 float fPpO2limitHigh, fPpO2now; | |
2493 | |
2494 if(actualLeftMaxDepth(stateUsed)) | |
2495 fPpO2limitHigh = settingsGetPointer()->ppO2_max_deco; | |
2496 else | |
2497 fPpO2limitHigh = settingsGetPointer()->ppO2_max_std; | |
2498 | |
2499 fPpO2now = (stateUsed->lifeData.pressure_ambient_bar - WATER_VAPOUR_PRESSURE) * oxygen_percentage; | |
2500 | |
2501 if((fPpO2now > fPpO2limitHigh) || (fPpO2now < (float)(settingsGetPointer()->ppO2_min))) | |
2502 TextC2[textPointer++] = '\025'; | |
2503 } | |
2504 TextC2[textPointer++] = '\002'; | |
2505 textPointer += tHome_gas_writer(oxygen_percentage,stateUsed->lifeData.actualGas.helium_percentage,&TextC2[textPointer]); | |
2506 | |
2507 if(stateUsed->warnings.betterGas && warning_count_high_time) | |
2508 { | |
2509 if(TextC2[0] == '\020') | |
2510 { | |
2511 TextC2[0] = '\004'; // NOP | |
2512 } | |
2513 GFX_write_string_color(&FontT48,&t7c2,TextC2,0,CLUT_WarningYellow); | |
2514 } | |
2515 else | |
2516 { | |
2517 t7_colorscheme_mod(TextC2); | |
2518 GFX_write_string(&FontT48,&t7c2,TextC2,0); // T54 has only numbers | |
2519 } | |
2520 | |
2521 if(stateUsed->diveSettings.ccrOption) | |
2522 { | |
2523 if(stateUsed->diveSettings.diveMode == DIVEMODE_CCR) | |
2524 { | |
2525 snprintf(TextC2,TEXTSIZE,"\020%01.2f",stateUsed->lifeData.ppO2); | |
2526 if(stateUsed->warnings.betterSetpoint && warning_count_high_time && (stateUsed->diveSettings.diveMode == DIVEMODE_CCR)) | |
2527 { | |
2528 TextC2[0] = '\a'; // inverse instead of color \020 | |
2529 GFX_write_string_color(&FontT48,&t7c2,TextC2,0,CLUT_WarningYellow); | |
2530 } | |
2531 else | |
2532 { | |
2533 t7_colorscheme_mod(TextC2); | |
2534 GFX_write_string(&FontT48,&t7c2,TextC2,0); | |
2535 } | |
2536 } | |
2537 } | |
2538 else if(settingsGetPointer()->alwaysShowPPO2) | |
2539 { | |
2540 snprintf(TextC2,TEXTSIZE,"\020%01.2f",stateUsed->lifeData.ppO2); | |
2541 t7_colorscheme_mod(TextC2); | |
2542 GFX_write_string(&FontT48,&t7c2,TextC2,0); | |
2543 } | |
2544 } | |
2545 | |
2546 /* algorithm, ccr, bailout and battery */ | |
2547 /* and permanent warnings (CNS) */ | |
2548 | |
2549 if((stateUsed->warnings.cnsHigh) && display_count_high_time) | |
2550 { | |
2551 TextC2[0] = '\f'; | |
2552 TextC2[1] = TXT_2BYTE; | |
2553 TextC2[2] = TXT2BYTE_WarnCnsHigh; | |
2554 TextC2[3] = 0; | |
2555 GFX_write_string_color(&FontT48,&t7c1,TextC2,0,CLUT_WarningRed); | |
2556 } | |
2557 else | |
2558 { | |
2559 if(stateUsed->warnings.aGf) | |
2560 { | |
2561 GFX_write_string_color(&FontT48,&t7c1,"\f" "aGF",0,CLUT_WarningYellow); | |
2562 } | |
2563 else if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
2564 { | |
2565 GFX_write_string(&FontT48,&t7c1,"\027\f" "GF",0); | |
2566 } | |
2567 else | |
2568 { | |
2569 GFX_write_string(&FontT48,&t7c1,"\027\f" "VPM",0); | |
2570 } | |
2571 | |
2572 if(stateUsed->diveSettings.diveMode == DIVEMODE_CCR) | |
2573 GFX_write_string(&FontT24,&t7c1,"\027\f\002" "CCR",0); | |
2574 // GFX_write_string(&FontT24,&t7c1,"\f\177\177\x80" "CCR",0); | |
2575 else | |
2576 if(stateUsed->diveSettings.ccrOption) | |
2577 GFX_write_string(&FontT24,&t7c1,"\f\002\024" "Bailout",0); | |
2578 // GFX_write_string(&FontT24,&t7c1,"\f\177\177\x80\024" "Bailout",0); | |
2579 } | |
2580 TextC1[0] = '\020'; | |
2581 TextC1[1] = '3'; | |
2582 TextC1[2] = '1'; | |
2583 TextC1[3] = '1'; | |
2584 TextC1[4] = '1'; | |
2585 TextC1[5] = '1'; | |
2586 TextC1[6] = '1'; | |
2587 TextC1[7] = '1'; | |
2588 TextC1[8] = '1'; | |
2589 TextC1[9] = '1'; | |
2590 TextC1[10] = '1'; | |
2591 TextC1[11] = '1'; | |
2592 TextC1[12] = '0'; | |
2593 TextC1[13] = 0; | |
2594 | |
2595 for(int i=1;i<=10;i++) | |
2596 { | |
2597 if( stateUsed->lifeData.battery_charge > (9 * i)) | |
2598 TextC1[i+1] += 1; | |
2599 } | |
2600 | |
2601 if(stateUsed->warnings.lowBattery) | |
2602 { | |
2603 TextC1[0] = '\025'; | |
2604 if(warning_count_high_time) | |
2605 { | |
2606 for(int i=2;i<=11;i++) | |
2607 TextC1[i] = '1'; | |
2608 } | |
2609 else | |
2610 { | |
2611 TextC1[2] = '2'; | |
2612 } | |
2613 GFX_write_string(&Batt24,&t7batt,TextC1,0); | |
2614 | |
2615 if((stateUsed->lifeData.battery_charge > 0) && (stateUsed->lifeData.battery_charge < 140)) | |
2616 { | |
2617 snprintf(TextC1,16,"\004\025\f\002%u%%",(uint8_t)stateUsed->lifeData.battery_charge); | |
2618 if(warning_count_high_time) | |
2619 TextC1[0] = '\a'; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2620 GFX_write_string(&FontT24,&t7voltage,TextC1,0); |
38 | 2621 } |
2622 } | |
2623 else | |
2624 { | |
2625 t7_colorscheme_mod(TextC1); | |
2626 GFX_write_string(&Batt24,&t7batt,TextC1,0); | |
2627 | |
2628 if((stateUsed->lifeData.battery_charge > 0) && (stateUsed->lifeData.battery_charge < 140)) | |
2629 { | |
2630 snprintf(TextC1,16,"\020\f\002%u%%",(uint8_t)stateUsed->lifeData.battery_charge); | |
2631 t7_colorscheme_mod(TextC1); | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2632 GFX_write_string(&FontT24,&t7voltage,TextC1,0); // t7batt |
38 | 2633 } |
2634 } | |
2635 | |
2636 /* customizable left lower corner */ | |
2637 t7_refresh_divemode_userselected_left_lower_corner(); | |
2638 | |
2639 | |
2640 /* customview - option 1 | |
2641 * warning - option 2 */ | |
2642 if(stateUsed->warnings.numWarnings) | |
2643 customview_warnings = t7_test_customview_warnings(); | |
2644 | |
166
255eedad4155
cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents:
149
diff
changeset
|
2645 background.pointer = 0; |
38 | 2646 if(customview_warnings && warning_count_high_time) |
2647 t7_show_customview_warnings(); | |
2648 else | |
2649 t7_refresh_customview(); | |
2650 | |
2651 /* the frame */ | |
2652 draw_frame(1,1, CLUT_DIVE_pluginbox, CLUT_DIVE_FieldSeperatorLines); | |
2653 } | |
2654 | |
2655 void t7_set_field_to_primary(void) | |
2656 { | |
2657 if(stateUsed->mode == MODE_DIVE) | |
2658 selection_custom_field = settingsGetPointer()->tX_userselectedLeftLowerCornerPrimary; | |
2659 } | |
2660 | |
2661 void t7_change_field(void) | |
2662 { | |
2663 selection_custom_field++; | |
2664 | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2665 if((stateUsed->diveSettings.deco_type.ub.standard == VPM_MODE) && (selection_custom_field == LLC_GF)) /* no GF if in VPM mode */ |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2666 { |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2667 selection_custom_field++; |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2668 } |
656 | 2669 if((selection_custom_field == LLC_ScrubberTime) && ((settingsGetPointer()->scrubTimerMode == SCRUB_TIMER_OFF) || (settingsGetPointer()->dive_mode != DIVEMODE_CCR))) |
2670 { | |
2671 selection_custom_field++; | |
2672 } | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2673 |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2674 if(selection_custom_field >= LLC_END) |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2675 { |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2676 selection_custom_field = LLC_Empty; |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2677 } |
38 | 2678 } |
2679 | |
2680 | |
2681 void t7_refresh_divemode_userselected_left_lower_corner(void) | |
2682 { | |
2683 if(!selection_custom_field) | |
2684 return; | |
2685 | |
2686 char headerText[10]; | |
2687 char text[TEXTSIZE]; | |
2688 uint8_t textpointer = 0; | |
2689 _Bool tinyHeaderFont = 0; | |
2690 uint8_t line = 0; | |
457 | 2691 #ifdef ENABLE_BOTTLE_SENSOR |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2692 uint16_t agedColor = 0; |
457 | 2693 #endif |
38 | 2694 |
2695 SDivetime Stopwatch = {0,0,0,0}; | |
2696 float fAverageDepth, fAverageDepthAbsolute; | |
2697 const SDecoinfo * pDecoinfoStandard; | |
2698 const SDecoinfo * pDecoinfoFuture; | |
2699 float fCNS; | |
2700 float temperature; | |
2701 | |
2702 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
2703 { | |
2704 pDecoinfoStandard = &stateUsed->decolistBuehlmann; | |
2705 pDecoinfoFuture = &stateUsed->decolistFutureBuehlmann; | |
2706 } | |
2707 else | |
2708 { | |
2709 pDecoinfoStandard = &stateUsed->decolistVPM; | |
2710 pDecoinfoFuture = &stateUsed->decolistFutureVPM; | |
2711 } | |
2712 | |
2713 Stopwatch.Total = timer_Stopwatch_GetTime(); | |
2714 Stopwatch.Minutes = Stopwatch.Total / 60; | |
2715 Stopwatch.Seconds = Stopwatch.Total - ( Stopwatch.Minutes * 60 ); | |
2716 fAverageDepth = timer_Stopwatch_GetAvarageDepth_Meter(); | |
2717 fAverageDepthAbsolute = stateUsed->lifeData.average_depth_meter; | |
2718 | |
2719 headerText[0] = '\032'; | |
2720 headerText[1] = '\f'; | |
2721 | |
2722 switch(selection_custom_field) | |
2723 { | |
2724 /* Temperature */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2725 case LLC_Temperature: |
38 | 2726 default: |
189
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
187
diff
changeset
|
2727 temperature = unit_temperature_float(stateUsed->lifeData.temperature_celsius); |
38 | 2728 headerText[2] = TXT_Temperature; |
2729 textpointer = snprintf(text,TEXTSIZE,"\020\016%01.1f \140",temperature); // "\016\016%01.1f `" + C or F | |
2730 if(settingsGetPointer()->nonMetricalSystem == 0) | |
2731 text[textpointer++] = 'C'; | |
2732 else | |
2733 text[textpointer++] = 'F'; | |
2734 text[textpointer++] = 0; | |
2735 tinyHeaderFont = 0; | |
2736 break; | |
2737 | |
2738 /* Average Depth */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2739 case LLC_AverageDepth: |
38 | 2740 headerText[2] = TXT_AvgDepth; |
2741 if(settingsGetPointer()->nonMetricalSystem) | |
2742 snprintf(text,TEXTSIZE,"\020%01.0f",unit_depth_float(fAverageDepthAbsolute)); | |
2743 else | |
2744 snprintf(text,TEXTSIZE,"\020%01.1f",fAverageDepthAbsolute); | |
2745 break; | |
2746 | |
2747 /* ppO2 */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2748 case LLC_ppO2: |
38 | 2749 headerText[2] = TXT_ppO2; |
2750 snprintf(text,TEXTSIZE,"\020%01.2f",stateUsed->lifeData.ppO2); | |
2751 break; | |
2752 | |
2753 /* Stop Uhr */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2754 case LLC_Stopwatch: |
38 | 2755 headerText[2] = TXT_Stopwatch; |
2756 if(settingsGetPointer()->nonMetricalSystem) | |
2757 snprintf(text,TEXTSIZE,"\020\016\016%u:%02u\n\r%01.0f",Stopwatch.Minutes, Stopwatch.Seconds,unit_depth_float(fAverageDepth)); | |
2758 else | |
2759 snprintf(text,TEXTSIZE,"\020\016\016%u:%02u\n\r%01.1f",Stopwatch.Minutes, Stopwatch.Seconds,fAverageDepth); | |
2760 tinyHeaderFont = 1; | |
2761 line = 1; | |
2762 break; | |
2763 | |
2764 /* Ceiling */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2765 case LLC_Ceiling: |
38 | 2766 headerText[2] = TXT_Ceiling; |
2767 if((pDecoinfoStandard->output_ceiling_meter > 99.9f) || (settingsGetPointer()->nonMetricalSystem)) | |
2768 snprintf(text,TEXTSIZE,"\020%01.0f",unit_depth_float(pDecoinfoStandard->output_ceiling_meter)); | |
2769 else | |
2770 snprintf(text,TEXTSIZE,"\020%01.1f",pDecoinfoStandard->output_ceiling_meter); | |
2771 break; | |
2772 | |
2773 /* Future TTS */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2774 case LLC_FutureTTS: |
38 | 2775 headerText[2] = TXT_FutureTTS; |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
2776 if (pDecoinfoFuture->output_time_to_surface_seconds < 1000 * 60) |
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
2777 snprintf(text,TEXTSIZE,"\020\016\016@+%u'\n\r" "%i' TTS",settingsGetPointer()->future_TTS, (pDecoinfoFuture->output_time_to_surface_seconds + 59) / 60); |
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
2778 else |
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
2779 snprintf(text,TEXTSIZE,"\020\016\016@+%u'\n\r" "%ih TTS",settingsGetPointer()->future_TTS, (pDecoinfoFuture->output_time_to_surface_seconds + 59) / 3600); |
38 | 2780 tinyHeaderFont = 1; |
2781 line = 1; | |
2782 break; | |
2783 | |
2784 /* CNS */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2785 case LLC_CNS: |
38 | 2786 headerText[2] = TXT_CNS; |
2787 fCNS = stateUsed->lifeData .cns; | |
2788 if(fCNS > 999) | |
2789 fCNS = 999; | |
2790 snprintf(text,TEXTSIZE,"\020%.0f\016\016%%\017",fCNS); | |
2791 break; | |
2792 | |
2793 /* actual GF */ | |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2794 case LLC_GF: |
38 | 2795 headerText[2] = TXT_ActualGradient; |
247
3949781096d4
feature: Relative GF to Saturation renames
Jan Mulder <jlmulder@xs4all.nl>
parents:
225
diff
changeset
|
2796 snprintf(text,TEXTSIZE,"\020%.0f\016\016%%\017",100 * pDecoinfoStandard->super_saturation); |
38 | 2797 break; |
656 | 2798 |
2799 case LLC_ScrubberTime: | |
2800 tinyHeaderFont = 1; | |
2801 headerText[2] = TXT_ScrubTime; | |
2802 if(settingsGetPointer()->scrubTimerMode == SCRUB_TIMER_MINUTES) | |
2803 { | |
2804 snprintf(text,TEXTSIZE,"\020%3u'",settingsGetPointer()->scrubTimerCur); | |
2805 } | |
2806 else | |
2807 { | |
2808 snprintf(text,TEXTSIZE,"\020%u\016\016%%\017", (settingsGetPointer()->scrubTimerCur * 100 / settingsGetPointer()->scrubTimerMax)); | |
2809 } | |
2810 break; | |
2811 | |
446
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2812 #ifdef ENABLE_BOTTLE_SENSOR |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2813 case LCC_BottleBar: |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2814 headerText[2] = TXT_AtemGasVorrat; |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2815 tinyHeaderFont = 1; |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2816 snprintf(text,TEXTSIZE,"%d\016\016\017", stateUsed->lifeData.bottle_bar[stateUsed->lifeData.actualGas.GasIdInSettings]); |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2817 break; |
446
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2818 #endif |
38 | 2819 } |
2820 headerText[3] = 0; | |
2821 | |
2822 if(tinyHeaderFont) | |
2823 GFX_write_string(&FontT24,&t7l3,headerText,0); | |
2824 else | |
2825 GFX_write_string(&FontT42,&t7l3,headerText,0); | |
2826 | |
2827 t7_colorscheme_mod(text); | |
446
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2828 #ifndef ENABLE_BOTTLE_SENSOR |
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2829 GFX_write_string(&FontT105,&t7l3,text,line); |
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2830 #else |
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2831 if(selection_custom_field != LCC_BottleBar) /* a changing color set is used for bar display */ |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2832 { |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2833 GFX_write_string(&FontT105,&t7l3,text,line); |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2834 } |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2835 else |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2836 { |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2837 agedColor = stateUsed->lifeData.bottle_bar_age_MilliSeconds[stateUsed->lifeData.actualGas.GasIdInSettings]; |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2838 if(agedColor > 1200) |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2839 { |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2840 agedColor = CLUT_WarningRed; |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2841 } |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2842 else |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2843 if(agedColor > 600) |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2844 { |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2845 agedColor = CLUT_MenuLineUnselected; |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2846 } |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2847 else |
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2848 if(agedColor > 20) |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2849 { |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2850 agedColor = CLUT_Font031; |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2851 } |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2852 else |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2853 { |
448
f7c66593ab82
Added compile switch to show voltage parallel to charge status percantage
ideenmodellierer
parents:
446
diff
changeset
|
2854 agedColor = CLUT_Font020; |
442
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2855 } |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2856 |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2857 GFX_write_string_color(&FontT105,&t7l3,text,line,agedColor); |
adb18fe92737
Introduced enum for lower left corner view selection:
ideenmodellierer
parents:
432
diff
changeset
|
2858 } |
446
f1257a32f2d4
Introduced configuration header for variant managment:
ideenmodellierer
parents:
442
diff
changeset
|
2859 #endif |
38 | 2860 } |
2861 | |
2862 /* Private functions ---------------------------------------------------------*/ | |
2863 | |
2864 uint8_t t7_customtextPrepare(char * text) | |
2865 { | |
2866 uint8_t i, j, textptr, lineCount; | |
2867 char nextChar; | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2868 uint8_t alignmentChanged = 0; |
38 | 2869 |
2870 textptr = 0; | |
2871 lineCount = 0; | |
2872 | |
2873 text[textptr++] = TXT_MINIMAL; | |
2874 | |
2875 j = 0; | |
2876 i = 0; | |
2877 do | |
2878 { | |
2879 j += i; | |
2880 i = 0; | |
2881 do | |
2882 { | |
2883 nextChar = settingsGetPointer()->customtext[i+j]; | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2884 if((nextChar == '^') && (alignmentChanged == 0)) /* center */ |
537
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2885 { |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2886 text[textptr++] = '\001'; |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2887 alignmentChanged = 1; |
537
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2888 i++; |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2889 }else |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2890 if((nextChar == 180) && (alignmentChanged == 0)) /* '�' => Right */ |
537
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2891 { |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2892 text[textptr++] = '\002'; |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2893 alignmentChanged = 1; |
537
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2894 i++; |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2895 }else |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2896 { |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2897 i++; |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2898 if((!nextChar) || (nextChar =='\n') || (nextChar =='\r')) |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2899 { |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2900 break; |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2901 } |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2902 text[textptr++] = nextChar; |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2903 } |
38 | 2904 } while (i < 12); |
2905 | |
537
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2906 if(i == 12) /* exit by limit => check for blanks at the end of the string */ |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2907 { |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2908 while((textptr - 1 > 0) && (text[textptr - 1] == 32)) |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2909 { |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2910 textptr--; |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2911 } |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2912 } |
0ad0b26ec56b
Added center / right alignment option to custom text display:
Ideenmodellierer
parents:
530
diff
changeset
|
2913 |
38 | 2914 if(!nextChar) |
2915 break; | |
2916 | |
2917 if(lineCount < 3) | |
2918 { | |
2919 text[textptr++] = '\n'; | |
2920 text[textptr++] = '\r'; | |
2921 } | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
537
diff
changeset
|
2922 alignmentChanged = 0; |
38 | 2923 lineCount++; |
2924 for(uint8_t k=0;k<2;k++) | |
2925 { | |
2926 nextChar = settingsGetPointer()->customtext[i+j+k]; | |
2927 if((nextChar =='\n') || (nextChar =='\r')) | |
2928 i++; | |
2929 else | |
2930 break; | |
2931 } | |
2932 | |
2933 } while (lineCount < 4); | |
2934 | |
2935 text[textptr] = 0; | |
2936 return lineCount; | |
2937 } | |
2938 | |
196
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2939 static void t7_colorscheme_mod(char *text) { |
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2940 char *p = text; |
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2941 while (*p) { |
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2942 if ((*p == '\020') && !GFX_is_colorschemeDiveStandard()) |
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2943 *p = '\027'; |
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2944 p++; |
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
2945 } |
38 | 2946 } |
2947 | |
2948 void draw_frame(_Bool PluginBoxHeader, _Bool LinesOnTheSides, uint8_t colorBox, uint8_t colorLinesOnTheSide) | |
2949 { | |
2950 point_t LeftLow, WidthHeight; | |
2951 point_t start, stop; | |
2952 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2953 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2954 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2955 |
38 | 2956 // plugin box |
2957 LeftLow.x = CUSTOMBOX_LINE_LEFT; | |
2958 WidthHeight.x = CUSTOMBOX_LINE_RIGHT - CUSTOMBOX_LINE_LEFT; | |
2959 LeftLow.y = 60; | |
2960 WidthHeight.y = 440 - LeftLow.y; | |
642
c737cf5d9067
Do not show focus indicator in case motion detection is suspended:
Ideenmodellierer
parents:
631
diff
changeset
|
2961 if((viewInFocus() && (!viewDetectionSuspended()))) |
553 | 2962 { |
2963 GFX_draw_box(&t7screen, LeftLow, WidthHeight, 1, CLUT_Font023); | |
2964 } | |
2965 else | |
2966 { | |
2967 GFX_draw_box(&t7screen, LeftLow, WidthHeight, 1, colorBox); | |
2968 } | |
38 | 2969 |
2970 if(PluginBoxHeader) | |
2971 { | |
2972 // plugin box - header | |
2973 start.x = CUSTOMBOX_LINE_LEFT; | |
2974 stop.x = CUSTOMBOX_LINE_RIGHT; | |
2975 stop.y = start.y = 440 - 60; | |
2976 GFX_draw_line(&t7screen, start, stop, colorBox); | |
2977 } | |
2978 | |
2979 if(LinesOnTheSides) | |
2980 { | |
2981 // aufteilung links | |
2982 start.x = 0; | |
2983 stop.x = CUSTOMBOX_LINE_LEFT; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2984 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2985 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2986 stop.y = start.y = t7l1.WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2987 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2988 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2989 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2990 stop.y = start.y = 480 - t7l1.WindowY1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2991 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2992 |
38 | 2993 GFX_draw_line(&t7screen, start, stop, colorLinesOnTheSide); |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2994 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2995 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2996 stop.y = start.y = t7l2.WindowY0 -1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2997 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2998 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
2999 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3000 stop.y = start.y = 480 - t7l2.WindowY1 -1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3001 } |
38 | 3002 GFX_draw_line(&t7screen, start, stop, colorLinesOnTheSide); |
3003 | |
3004 // aufteilung rechts | |
3005 start.x = CUSTOMBOX_LINE_RIGHT; | |
3006 stop.x = 799; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3007 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3008 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3009 stop.y = start.y = t7l1.WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3010 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3011 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3012 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3013 stop.y = start.y = 480 - t7l1.WindowY1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3014 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3015 |
38 | 3016 GFX_draw_line(&t7screen, start, stop, colorLinesOnTheSide); |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3017 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3018 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3019 stop.y = start.y = t7l2.WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3020 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3021 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3022 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3023 stop.y = start.y = 480 - t7l2.WindowY1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3024 } |
38 | 3025 GFX_draw_line(&t7screen, start, stop, colorLinesOnTheSide); |
3026 } | |
3027 } | |
3028 | |
3029 | |
3030 /* Compass like TCOS shellfish | |
3031 * input is 0 to 359 | |
3032 * 2 px / 1 degree | |
3033 * Range is 148 degree with CUSTOMBOX_SPACE_INSIDE = 296 | |
3034 * one side is 74 degree (less than 90 degree) | |
3035 * internal 360 + 180 degree of freedom | |
3036 * use positive values only, shift by 360 below 90 mid position | |
3037 */ | |
3038 | |
3039 | |
3040 point_t t7_compass_circle(uint8_t id, uint16_t degree) | |
3041 { | |
3042 float fCos, fSin; | |
3043 const float piMult = ((2 * 3.14159) / 360); | |
3044 // const int radius[4] = {95,105,115,60}; | |
3045 const int radius[4] = {95,105,115,100}; | |
3046 const point_t offset = {.x = 400, .y = 250}; | |
3047 | |
3048 static point_t r[4][360] = { 0 }; | |
3049 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3050 if(r[0][0].y == 0) /* calc table at first call only */ |
38 | 3051 { |
3052 for(int i=0;i<360;i++) | |
3053 { | |
3054 fCos = cos(i * piMult); | |
3055 fSin = sin(i * piMult); | |
3056 for(int j=0;j<4;j++) | |
3057 { | |
3058 r[j][i].x = offset.x + (int)(fSin * radius[j]); | |
3059 r[j][i].y = offset.y + (int)(fCos * radius[j]); | |
3060 } | |
3061 } | |
3062 } | |
3063 if(id > 3) id = 0; | |
3064 if(degree > 359) degree = 0; | |
3065 return r[id][degree]; | |
3066 } | |
3067 | |
3068 /* range should be 0 to 30 bar if 300 meter with 100% of nitrogen or helium | |
3069 * T24 is 28 high | |
3070 */ | |
3071 void t7_tissues(const SDiveState * pState) | |
3072 { | |
3073 point_t start, change, stop; | |
3074 float value; | |
3075 uint16_t front, cns100pixel; | |
3076 char text[256]; | |
3077 uint8_t textpointer = 0; | |
3078 uint8_t color; | |
3079 | |
3080 float percent_N2; | |
3081 float percent_He; | |
3082 float partial_pressure_N2; | |
3083 float partial_pressure_He; | |
3084 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3085 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3086 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3087 |
38 | 3088 |
3089 /* N2 */ | |
3090 t7cY0free.WindowLineSpacing = 28 + 48 + 14; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3091 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3092 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3093 t7cY0free.WindowY0 = t7cH.WindowY0 - 5 - 2 * t7cY0free.WindowLineSpacing; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3094 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3095 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3096 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3097 t7cY0free.WindowY0 = t7cH.WindowY0 + 15; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3098 t7cY0free.WindowY1 = t7cY0free.WindowY0 + 250; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3099 } |
38 | 3100 t7cY0free.WindowNumberOfTextLines = 3; |
3101 | |
3102 text[textpointer++] = '\030'; | |
3103 text[textpointer++] = TXT_2BYTE; | |
3104 text[textpointer++] = TXT2BYTE_Nitrogen; | |
3105 text[textpointer++] = '\n'; | |
3106 text[textpointer++] = '\r'; | |
3107 text[textpointer++] = TXT_2BYTE; | |
3108 text[textpointer++] = TXT2BYTE_Helium; | |
3109 text[textpointer++] = '\n'; | |
3110 text[textpointer++] = '\r'; | |
3111 text[textpointer++] = TXT_2BYTE; | |
3112 text[textpointer++] = TXT2BYTE_CNS; | |
3113 text[textpointer++] = 0; | |
3114 | |
3115 GFX_write_string(&FontT24, &t7cY0free, text, 1); | |
3116 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3117 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3118 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3119 start.y = t7cH.WindowY0 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3120 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3121 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3122 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3123 start.y = t7cH.WindowY1 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3124 } |
38 | 3125 start.x = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
3126 stop.x = start.x + CUSTOMBOX_SPACE_INSIDE; | |
3127 | |
3128 for(int i=0;i<16;i++) | |
3129 { | |
3130 stop.y = start.y; | |
3131 change.y = start.y; | |
3132 | |
3133 value = pState->lifeData.tissue_nitrogen_bar[i] - 0.7512f; | |
222
9b4b3decd9ba
Bugfix: correct presentation error in tissues custom view
Jan Mulder <jlmulder@xs4all.nl>
parents:
215
diff
changeset
|
3134 value *= 80; |
38 | 3135 |
3136 if(value < 0) | |
3137 front = 0; | |
3138 else | |
3139 if(value > CUSTOMBOX_SPACE_INSIDE) | |
3140 front = CUSTOMBOX_SPACE_INSIDE; | |
3141 else | |
3142 front = (uint16_t)value; | |
3143 | |
3144 change.x = start.x + front; | |
3145 if(change.x != start.x) | |
3146 GFX_draw_thick_line(1,&t7screen, start, change, CLUT_Font030); | |
3147 if(change.x != stop.x) | |
3148 GFX_draw_thick_line(1,&t7screen, change, stop, CLUT_Font031); | |
3149 | |
3150 start.y -= 3; | |
3151 } | |
3152 | |
3153 /* He */ | |
3154 start.y -= 28 + 14; | |
3155 for(int i=0;i<16;i++) | |
3156 { | |
3157 stop.y = start.y; | |
3158 change.y = start.y; | |
3159 | |
3160 value = pState->lifeData.tissue_helium_bar[i]; | |
3161 value *= 80;//20 | |
3162 | |
3163 if(value < 0) | |
3164 front = 0; | |
3165 else if(value > CUSTOMBOX_SPACE_INSIDE) | |
3166 front = CUSTOMBOX_SPACE_INSIDE; | |
3167 else | |
3168 front = (uint16_t)value; | |
3169 | |
3170 change.x = start.x + front; | |
3171 if(change.x != start.x) | |
3172 GFX_draw_thick_line(1,&t7screen, start, change, CLUT_Font030); | |
3173 if(change.x != stop.x) | |
3174 GFX_draw_thick_line(1,&t7screen, change, stop, CLUT_Font031); | |
3175 | |
3176 start.y -= 3; | |
3177 } | |
3178 | |
3179 /* CNS == Oxygen */ | |
3180 start.y -= 28 + 14; | |
3181 | |
3182 cns100pixel = (8 * CUSTOMBOX_SPACE_INSIDE) / 10; | |
3183 value = pState->lifeData.cns; | |
3184 value *= cns100pixel; | |
3185 value /= 100; | |
3186 | |
3187 if(value < 0) | |
3188 front = 0; | |
3189 else if(value > CUSTOMBOX_SPACE_INSIDE) | |
3190 front = CUSTOMBOX_SPACE_INSIDE; | |
3191 else | |
3192 front = (uint16_t)value; | |
3193 | |
3194 if(pState->lifeData.cns < 95) | |
3195 color = CLUT_Font030; | |
3196 else if(pState->lifeData.cns < 100) | |
3197 color = CLUT_WarningYellow; | |
3198 else | |
3199 color = CLUT_WarningRed; | |
3200 | |
3201 for(int i=0;i<16;i++) | |
3202 { | |
3203 stop.y = start.y; | |
3204 change.y = start.y; | |
3205 | |
3206 change.x = start.x + front; | |
3207 if(change.x != start.x) | |
3208 GFX_draw_thick_line(1,&t7screen, start, change, color); | |
3209 if(change.x != stop.x) | |
3210 GFX_draw_thick_line(1,&t7screen, change, stop, CLUT_Font031); | |
3211 | |
3212 start.y -= 3; | |
3213 } | |
3214 | |
3215 /* where is the onload/offload limit for N2 and He */ | |
3216 decom_get_inert_gases(pState->lifeData.pressure_ambient_bar, &pState->lifeData.actualGas, &percent_N2, &percent_He); | |
3217 partial_pressure_N2 = (pState->lifeData.pressure_ambient_bar - WATER_VAPOUR_PRESSURE) * percent_N2; | |
3218 partial_pressure_He = (pState->lifeData.pressure_ambient_bar - WATER_VAPOUR_PRESSURE) * percent_He; | |
3219 | |
3220 // Nitrogen vertical bar | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3221 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3222 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3223 start.y = t7cH.WindowY0 + 1 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3224 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3225 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3226 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3227 start.y = t7cH.WindowY1 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3228 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3229 |
38 | 3230 stop.y = start.y - (3 * 15) - 1; |
222
9b4b3decd9ba
Bugfix: correct presentation error in tissues custom view
Jan Mulder <jlmulder@xs4all.nl>
parents:
215
diff
changeset
|
3231 if((percent_N2 > 0) && (partial_pressure_N2 > 0.7512f)) |
38 | 3232 { |
222
9b4b3decd9ba
Bugfix: correct presentation error in tissues custom view
Jan Mulder <jlmulder@xs4all.nl>
parents:
215
diff
changeset
|
3233 value = partial_pressure_N2 - 0.7512f; |
9b4b3decd9ba
Bugfix: correct presentation error in tissues custom view
Jan Mulder <jlmulder@xs4all.nl>
parents:
215
diff
changeset
|
3234 value *= 80; |
38 | 3235 |
3236 if(value < 0) | |
3237 front = 3; | |
3238 else if(value + 5 > CUSTOMBOX_SPACE_INSIDE) | |
3239 front = CUSTOMBOX_SPACE_INSIDE - 3; | |
3240 else | |
3241 front = (uint16_t)value; | |
3242 } | |
3243 else | |
3244 { | |
3245 front = 1; | |
3246 } | |
3247 start.x = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET + front; | |
3248 stop.x = start.x; | |
3249 GFX_draw_thick_line(2,&t7screen, start, stop, CLUT_EverythingOkayGreen); | |
3250 | |
3251 | |
3252 // Helium vertical bar | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3253 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3254 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3255 start.y = t7cH.WindowY0 + 1 - 5 - 3*16 - 28 - 14; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3256 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3257 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3258 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3259 start.y = t7cH.WindowY1 - 5 - 3*16 - 28 - 14; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3260 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3261 |
38 | 3262 stop.y = start.y - (3 * 15) - 1; |
3263 if((percent_He > 0) && (partial_pressure_He > 0.01f)) // 0.5f | |
3264 { | |
3265 | |
3266 value = partial_pressure_He; | |
222
9b4b3decd9ba
Bugfix: correct presentation error in tissues custom view
Jan Mulder <jlmulder@xs4all.nl>
parents:
215
diff
changeset
|
3267 value *= 80; |
38 | 3268 |
3269 if(value < 0) | |
3270 front = 3; | |
3271 else if(value + 5 > CUSTOMBOX_SPACE_INSIDE) | |
3272 front = CUSTOMBOX_SPACE_INSIDE - 3; | |
3273 else | |
3274 front = (uint16_t)value; | |
3275 } | |
3276 else | |
3277 { | |
3278 front = 1; | |
3279 } | |
3280 | |
3281 start.x = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET + front; | |
3282 stop.x = start.x; | |
3283 GFX_draw_thick_line(2,&t7screen, start, stop, CLUT_EverythingOkayGreen); | |
3284 | |
3285 // Oxygen vertical bar | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3286 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3287 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3288 start.y = t7cH.WindowY0 + 1 - 5 - 6*16 - 2*28 - 2*14; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3289 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3290 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3291 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3292 start.y = t7cH.WindowY1 - 5 - 6*16 - 2*28 - 2*14; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3293 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3294 |
38 | 3295 stop.y = start.y - (3 * 15) - 1; |
3296 | |
3297 start.x = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET + cns100pixel; | |
3298 stop.x = start.x; | |
3299 GFX_draw_thick_line(2, &t7screen, start, stop, CLUT_WarningRed); | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3300 |
38 | 3301 } |
3302 | |
3303 | |
3304 void t7_debug(void) | |
3305 { | |
3306 char text[256+50]; | |
3307 uint8_t textpointer = 0; | |
3308 | |
3309 t7cY0free.WindowLineSpacing = 28 + 48 + 14; | |
3310 t7cY0free.WindowY0 = t7cH.WindowY0 - 5 - 2 * t7cY0free.WindowLineSpacing; | |
3311 t7cY0free.WindowNumberOfTextLines = 3; | |
3312 | |
3313 textpointer += snprintf(&text[textpointer],50,"Ambient [bar]\n\r"); | |
3314 textpointer += snprintf(&text[textpointer],50,"Surface [bar] + salt\n\r"); | |
3315 // textpointer += snprintf(&text[textpointer],50,"Difference [mbar]\n\r"); | |
3316 textpointer += snprintf(&text[textpointer],50,"ShallowCounter [s]\n\r"); | |
3317 GFX_write_string(&FontT24, &t7cY0free, text, 1); | |
3318 | |
3319 t7cY0free.WindowY0 -= 52; | |
3320 // snprintf(text,60,"%0.2f\n\r%0.2f %u%%\n\r%0.0f",stateUsed->lifeData.pressure_ambient_bar, stateUsed->lifeData.pressure_surface_bar, settingsGetPointer()->salinity, 1000 * (stateUsed->lifeData.pressure_ambient_bar-stateUsed->lifeData.pressure_surface_bar)); | |
3321 snprintf(text,60, | |
3322 "%0.2f\n\r" | |
3323 "%0.2f %u%%\n\r" | |
3324 "%u" | |
3325 ,stateUsed->lifeData.pressure_ambient_bar | |
3326 ,stateUsed->lifeData.pressure_surface_bar | |
3327 ,settingsGetPointer()->salinity | |
3328 ,stateUsed->lifeData.counterSecondsShallowDepth); | |
3329 GFX_write_string(&FontT42, &t7cY0free, text, 1); | |
3330 } | |
3331 | |
3332 | |
3333 void t7_SummaryOfLeftCorner(void) | |
3334 { | |
3335 char text[256+60]; | |
3336 uint8_t textpointer = 0; | |
656 | 3337 SSettings* pSettings = settingsGetPointer(); |
38 | 3338 |
3339 const SDecoinfo * pDecoinfoStandard; | |
3340 const SDecoinfo * pDecoinfoFuture; | |
3341 float fCNS; | |
3342 | |
3343 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
3344 { | |
3345 pDecoinfoStandard = &stateUsed->decolistBuehlmann; | |
3346 pDecoinfoFuture = &stateUsed->decolistFutureBuehlmann; | |
3347 } | |
3348 else | |
3349 { | |
3350 pDecoinfoStandard = &stateUsed->decolistVPM; | |
3351 pDecoinfoFuture = &stateUsed->decolistFutureVPM; | |
3352 } | |
3353 | |
3354 fCNS = stateUsed->lifeData .cns; | |
3355 if(fCNS > 999) | |
3356 fCNS = 999; | |
3357 | |
3358 t7cY0free.WindowY0 = t7cC.WindowY0 - 10; | |
656 | 3359 if(pSettings->FlipDisplay) |
315
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3360 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3361 t7cY0free.WindowY1 = 400; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3362 } |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3363 |
38 | 3364 t7cY0free.WindowLineSpacing = 48; |
3365 t7cY0free.WindowNumberOfTextLines = 6; | |
3366 t7cY0free.WindowTab = 420; | |
3367 | |
3368 // header | |
3369 textpointer = 0; | |
3370 text[textpointer++] = '\032'; | |
3371 text[textpointer++] = '\016'; | |
3372 text[textpointer++] = '\016'; | |
3373 text[textpointer++] = TXT_ppO2; | |
3374 text[textpointer++] = '\n'; | |
3375 text[textpointer++] = '\r'; | |
3376 text[textpointer++] = TXT_Ceiling; | |
3377 text[textpointer++] = '\n'; | |
3378 text[textpointer++] = '\r'; | |
3379 text[textpointer++] = TXT_ActualGradient; | |
3380 text[textpointer++] = '\n'; | |
3381 text[textpointer++] = '\r'; | |
3382 text[textpointer++] = TXT_CNS; | |
3383 text[textpointer++] = '\n'; | |
3384 text[textpointer++] = '\r'; | |
3385 text[textpointer++] = TXT_FutureTTS; | |
656 | 3386 text[textpointer++] = '\n'; |
3387 text[textpointer++] = '\r'; | |
3388 if((pSettings->scrubTimerMode != SCRUB_TIMER_OFF) && (pSettings->dive_mode == DIVEMODE_CCR)) | |
3389 { | |
3390 text[textpointer++] = TXT_ScrubTime; | |
3391 | |
3392 } | |
38 | 3393 text[textpointer++] = '\017'; |
656 | 3394 text[textpointer++] = 0; |
3395 if(!pSettings->FlipDisplay) | |
315
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3396 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3397 t7cY0free.WindowX0 += 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3398 t7cY0free.WindowY0 += 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3399 GFX_write_string(&FontT24, &t7cY0free, text, 1); |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3400 t7cY0free.WindowX0 -= 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3401 t7cY0free.WindowY0 -= 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3402 } |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3403 else |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3404 { |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3405 t7cY0free.WindowY1 -= 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3406 t7cY0free.WindowX1 -= 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3407 GFX_write_string(&FontT24, &t7cY0free, text, 1); |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3408 t7cY0free.WindowY1 += 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3409 t7cY0free.WindowX1 += 10; |
7420ed6c3508
Bugfix Overview, O2 values and mV in flip display mode
ideenmodellierer
parents:
247
diff
changeset
|
3410 } |
38 | 3411 textpointer = 0; |
3412 text[textpointer++] = '\t'; | |
3413 textpointer += snprintf(&text[textpointer],10,"\020%01.2f", stateUsed->lifeData.ppO2); | |
3414 text[textpointer++] = '\n'; | |
3415 text[textpointer++] = '\r'; | |
3416 text[textpointer++] = '\t'; | |
3417 if((pDecoinfoStandard->output_ceiling_meter > 99.9f) || (settingsGetPointer()->nonMetricalSystem)) | |
215
4a0ebade04f5
Bugfix, trivial: correctly present avg depth in overview custom
Jan Mulder <jlmulder@xs4all.nl>
parents:
214
diff
changeset
|
3418 textpointer += snprintf(&text[textpointer],10,"\020%01.0f",unit_depth_float(pDecoinfoStandard->output_ceiling_meter)); |
38 | 3419 else |
215
4a0ebade04f5
Bugfix, trivial: correctly present avg depth in overview custom
Jan Mulder <jlmulder@xs4all.nl>
parents:
214
diff
changeset
|
3420 textpointer += snprintf(&text[textpointer],10,"\020%01.1f",pDecoinfoStandard->output_ceiling_meter); |
38 | 3421 text[textpointer++] = '\n'; |
3422 text[textpointer++] = '\r'; | |
3423 text[textpointer++] = '\t'; | |
247
3949781096d4
feature: Relative GF to Saturation renames
Jan Mulder <jlmulder@xs4all.nl>
parents:
225
diff
changeset
|
3424 textpointer += snprintf(&text[textpointer],10,"\020%.0f\016\016%%\017", 100 * pDecoinfoStandard->super_saturation); |
38 | 3425 text[textpointer++] = '\n'; |
3426 text[textpointer++] = '\r'; | |
3427 text[textpointer++] = '\t'; | |
3428 textpointer += snprintf(&text[textpointer],10,"\020%.0f\016\016%%\017",fCNS); | |
3429 text[textpointer++] = '\n'; | |
3430 text[textpointer++] = '\r'; | |
3431 text[textpointer++] = '\t'; | |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
3432 if (pDecoinfoFuture->output_time_to_surface_seconds < 1000 * 60) |
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
3433 textpointer += snprintf(&text[textpointer],10,"\020%i'", (pDecoinfoFuture->output_time_to_surface_seconds + 59) / 60); |
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
3434 else |
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
211
diff
changeset
|
3435 textpointer += snprintf(&text[textpointer],10,"\020%ih", (pDecoinfoFuture->output_time_to_surface_seconds + 59) / 3600); |
656 | 3436 |
3437 if((pSettings->scrubTimerMode != SCRUB_TIMER_OFF) && (pSettings->dive_mode == DIVEMODE_CCR)) | |
3438 { | |
3439 text[textpointer++] = '\n'; | |
3440 text[textpointer++] = '\r'; | |
3441 text[textpointer++] = '\t'; | |
3442 if(settingsGetPointer()->scrubTimerMode == SCRUB_TIMER_MINUTES) | |
3443 { | |
3444 textpointer += snprintf(&text[textpointer],10,"\020%3u'", pSettings->scrubTimerCur); | |
3445 } | |
3446 else | |
3447 { | |
3448 textpointer += snprintf(&text[textpointer],10,"\020%u\016\016%%\017", (pSettings->scrubTimerCur * 100 / pSettings->scrubTimerMax)); | |
3449 } | |
3450 } | |
38 | 3451 text[textpointer++] = 0; |
196
2885628ab3ba
Bugfix, minor: color the overview customview correctly
Jan Mulder <jlmulder@xs4all.nl>
parents:
193
diff
changeset
|
3452 t7_colorscheme_mod(text); |
38 | 3453 GFX_write_string(&FontT42, &t7cY0free, text, 1); |
3454 } | |
3455 | |
3456 void t7_compass(uint16_t ActualHeading, uint16_t UserSetHeading) | |
3457 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3458 uint16_t ActualHeadingRose; |
38 | 3459 uint16_t LeftBorderHeading, LineHeading; |
3460 uint32_t offsetPicture; | |
3461 point_t start, stop, center; | |
3462 static int32_t LastHeading = 0; | |
3463 int32_t newHeading = 0; | |
3464 int32_t diff = 0; | |
3465 int32_t diff2 = 0; | |
3466 | |
3467 int32_t diffAbs = 0; | |
3468 int32_t diffAbs2 = 0; | |
3469 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3470 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3471 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3472 |
38 | 3473 newHeading = ActualHeading; |
3474 | |
3475 diff = newHeading - LastHeading; | |
3476 | |
3477 if(newHeading < LastHeading) | |
3478 diff2 = newHeading + 360 - LastHeading; | |
3479 else | |
3480 diff2 = newHeading - 360 - LastHeading; | |
3481 | |
3482 diffAbs = diff; | |
3483 if(diffAbs < 0) | |
3484 diffAbs *= -1; | |
3485 | |
3486 diffAbs2 = diff2; | |
3487 if(diffAbs2 < 0) | |
3488 diffAbs2 *= -1; | |
3489 | |
3490 | |
3491 if(diffAbs <= diffAbs2) | |
3492 newHeading = LastHeading + (diff / 2); | |
3493 else | |
3494 newHeading = LastHeading + (diff2 / 2); | |
3495 | |
3496 if(newHeading < 0) | |
3497 newHeading += 360; | |
3498 else | |
3499 if(newHeading >= 360) | |
3500 newHeading -= 360; | |
3501 | |
3502 LastHeading = newHeading; | |
3503 ActualHeading = newHeading; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3504 ActualHeadingRose = ActualHeading; |
225
2bb1db22b5f5
cleanup: random set of cleanups
Jan Mulder <jlmulder@xs4all.nl>
parents:
222
diff
changeset
|
3505 |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3506 if(pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3507 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3508 ActualHeadingRose = 360 - ActualHeadingRose; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3509 if (ActualHeadingRose < 170) ActualHeadingRose += 360; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3510 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3511 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3512 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3513 if (ActualHeadingRose < 90) ActualHeadingRose += 360; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3514 ActualHeading = ActualHeadingRose; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3515 } |
38 | 3516 |
3517 // new hw 160822 | |
3518 // if (ActualHeading >= 360 + 90) | |
3519 // ActualHeading = 360; | |
3520 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3521 LeftBorderHeading = 2 * (ActualHeadingRose - (CUSTOMBOX_SPACE_INSIDE/4)); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3522 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3523 if(pSettings->FlipDisplay) /* add offset caused by mirrowed drawing */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3524 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3525 LeftBorderHeading += 2 * 80; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3526 } |
38 | 3527 |
3528 offsetPicture = LeftBorderHeading * t7screenCompass.ImageHeight * 2; | |
3529 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3530 /* the background is used to draw the rotating compass rose */ |
38 | 3531 background.pointer = t7screenCompass.FBStartAdress+offsetPicture; |
3532 background.x0 = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3533 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3534 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3535 background.y0 = 65; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3536 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3537 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3538 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3539 background.y0 = 480 - t7screenCompass.ImageHeight - 65; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3540 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3541 |
38 | 3542 background.width = CUSTOMBOX_SPACE_INSIDE; |
3543 background.height = t7screenCompass.ImageHeight; | |
3544 | |
3545 | |
3546 start.x = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET + (CUSTOMBOX_SPACE_INSIDE/2); | |
3547 stop.x = start.x; | |
3548 start.y = 65; | |
3549 stop.y = start.y + 55; | |
3550 GFX_draw_line(&t7screen, start, stop, CLUT_Font030); | |
3551 | |
3552 | |
3553 center.x = start.x; | |
3554 center.y = 300; | |
3555 | |
3556 stop.x = center.x + 44; | |
3557 stop.y = center.y + 24; | |
3558 | |
3559 | |
3560 while(ActualHeading > 359) ActualHeading -= 360; | |
3561 | |
3562 LineHeading = 360 - ActualHeading; | |
3563 GFX_draw_thick_line(9,&t7screen, t7_compass_circle(0,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font030); // North | |
3564 LineHeading += 90; | |
3565 if(LineHeading > 359) LineHeading -= 360; | |
3566 GFX_draw_thick_line(9,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); // Maintick | |
3567 LineHeading += 90; | |
3568 if(LineHeading > 359) LineHeading -= 360; | |
3569 GFX_draw_thick_line(9,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3570 LineHeading += 90; | |
3571 if(LineHeading > 359) LineHeading -= 360; | |
3572 GFX_draw_thick_line(9,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3573 | |
3574 LineHeading = 360 - ActualHeading; | |
3575 LineHeading += 45; | |
3576 if(LineHeading > 359) LineHeading -= 360; | |
3577 GFX_draw_thick_line(5,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); // Subtick | |
3578 LineHeading += 90; | |
3579 if(LineHeading > 359) LineHeading -= 360; | |
3580 GFX_draw_thick_line(5,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3581 LineHeading += 90; | |
3582 if(LineHeading > 359) LineHeading -= 360; | |
3583 GFX_draw_thick_line(5,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3584 LineHeading += 90; | |
3585 if(LineHeading > 359) LineHeading -= 360; | |
3586 GFX_draw_thick_line(5,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3587 | |
3588 LineHeading = 360 - ActualHeading; | |
3589 LineHeading += 22; | |
3590 if(LineHeading > 359) LineHeading -= 360; | |
3591 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); // Subtick | |
3592 LineHeading += 45; | |
3593 if(LineHeading > 359) LineHeading -= 360; | |
3594 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3595 LineHeading += 45; | |
3596 if(LineHeading > 359) LineHeading -= 360; | |
3597 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3598 LineHeading += 45; | |
3599 if(LineHeading > 359) LineHeading -= 360; | |
3600 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3601 LineHeading += 45; | |
3602 if(LineHeading > 359) LineHeading -= 360; | |
3603 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); // Subtick | |
3604 LineHeading += 45; | |
3605 if(LineHeading > 359) LineHeading -= 360; | |
3606 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3607 LineHeading += 45; | |
3608 if(LineHeading > 359) LineHeading -= 360; | |
3609 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3610 LineHeading += 45; | |
3611 if(LineHeading > 359) LineHeading -= 360; | |
3612 GFX_draw_thick_line(3,&t7screen, t7_compass_circle(1,LineHeading), t7_compass_circle(2,LineHeading), CLUT_Font031); | |
3613 | |
3614 if(UserSetHeading) | |
3615 { | |
3616 LineHeading = UserSetHeading + 360 - ActualHeading; | |
3617 if(LineHeading > 359) LineHeading -= 360; | |
3618 GFX_draw_thick_line(9,&t7screen, t7_compass_circle(3,LineHeading), t7_compass_circle(2,LineHeading), CLUT_CompassUserHeadingTick); | |
3619 | |
3620 // R�ckpeilung, User Back Heading | |
3621 LineHeading = UserSetHeading + 360 + 180 - ActualHeading; | |
3622 if(LineHeading > 359) LineHeading -= 360; | |
3623 if(LineHeading > 359) LineHeading -= 360; | |
3624 GFX_draw_thick_line(9,&t7screen, t7_compass_circle(3,LineHeading), t7_compass_circle(2,LineHeading), CLUT_CompassUserBackHeadingTick); | |
3625 } | |
3626 | |
3627 center.x = start.x; | |
3628 center.y = 250; | |
3629 GFX_draw_circle(&t7screen, center, 116, CLUT_Font030); | |
3630 GFX_draw_circle(&t7screen, center, 118, CLUT_Font030); | |
3631 GFX_draw_circle(&t7screen, center, 117, CLUT_Font030); | |
3632 | |
3633 | |
3634 } | |
3635 | |
3636 | |
3637 /* Font_T42: N is 27 px, S is 20 px, W is 36 px, E is 23 px | |
3638 * max is NW with 63 px | |
3639 * Font_T24: N is 15 px, S is 12 px, W is 20 px, E is 13 px | |
3640 * max is NW with 35 px | |
3641 * NE is 28 px | |
3642 * SW is 32 px | |
3643 * SE is 25 px | |
3644 * space between each is 45 px * 2 | |
3645 * FirstItem List | |
3646 * \177 \177 prepare for size | |
3647 */ | |
3648 void init_t7_compass(void) | |
3649 { | |
3650 t7screenCompass.FBStartAdress = getFrame(21); | |
3651 | |
3652 char text[256]; | |
3653 uint8_t textpointer = 0; | |
3654 | |
3655 text[textpointer++] = '\030'; | |
3656 text[textpointer++] = '\177'; | |
3657 text[textpointer++] = '\177'; | |
3658 text[textpointer++] = 76; // 90 - 14 | |
3659 text[textpointer++] = '\016'; | |
3660 text[textpointer++] = '\016'; | |
3661 text[textpointer++] = 'N'; | |
3662 text[textpointer++] = 'E'; // 96 + 28 = 124 total | |
3663 text[textpointer++] = '\017'; | |
3664 text[textpointer++] = '\177'; | |
3665 text[textpointer++] = '\177'; | |
3666 text[textpointer++] = 64; // 90 - 14 - 12 | |
3667 text[textpointer++] = 'E'; // 124 + 74 + 23 = 221 total | |
3668 text[textpointer++] = '\177'; | |
3669 text[textpointer++] = '\177'; | |
3670 text[textpointer++] = 66; // 90 - 11 - 13 | |
3671 text[textpointer++] = '\016'; | |
3672 text[textpointer++] = '\016'; | |
3673 text[textpointer++] = 'S'; | |
3674 text[textpointer++] = 'E'; | |
3675 text[textpointer++] = '\017'; | |
3676 text[textpointer++] = '\177'; | |
3677 text[textpointer++] = '\177'; | |
3678 text[textpointer++] = 68; // 90 - 12 - 10 | |
3679 text[textpointer++] = 'S'; | |
3680 text[textpointer++] = '\177'; | |
3681 text[textpointer++] = '\177'; | |
3682 text[textpointer++] = 64; // 90 - 10 - 16 | |
3683 text[textpointer++] = '\016'; | |
3684 text[textpointer++] = '\016'; | |
3685 text[textpointer++] = 'S'; | |
3686 text[textpointer++] = 'W'; | |
3687 text[textpointer++] = '\017'; | |
3688 text[textpointer++] = '\177'; | |
3689 text[textpointer++] = '\177'; | |
3690 text[textpointer++] = 56; // 90 - 16 - 18 | |
3691 text[textpointer++] = 'W'; | |
3692 text[textpointer++] = '\177'; | |
3693 text[textpointer++] = '\177'; | |
3694 text[textpointer++] = 54; // 90 - 18 - 18 | |
3695 text[textpointer++] = '\016'; | |
3696 text[textpointer++] = '\016'; | |
3697 text[textpointer++] = 'N'; | |
3698 text[textpointer++] = 'W'; | |
3699 text[textpointer++] = '\017'; | |
3700 text[textpointer++] = '\177'; | |
3701 text[textpointer++] = '\177'; | |
3702 text[textpointer++] = 59; // 90 - 17 - 14 | |
3703 text[textpointer++] = 'N'; | |
3704 text[textpointer++] = '\177'; | |
3705 text[textpointer++] = '\177'; | |
3706 text[textpointer++] = 63; // 90 - 13 - 14 | |
3707 text[textpointer++] = '\016'; | |
3708 text[textpointer++] = '\016'; | |
3709 text[textpointer++] = 'N'; | |
3710 text[textpointer++] = 'E'; | |
3711 text[textpointer++] = '\017'; | |
3712 text[textpointer++] = '\177'; | |
3713 text[textpointer++] = '\177'; | |
3714 text[textpointer++] = 64; // 90 - 14 - 12 | |
3715 text[textpointer++] = 'E'; | |
3716 text[textpointer++] = '\177'; | |
3717 text[textpointer++] = '\177'; | |
3718 text[textpointer++] = 66; // 90 - 11 - 13 | |
3719 text[textpointer++] = '\016'; | |
3720 text[textpointer++] = '\016'; | |
3721 text[textpointer++] = 'S'; | |
3722 text[textpointer++] = 'E'; | |
3723 text[textpointer++] = '\017'; | |
3724 text[textpointer++] = '\177'; | |
3725 text[textpointer++] = '\177'; | |
3726 text[textpointer++] = 68; // 90 - 12 - 10 | |
3727 text[textpointer++] = 'S'; | |
3728 text[textpointer++] = '\177'; | |
3729 text[textpointer++] = '\177'; | |
3730 text[textpointer++] = 64; // 90 - 10 - 16 | |
3731 text[textpointer++] = '\016'; | |
3732 text[textpointer++] = '\016'; | |
3733 text[textpointer++] = 'S'; | |
3734 text[textpointer++] = 'W'; | |
3735 text[textpointer++] = '\017'; | |
3736 text[textpointer++] = 0; // end | |
3737 | |
3738 GFX_write_string(&FontT42,&t7pCompass,text,1); | |
3739 | |
3740 releaseAllFramesExcept(21,t7screenCompass.FBStartAdress); | |
3741 } | |
3742 | |
3743 | |
3744 void t7_miniLiveLogProfile(void) | |
3745 { | |
3746 SWindowGimpStyle wintemp; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3747 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3748 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3749 |
38 | 3750 wintemp.left = CUSTOMBOX_LINE_LEFT + CUSTOMBOX_INSIDE_OFFSET; |
3751 wintemp.right = wintemp.left + CUSTOMBOX_SPACE_INSIDE; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3752 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3753 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3754 wintemp.top = 480 - t7l1.WindowY0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3755 wintemp.bottom = wintemp. top + 200; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3756 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3757 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3758 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3759 wintemp.top = t7l1.WindowY1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3760 wintemp.bottom = wintemp. top + 200; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3761 } |
38 | 3762 |
3763 uint16_t max_depth = (uint16_t)(stateUsed->lifeData.max_depth_meter * 10); | |
3764 | |
3765 GFX_graph_print(&t7screen, &wintemp, 0,1,0, max_depth, getMiniLiveLogbookPointerToData(), getMiniLiveLogbookActualDataLength(), CLUT_Font030, NULL); | |
3766 } | |
3767 | |
3768 void t7_logo_OSTC(void) | |
3769 { | |
3770 SWindowGimpStyle windowGimp; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3771 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3772 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3773 |
38 | 3774 /* OSTC logo */ |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3775 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3776 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3777 windowGimp.left = t7l1.WindowX1 + 32; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3778 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3779 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3780 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3781 windowGimp.left = t7r1.WindowX1 + 32; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3782 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
51
diff
changeset
|
3783 |
38 | 3784 windowGimp.top = 40 + 32; |
3785 GFX_draw_image_monochrome(&t7screen, windowGimp, &ImgOSTC, 0); | |
3786 } |