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