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