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