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