Mercurial > public > hwos_code
annotate src/logbook.asm @ 560:b7eb98dbd800
bump to 2.96beta (REFACTORED VERSION)
author | heinrichsweikamp |
---|---|
date | Wed, 31 Jan 2018 19:39:37 +0100 |
parents | 7c408bfaf2e8 |
children | 0039f057b90f |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
560 | 3 ; File logbook.asm REFACTORED VERSION V2.91 |
0 | 4 ; |
5 ; Logbook | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-11-12 : [mH] moving from OSTC code | |
11 | |
12 ;============================================================================= | |
13 ; Temp data, local to this module, moved to ACCES0 area. | |
14 ; | |
15 | |
275 | 16 #include "hwos.inc" ; Mandatory header |
0 | 17 #include "tft.inc" |
18 #include "external_flash.inc" | |
19 #include "math.inc" | |
20 #include "strings.inc" | |
21 #include "convert.inc" | |
22 #include "tft_outputs.inc" | |
23 #include "eeprom_rs232.inc" | |
24 #include "menu_processor.inc" | |
25 #include "wait.inc" | |
26 #include "start.inc" | |
27 #include "surfmode.inc" | |
28 #include "divemode.inc" | |
29 #include "ghostwriter.inc" | |
30 | |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
50
diff
changeset
|
31 extern do_main_menu2,comm_mode |
0 | 32 |
418 | 33 CBLOCK tmp+0x36 ; Keep space for menu processor. |
0 | 34 count_temperature ; Current sample count for temperature divisor |
35 count_deco ; Current sample count for deco (ceiling) divisor | |
36 logbook_cur_depth:2 ; Current depth, for drawing profile. | |
37 logbook_cur_tp:2 ; Current temperature, for drawing profile. | |
38 logbook_last_tp ; Y of the last item in Tp° curve. | |
39 logbook_min_tp:2 ; Min temperature, for drawing profile. | |
40 logbook_max_tp:2 ; Maximum temperature, for drawing profile. | |
41 logbook_ceiling ; Current ceiling, for drawing profile. | |
418 | 42 logbook_flags ; Flags only used in logbook.asm |
43 logbook_page_number ; Page# in logbook | |
44 logbook_divenumber ; # of dive in list during search | |
45 logbook_divenumber_temp ; # of dive in list during search | |
46 logbook_menupos_temp ; Last position of cursor | |
47 profile_temp:2 ; Temp for profile display | |
48 profile_temp2:2 ; Temp for profile display | |
49 logbook_max_dive_counter ; Counts dive# to zero | |
50 logbook_max_dive_counter_temp; Counts dive# to zero | |
51 logbook_sample_counter:2; Amount of read samples | |
52 divemins_backup ; Backup of divemins+0 | |
53 y_scale:2 ; y-scale (The horizontal lines) | |
54 x_scale:2 ; x-scale (The vertical lines) | |
55 logbook_pixel_x_pos ; x2 position of current pixel in X-direction | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
56 logbook_min_temp_pos ; lowest row in the temp graph |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
57 logbook_max_temp_pos ; lowest row in the temp graph |
418 | 58 ;+.33, reserved to tmp+0x57 |
0 | 59 ENDC |
60 | |
61 #DEFINE return_from_profileview logbook_flags,0 | |
62 #DEFINE all_dives_shown logbook_flags,1 | |
63 #DEFINE logbook_page_not_empty logbook_flags,2 | |
64 #DEFINE end_of_profile logbook_flags,3 | |
169
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
65 #DEFINE keep_cursor_new_page logbook_flags,4 |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
66 #DEFINE log_marker_found logbook_flags,5 |
0 | 67 |
68 | |
69 ; Logbook Coordinates | |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
70 #DEFINE logbook_list_left .10 ; Column of dive# in list |
0 | 71 #DEFINE logbook_row_offset .28 ; Distance between rows of list |
72 #DEFINE logbook_row_number .6 ; Amount of rows in the list | |
73 | |
74 ; Profile display | |
75 #DEFINE profile_height_pixels .157 ; Amount of pixels height for profile display | |
76 #DEFINE profile_width_pixels .156 ; Amount of pixels width for profile display | |
77 #DEFINE profile_left .1 ; Left border | |
78 #DEFINE profile_top .65 ; Top border | |
79 | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
80 ; "Bailout" |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
81 #DEFINE logbook_bailout_column .124 |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
82 #DEFINE logbook_bailout_row .207 |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
83 |
0 | 84 ; Dive number |
85 #DEFINE logbook_divenumer_column .1 | |
86 #DEFINE logbook_divenumer_row .1 | |
87 ; Date and Time | |
88 #DEFINE logbook_date_column .100 | |
89 #DEFINE logbook_date_row .7 | |
90 #DEFINE logbook_time_column .120 | |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
91 #DEFINE logbook_time_row .38 |
0 | 92 ; Max. Depth |
93 #DEFINE log_max_value_row .38 | |
94 #DEFINE log_max_value_column .1 | |
95 ; Divetime | |
96 #DEFINE log_divetime_value_row .38 | |
560 | 97 #DEFINE log_divetime_value_column .60 ; UPDATED, old value was .65 |
0 | 98 ; Gaslist below profile |
99 #DEFINE log_gas_row .225 | |
100 #DEFINE log_gas_column1 .0 | |
101 #DEFINE log_gas_column2 log_gas_column1+(.1*.32) | |
102 #DEFINE log_gas_column3 log_gas_column1+(.2*.32) | |
103 #DEFINE log_gas_column4 log_gas_column1+(.3*.32) | |
104 #DEFINE log_gas_column5 log_gas_column1+(.4*.32) | |
105 | |
106 ; Logbook Page2 | |
107 ; Gaslist | |
108 #DEFINE log2_title_row1 .20 | |
109 #DEFINE log2_title_column .90 | |
110 #DEFINE log2_gas_column log2_title_column | |
111 #DEFINE log2_gas_row1 .36 | |
112 #DEFINE log2_gas_row2 1*.16+log2_gas_row1 | |
113 #DEFINE log2_gas_row3 2*.16+log2_gas_row1 | |
114 #DEFINE log2_gas_row4 3*.16+log2_gas_row1 | |
115 #DEFINE log2_gas_row5 4*.16+log2_gas_row1 | |
116 | |
117 ; Setpoint List | |
118 #DEFINE log2_title_sp_row .130 | |
119 #DEFINE log2_sp_row1 .146 | |
120 #DEFINE log2_sp_row2 1*.16+log2_sp_row1 | |
121 #DEFINE log2_sp_row3 2*.16+log2_sp_row1 | |
122 #DEFINE log2_sp_row4 3*.16+log2_sp_row1 | |
123 #DEFINE log2_sp_row5 4*.16+log2_sp_row1 | |
124 | |
125 ; Details list | |
126 #DEFINE log2_salinity_row .55 | |
127 #DEFINE log2_salinity_column .2 | |
128 #DEFINE log2_cns_row .1*.16+log2_salinity_row | |
129 #DEFINE log2_cns_column log2_salinity_column | |
130 #DEFINE log2_avr_row .2*.16+log2_salinity_row | |
131 #DEFINE log2_avr_column log2_salinity_column | |
132 #DEFINE log2_decomodel2_row .3*.16+log2_salinity_row | |
133 #DEFINE log2_decomodel2_column log2_salinity_column | |
134 #DEFINE log2_decomodel3_row .4*.16+log2_salinity_row | |
135 #DEFINE log2_decomodel3_column log2_salinity_column | |
136 #DEFINE log2_decomodel_row .5*.16+log2_salinity_row | |
137 #DEFINE log2_decomodel_column log2_salinity_column | |
138 #DEFINE log2_firmware_row .6*.16+log2_salinity_row | |
139 #DEFINE log2_firmware_column log2_salinity_column | |
140 #DEFINE log2_battery_row .7*.16+log2_salinity_row | |
141 #DEFINE log2_battery_column log2_salinity_column | |
142 #DEFINE log2_divemode_row .8*.16+log2_salinity_row | |
143 #DEFINE log2_divemode_column log2_salinity_column | |
144 #DEFINE log2_lastdeco_row .9*.16+log2_salinity_row | |
145 #DEFINE log2_lastdeco_column log2_salinity_column | |
146 ; Air pressure | |
147 #DEFINE MBAR_row .10*.16+log2_salinity_row | |
148 #DEFINE MBAR_column log2_salinity_column | |
149 | |
150 | |
151 ; Header coordinates | |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
152 #DEFINE log_profile_version .8 |
0 | 153 #DEFINE log_date .12 |
154 #DEFINE log_time .15 | |
155 #DEFINE log_max_depth .17 | |
156 #DEFINE log_divetime .19 | |
157 #DEFINE log_min_temp .22 | |
158 #DEFINE log_surface_press .24 | |
159 #DEFINE log_desattime .26 | |
160 #DEFINE log_gas1 .28 | |
161 #DEFINE log_gas2 .32 | |
162 #DEFINE log_gas3 .36 | |
163 #DEFINE log_gas4 .40 | |
164 #DEFINE log_gas5 .44 | |
165 #DEFINE log_firmware .48 | |
166 #DEFINE log_battery .50 | |
167 #DEFINE log_samplingrate .52 | |
168 #DEFINE log_cns_start .53 | |
169 #DEFINE log_gf_start .55 | |
170 #DEFINE log_gf_end .56 | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
171 #DEFINE log_batt_info .59 |
0 | 172 #DEFINE log_sp1 .60 |
173 #DEFINE log_sp2 .62 | |
174 #DEFINE log_sp3 .64 | |
175 #DEFINE log_sp4 .66 | |
176 #DEFINE log_sp5 .68 | |
177 #DEFINE log_salinity .70 | |
178 #DEFINE log_cns_end .71 | |
179 #DEFINE log_avr_depth .73 | |
180 #DEFINE log_total_seconds .75 | |
181 #DEFINE log_gf_lo .77 | |
182 #DEFINE log_sat_mult .77 | |
183 #DEFINE log_gf_hi .78 | |
184 #DEFINE log_desat_mult .78 | |
185 #DEFINE log_decomodel .79 | |
186 #DEFINE log_total_dives .80 | |
187 #DEFINE log_divemode .82 | |
188 #DEFINE log_last_stop .243 | |
189 | |
190 LOG_POINT_TO macro address | |
191 movlw address | |
192 movwf ext_flash_address+0 | |
193 endm | |
194 | |
195 ;============================================================================= | |
196 | |
197 logbook code | |
198 | |
199 TFT_logbook_cursor: | |
255 | 200 ; call speed_fastest |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
201 WIN_BOX_BLACK .0, .240-.16, logbook_list_left-.8, logbook_list_left-.1 ;top, bottom, left, right |
0 | 202 |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
203 WIN_LEFT logbook_list_left-.8 |
0 | 204 WIN_FONT FT_SMALL |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
205 ; bcf win_invert ; Reset invert flag |
0 | 206 call TFT_standard_color |
207 | |
208 movff menupos,temp1 | |
209 dcfsnz temp1,F | |
210 movlw d'0' | |
211 dcfsnz temp1,F | |
212 movlw logbook_row_offset | |
213 dcfsnz temp1,F | |
214 movlw .2*logbook_row_offset | |
215 dcfsnz temp1,F | |
216 movlw .3*logbook_row_offset | |
217 dcfsnz temp1,F | |
218 movlw .4*logbook_row_offset | |
219 dcfsnz temp1,F | |
220 movlw .5*logbook_row_offset | |
221 dcfsnz temp1,F | |
222 movlw .6*logbook_row_offset | |
223 dcfsnz temp1,F | |
224 movlw .7*logbook_row_offset | |
225 dcfsnz temp1,F | |
226 movlw .8*logbook_row_offset | |
227 | |
433 | 228 movwf win_top |
0 | 229 STRCPY_PRINT "\xB7" |
230 return | |
231 | |
232 global logbook | |
233 logbook: | |
234 clrf logbook_flags | |
235 clrf CCP1CON ; stop PWM | |
236 bcf PORTC,2 ; Pull PWM out to GND | |
560 | 237 call TFT_boot |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
238 ; call TFT_standard_color |
0 | 239 clrf menupos3 ; Here: used rows on current logbook-page |
240 clrf logbook_page_number ; Here: # of current displayed page | |
241 clrf logbook_divenumber ; # of dive in list during search | |
242 clrf divemins+0 ; Here: used as temp variables | |
243 clrf divemins+1 | |
244 clrf timeout_counter2 ; For timeout | |
245 movlw logbook_row_number | |
246 movwf menupos ; Here: stores current position on display (logbook_row_number-x) | |
247 read_int_eeprom .2 ; Get low-byte of total dives | |
248 movff EEDATA,logbook_max_dive_counter | |
249 | |
250 ;----------------------------------------------------------------------------- | |
251 ; display dive headers backwards from read_int_eeprom .2 = lo-1 | |
252 ; 1st: 200000h-200FFFh -> lo=0 | |
253 ; 2nd: 201000h-201FFFh -> lo=1 | |
254 ; 3rd: 202000h-202FFFh -> lo=2 | |
255 ; 256: 2FF000h-2FFFFFh -> lo=255 (And hi>0...) | |
256 ; Stop when | |
257 ; a) no dive is stored (no valid header found) | |
258 ; b) current dive has no valid header (Number of stored dives < 256) | |
259 ; c) when 255 dives are reached divemins+0 = 255 | |
260 | |
261 logbook2: | |
255 | 262 ; call speed_fastest |
0 | 263 incf divemins+0,F ; increase dive counter |
264 incf divemins+0,W ; = 0x..FF ? | |
265 bz logbook_reset ; Yes: FF --> loop. | |
266 | |
267 ; Set ext_flash_address:3 to TOC entry of this dive | |
268 ; 1st: 200000h-200FFFh -> logbook_max_dive_counter=0 | |
269 ; 2nd: 201000h-201FFFh -> logbook_max_dive_counter=1 | |
270 ; 3rd: 202000h-202FFFh -> logbook_max_dive_counter=2 | |
271 ; 256: 2FF000h-2FFFFFh -> logbook_max_dive_counter=255 (And hi>0...) | |
272 | |
273 decf logbook_max_dive_counter,F ; -1 | |
274 | |
275 clrf ext_flash_address+0 | |
276 clrf ext_flash_address+1 | |
277 movlw 0x20 | |
278 movwf ext_flash_address+2 | |
279 movlw .16 | |
280 mulwf logbook_max_dive_counter; logbook_max_dive_counter*16 = offset to 0x2000 (up:hi) | |
281 movf PRODL,W | |
282 addwf ext_flash_address+1,F | |
283 movf PRODH,W | |
284 addwfc ext_flash_address+2,F | |
285 ; pointer at the first 0xFA of header | |
286 | |
287 call ext_flash_byte_read ; Reads one byte@ext_flash_address:3 into WREG and temp1 | |
288 movwf temp1 | |
289 movlw 0xFA | |
290 cpfseq temp1 ; 0xFA found? | |
291 bra logbook3b ; No, abort | |
292 | |
293 incf logbook_divenumber,F ; new header found, increase logbook_divenumber | |
294 bra logbook4 ; Done with searching, display the header! | |
295 | |
296 logbook3b: | |
297 btfss logbook_page_not_empty ; Was there at least one dive? | |
372 | 298 bra exit_logbook ; Not a single header was found, leave logbook. |
0 | 299 bra logbook_display_loop2 |
300 | |
301 logbook_reset: | |
302 tstfsz logbook_divenumber ; Was there at least one dive? | |
303 bra logbook_reset2 | |
304 bra logbook3b ; No, Nothing to do | |
305 | |
306 logbook_reset2: | |
307 bsf all_dives_shown ; Yes | |
308 bra logbook_display_loop2 ; Continue | |
309 | |
310 logbook4: | |
311 btfsc all_dives_shown ; All dives displayed? | |
312 bra logbook_display_loop2 ; Yes, but display first page again. | |
313 | |
314 call display_listdive ; display short header for list on current list position | |
315 | |
316 movlw logbook_row_number | |
317 cpfseq menupos ; first dive on list (top place)? | |
318 bra logbook_display_loop1 ; no, so skip saving of address | |
319 | |
320 ; store all registered required to rebuilt the current logbookpage after the detail/profile view | |
321 movff logbook_divenumber,logbook_divenumber_temp ; # of dive in list of the current page | |
322 movff divemins+0,divemins_backup ; amount of dives drawn until now | |
323 movff logbook_max_dive_counter,logbook_max_dive_counter_temp ; backup Counter | |
324 | |
325 logbook_display_loop1: | |
326 decfsz menupos,F ; List full? | |
327 bra logbook2 ; no, search another dive for our current logbook page | |
328 | |
329 logbook_display_loop2: | |
330 btfss logbook_page_not_empty ; Was there one dive at all? | |
331 bra logbook ; Yes, so reload the first page | |
332 | |
333 ; TFT_mask... | |
334 | |
335 WIN_LEFT logbook_list_left | |
336 WIN_TOP logbook_row_offset*logbook_row_number | |
337 STRCPY_TEXT_PRINT tNextLog ; "Next Page" | |
338 WIN_LEFT logbook_list_left | |
339 WIN_TOP logbook_row_offset*(logbook_row_number+.1) | |
276
e4cb495aed3d
Increase byte timeout in PC download mode, faster response to "Exit" in main menu
heinrichsweikamp
parents:
275
diff
changeset
|
340 STRCPY_TEXT_PRINT tExit ; "Exit" |
0 | 341 |
342 movlw d'1' ; Set cursor to position 1... | |
343 btfsc return_from_profileview ; .. unless we are returning from a detail/profile view | |
344 movf logbook_menupos_temp,W ; load last cursor position again | |
345 movwf menupos ; and set menupos byte | |
346 bcf return_from_profileview ; Do this only once while the page is loaded again! | |
347 | |
348 bcf logbook_page_not_empty ; Obviously the current page is NOT empty | |
169
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
349 |
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
350 movlw d'7' ; Set cursor to position 7... |
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
351 btfsc keep_cursor_new_page ; ... if we came from the "new Page" line |
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
352 movwf menupos ; and set menupos byte |
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
353 bcf keep_cursor_new_page |
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
354 |
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
355 call TFT_logbook_cursor ; Show the cursor |
0 | 356 |
357 call logbook_preloop_tasks ; Clear some flags and set to Speed_eco | |
169
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
358 call menu_processor_bottom_line ; Show bottom line |
0 | 359 logbook_loop: |
360 btfsc switch_left ; SET/MENU? | |
361 goto next_logbook3 ; adjust cursor or create new page | |
362 btfsc switch_right ; ENTER? | |
363 bra display_profile_or_exit ; view details/profile or exit logbook | |
364 | |
365 rcall log_screendump_and_onesecond ; Check if we need to make a screenshot and check for new second | |
366 btfsc sleepmode ; Timeout? | |
372 | 367 bra exit_logbook ; Yes |
0 | 368 |
369 bra logbook_loop ; Wait for something to do | |
370 | |
371 display_profile_or_exit: | |
372 movlw logbook_row_number+.2 ; exit? | |
373 cpfseq menupos | |
374 bra display_profile_or_exit2 ; No, check for "Next Page" | |
371 | 375 |
372 | 376 exit_logbook: |
436 | 377 ; call TFT_DisplayOff |
378 ; call TFT_boot | |
66
00636132cca6
BUGFIX: Maintain last selected customview in surface mode
heinrichsweikamp
parents:
50
diff
changeset
|
379 goto do_main_menu2 |
0 | 380 |
381 display_profile_or_exit2: | |
382 movlw logbook_row_number+.1 ; Next page? | |
383 cpfseq menupos | |
384 bra display_profile ; No, show details/profile | |
385 goto next_logbook2 ; Next page! | |
386 | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
387 display_profile: |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
388 bcf is_bailout |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
389 bcf gas6_changed ; Clear event flags |
255 | 390 ; call speed_fastest |
0 | 391 movff menupos,logbook_menupos_temp; store current cursor position |
392 bsf return_from_profileview ; tweak search routine to exit after found | |
393 | |
394 movf logbook_page_number,W ; Number of page | |
395 mullw logbook_row_number | |
396 movf PRODL,W | |
397 addwf menupos,W ; page*logbook_row_number+menupos= | |
398 movwf divesecs ; # of dive to show | |
399 | |
400 display_profile2: | |
255 | 401 ; call speed_fastest |
0 | 402 clrf CCP1CON ; stop PWM |
403 bcf PORTC,2 ; Pull PWM out to GND | |
502
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
404 call TFT_boot |
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
405 ;call TFT_ClearScreen ; Clear screen |
0 | 406 ; Set ext_flash pointer to "#divesecs-oldest" dive |
407 ; compute read_int_eeprom .2 - divesecs | |
408 ; Read required header data for profile display | |
409 ; look in header for pointer to begin of diveprofile (Byte 2-4) | |
410 ; Set pointer (ext_flash_log_pointer:3) to this address, start drawing | |
411 | |
412 decf divesecs,F ;-1 | |
413 read_int_eeprom .2 | |
414 movf EEDATA,W | |
415 bcf STATUS,C | |
416 subfwb divesecs,W ; max. dives (low value) - divesecs | |
417 movwf lo ; result | |
418 incf divesecs,F ;+1 | |
419 ; Set ext_flash_address:3 to TOC entry of this dive | |
420 ; 1st: 200000h-200FFFh -> lo=0 | |
421 ; 2nd: 201000h-201FFFh -> lo=1 | |
422 ; 3rd: 202000h-202FFFh -> lo=2 | |
423 ; 256: 2FF000h-2FFFFFh -> lo=255 (And hi>0...) | |
424 clrf ext_flash_address+0 | |
425 clrf ext_flash_address+1 | |
426 movlw 0x20 | |
427 movwf ext_flash_address+2 | |
428 movlw .16 | |
429 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) | |
430 movf PRODL,W | |
431 addwf ext_flash_address+1,F | |
432 movf PRODH,W | |
433 addwfc ext_flash_address+2,F | |
434 ; pointer at the first 0xFA of header | |
435 | |
436 ; Now, show profile | |
437 LOG_POINT_TO log_samplingrate | |
438 call ext_flash_byte_read ; Read sampling rate | |
439 movff temp1,samplesecs_value ; needed later... | |
440 | |
441 LOG_POINT_TO .2 | |
442 call ext_flash_byte_read_plus ; Read start address of profile | |
443 movff temp1,ext_flash_log_pointer+0 | |
444 call ext_flash_byte_read_plus ; Read start address of profile | |
445 movff temp1,ext_flash_log_pointer+1 | |
446 call ext_flash_byte_read_plus ; Read start address of profile | |
447 movff temp1,ext_flash_log_pointer+2 | |
448 | |
449 | |
450 clrf logbook_sample_counter+0 | |
451 clrf logbook_sample_counter+1 ; holds amount of read samples | |
452 | |
453 call TFT_standard_color | |
454 call logbook_show_divenumber ; Show the dive number in medium font | |
455 | |
456 WIN_SMALL logbook_date_column, logbook_date_row | |
457 LOG_POINT_TO log_date | |
458 call ext_flash_byte_read_plus | |
459 movff temp1,convert_value_temp+2 ; Year | |
460 call ext_flash_byte_read_plus | |
461 movff temp1,convert_value_temp+0 ; Month | |
462 call ext_flash_byte_read_plus | |
463 movff temp1,convert_value_temp+1 ; Day | |
464 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 | |
465 STRCAT_PRINT "" | |
466 | |
560 | 467 ; NEW code block ## logbook look and feel |
468 WIN_SMALL log_divetime_value_column,logbook_date_row ; align with surrounding data | |
469 LOG_POINT_TO log_divemode | |
470 call ext_flash_byte_read_plus ; 0=OC, 1=CC, 2=Gauge, 3=Apnea into temp1 | |
471 movff temp1,lo | |
472 call TFT_display_decotype_surface1 ; "strcat_print"s divemode (OC, CC, APNEA or GAUGE) | |
473 | |
0 | 474 WIN_SMALL logbook_time_column, logbook_time_row |
475 call ext_flash_byte_read_plus ; hour | |
476 movff temp1,lo | |
477 call ext_flash_byte_read_plus ; Minutes | |
478 movff temp1,hi | |
560 | 479 output_99x ; hour |
0 | 480 PUTC ':' |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
481 movff hi,lo |
560 | 482 output_99x ; minute |
483 STRCAT_PRINT "" ; Display 1st row of details | |
0 | 484 |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
485 LOG_POINT_TO log_profile_version |
560 | 486 call ext_flash_byte_read_plus ; Profile version |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
487 movlw 0x24 |
560 | 488 cpfslt temp1 ; <0x24? |
489 bra log_skip_extra_icon ; Yes, skip | |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
490 |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
491 WIN_SMALL logbook_time_column-.8, logbook_time_row |
560 | 492 STRCPY_PRINT 0x94 ; "End of dive" icon |
389
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
493 |
9175429bdeba
CHANGE: Logbook now shows end-of-dive date and time for dives made with firmware <1.92 indicated by an icon in the logbook
heinrichsweikamp
parents:
376
diff
changeset
|
494 log_skip_extra_icon: |
0 | 495 LOG_POINT_TO log_max_depth |
560 | 496 call ext_flash_byte_read_plus ; read max depth |
0 | 497 movff temp1,lo |
560 | 498 call ext_flash_byte_read_plus ; read max depth |
0 | 499 movff temp1,hi |
560 | 500 movff lo,xA+0 ; calculate y-scale for profile display |
0 | 501 movff hi,xA+1 |
560 | 502 movlw profile_height_pixels ; pixel height available for profile |
0 | 503 movwf xB+0 |
504 clrf xB+1 | |
560 | 505 call div16x16 ; does xA/xB=xC |
506 movff xC+0,y_scale+0 ; holds LOW byte of y-scale (mbar/pixel!) | |
507 movff xC+1,y_scale+1 ; holds HIGH byte of y-scale (mbar/pixel!) | |
508 infsnz y_scale+0,F ; increase one, because there may be a remainder | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
509 incf y_scale+1,F |
0 | 510 |
417 | 511 movlw LOW ((profile_height_pixels+1)*.1000) |
0 | 512 movwf xC+0 |
513 movlw HIGH (((profile_height_pixels+1)*.1000) & h'FFFF') | |
514 movwf xC+1 | |
515 movlw UPPER ((profile_height_pixels+1)*.1000) | |
516 movwf xC+2 | |
517 clrf xC+3 | |
518 | |
519 movff lo,xB+0 ; Max. Depth in mbar | |
520 movff hi,xB+1 ; Max. Depth in mbar | |
521 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder | |
522 | |
523 movff xC+0,x_scale+0 ; | |
524 movff xC+1,x_scale+1 ; = Pixels/10m (For scale, draw any xx rows a scale-line) | |
525 | |
526 movf x_scale+0,W | |
527 iorwf x_scale+1,W ; x_scale:2 = Null? | |
528 bnz display_profile_offset4 ; No, continue | |
529 incf x_scale+1,F ; Yes, make x_scale+1>1 to make "display_profile2e" working | |
530 | |
531 display_profile_offset4: | |
532 WIN_SMALL log_max_value_column,log_max_value_row | |
533 | |
534 TSTOSS opt_units ; 0=Meters, 1=Feets | |
535 bra display_profile_offset4_metric | |
536 ;display_profile_offset4_imperial: | |
537 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet | |
538 PUTC ' ' | |
25 | 539 bcf leftbind |
225
31088352ee32
BUGFIX: Show dives with >999mins divetime correctly
heinrichsweikamp
parents:
189
diff
changeset
|
540 output_16_3 ; limit to 999 and display only (0-999) |
0 | 541 STRCAT_TEXT_PRINT tFeets |
542 bra display_profile_offset4_common | |
543 | |
544 display_profile_offset4_metric: | |
545 bsf leftbind | |
546 output_16dp d'3' ; max. depth | |
547 STRCAT_TEXT_PRINT tMeters | |
548 | |
549 display_profile_offset4_common: | |
550 call ext_flash_byte_read_plus ; divetime in minutes | |
551 movff temp1,lo | |
552 call ext_flash_byte_read_plus | |
553 movff temp1,hi ; divetime in minutes | |
554 | |
555 movff lo,xA+0 ; calculate x-scale for profile display | |
556 movff hi,xA+1 ; calculate total diveseconds first | |
557 movlw d'60' ; 60seconds are one minute... | |
558 movwf xB+0 | |
559 clrf xB+1 | |
560 call mult16x16 ; result is in xC:2 ! | |
561 | |
562 WIN_SMALL log_divetime_value_column,log_divetime_value_row | |
563 bsf leftbind | |
564 output_16 ; divetime minutes | |
565 movlw LOW d'600' | |
566 movwf xA+0 | |
567 movlw HIGH d'600' | |
568 movwf xA+1 ; A vertical line every 600 seconds | |
569 movff samplesecs_value,xB+0 ; Copy sampling rate | |
570 clrf xB+1 | |
571 call div16x16 ; xA/xB=xC with xA as remainder | |
572 movff xC+0,average_depth_hold_total+0 | |
573 movff xC+1,average_depth_hold_total+1 | |
574 ;average_depth_hold_total:2 holds interval of samples for vertical 10min line | |
575 | |
576 ; Restore divetime in minutes: | |
577 ; get real sample time | |
578 LOG_POINT_TO log_total_seconds | |
579 call ext_flash_byte_read_plus ; Total sample time in seconds | |
580 movff temp1,xC+0 | |
581 call ext_flash_byte_read_plus ; Total sample time in seconds | |
582 movff temp1,xC+1 | |
583 | |
584 PUTC ':' | |
585 LOG_POINT_TO log_divetime+.2 | |
586 call ext_flash_byte_read_plus ; read divetime seconds | |
587 movff temp1,lo | |
588 movff xC+0,xA+0 ; now calculate x-scale value | |
589 movff xC+1,xA+1 | |
590 movlw profile_width_pixels ; pix width available | |
591 movwf xB+0 | |
592 clrf xB+1 | |
593 call div16x16 ; xA/xB=xC | |
594 movff xC+0,xA+0 | |
595 movff xC+1,xA+1 | |
596 movf samplesecs_value,W ; devide through sample interval! | |
597 movwf xB+0 | |
598 clrf xB+1 | |
599 call div16x16 ; xA/xB=xC | |
600 movff xC+0,profile_temp+0 ; store value (use any #xC sample, skip xC-1) into temp registers | |
601 movff xC+1,profile_temp+1 ; store value (use any #xC sample, skip xC-1) into temp registers | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
602 infsnz profile_temp+0,F ; Increase by one, there might be a remainder |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
603 incf profile_temp+1,F |
0 | 604 |
605 bsf leftbind | |
606 output_99x ; divetime seconds | |
607 call TFT_standard_color | |
608 STRCAT_PRINT "" | |
609 | |
610 call ext_flash_byte_read_plus ; Read min. Temperature | |
611 movff temp1,logbook_min_tp+0 | |
612 call ext_flash_byte_read_plus ; Read min. Temperature | |
613 movff temp1,logbook_min_tp+1 | |
614 | |
615 ; Set pointer to Gas 1 Type. | |
616 LOG_POINT_TO log_gas1+.3 | |
617 call ext_flash_byte_read_plus ; read Gas Type | |
618 decfsz temp1,W ; =1 (="First")? | |
619 bra logbook_find_first_gas2 ; No. | |
620 movlw .1 | |
621 movwf temp1 | |
622 bra logbook_find_first_gas_done | |
623 logbook_find_first_gas2: | |
624 ; Set pointer to Gas 2 Type. | |
625 LOG_POINT_TO log_gas2+.3 | |
626 call ext_flash_byte_read_plus ; read Gas Type | |
627 decfsz temp1,W ; =1 (="First")? | |
628 bra logbook_find_first_gas3 ; No. | |
629 movlw .2 | |
630 movwf temp1 | |
631 bra logbook_find_first_gas_done | |
632 logbook_find_first_gas3: | |
633 ; Set pointer to Gas 3 Type. | |
634 LOG_POINT_TO log_gas3+.3 | |
635 call ext_flash_byte_read_plus ; read Gas Type | |
636 decfsz temp1,W ; =1 (="First")? | |
637 bra logbook_find_first_gas4 ; No. | |
638 movlw .3 | |
639 movwf temp1 | |
640 bra logbook_find_first_gas_done | |
641 logbook_find_first_gas4: | |
642 ; Set pointer to Gas 4 Type. | |
643 LOG_POINT_TO log_gas4+.3 | |
644 call ext_flash_byte_read_plus ; read Gas Type | |
645 decfsz temp1,W ; =1 (="First")? | |
646 bra logbook_find_first_gas5 ; No. | |
647 movlw .4 | |
648 movwf temp1 | |
649 bra logbook_find_first_gas_done | |
650 logbook_find_first_gas5: | |
651 movlw .5 ; Must be Gas5 | |
652 movwf temp1 | |
653 logbook_find_first_gas_done: | |
654 movff temp1,average_depth_hold_total+3; keep copy to restore color | |
655 rcall profile_display_color ; Back to normal profile color. | |
656 ; Pointer is now trashed! | |
657 | |
658 ; Point to profile portion of this dive | |
659 movff ext_flash_log_pointer+0,ext_flash_address+0 | |
660 movff ext_flash_log_pointer+1,ext_flash_address+1 | |
661 movff ext_flash_log_pointer+2,ext_flash_address+2 | |
662 | |
663 incf_ext_flash_address_0x20 d'2' ; Skip 0xFA 0xFA | |
664 call ext_flash_byte_read_plus_0x20 ; Read low byte of total dives into temp1 (at the time the dive was made) | |
665 | |
666 ; Load total number of dives (low byte only) | |
667 read_int_eeprom .2 | |
668 incf EEDATA,W ; +1 | |
669 bsf STATUS,C ; Set borrow | |
670 subfwb divesecs,W ; total dives - dive# to show - 1 = low byte of total dives (at the time the dive was made) | |
671 cpfseq temp1 ; # of dive in logbook (Must be equal with low byte in short header) | |
672 bra display_profile_no_profile ; Not equal, no profile for this dive available! | |
673 | |
674 ; Skip rest of short header: 3 Bytes | |
675 ; Skip length of profile data: 3 Bytes | |
676 ; Skip sampling rate in profile section: 1Byte | |
677 ; Skip number of divisors: 1Byte | |
678 incf_ext_flash_address_0x20 d'8' | |
679 | |
680 ; Divisor temp | |
681 incf_ext_flash_address_0x20 d'2' | |
682 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
683 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
684 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
685 movf temp1,W | |
686 movwf divisor_temperature ; Store divisor | |
687 movwf count_temperature ; Store to tp° counter too. | |
688 ; Divisor Deco | |
689 incf_ext_flash_address_0x20 d'2' | |
690 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
691 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
692 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
693 movf temp1,W | |
694 movwf divisor_deco ; Store divisor | |
695 movwf count_deco ; Store as temp, too | |
696 ; Divisor GF | |
697 incf_ext_flash_address_0x20 d'2' | |
698 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
699 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
700 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
701 movff temp1,divisor_gf ; Store divisor | |
702 ; Divisor ppO2 Sensors | |
703 incf_ext_flash_address_0x20 d'2' | |
704 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
705 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
706 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
707 movff temp1,divisor_ppo2_sensors ; Store divisor | |
708 ; Divisor decoplan | |
709 incf_ext_flash_address_0x20 d'2' | |
710 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
711 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
712 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
713 movff temp1,divisor_decoplan ; Store divisor | |
714 ; Divisor CNS | |
715 incf_ext_flash_address_0x20 d'2' | |
716 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
717 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
718 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
719 movff temp1,divisor_cns ; Store divisor | |
720 ; Divisor Tank data | |
721 incf_ext_flash_address_0x20 d'2' | |
722 ; call ext_flash_byte_read_plus_0x20 ; Read information type | |
723 ; call ext_flash_byte_read_plus_0x20 ; Read information Length | |
724 call ext_flash_byte_read_plus_0x20 ; Read information Divisor | |
725 movff temp1,divisor_tank ; Store divisor | |
726 | |
727 ; Start Profile display | |
728 movlw color_deepblue | |
729 call TFT_set_color ; Make this configurable? | |
730 ; Draw a frame around profile area | |
731 WIN_FRAME_COLOR16 profile_top-1,profile_top+profile_height_pixels+1,profile_left-1,profile_left+profile_width_pixels+1 | |
732 | |
733 movlw profile_top | |
432 | 734 movwf win_top |
0 | 735 movlw profile_left |
432 | 736 movwf win_leftx2 ; Left border (0-159) |
0 | 737 movlw d'1' |
432 | 738 movwf win_height |
0 | 739 movlw profile_width_pixels+.1 |
432 | 740 movwf win_width+0 ; Right border (0-159) |
433 | 741 clrf win_width+1 |
432 | 742 bra display_profile2f ; No 0m line |
0 | 743 display_profile2e: |
744 call TFT_box ; Inputs: win_top, win_leftx2, win_height, win_width, win_color1, win_color2 | |
745 display_profile2f: | |
432 | 746 movf win_top,W ; Get row |
0 | 747 addwf x_scale+0,W ; Add line interval distance to win_top |
748 tstfsz x_scale+1 ; >255? | |
749 movlw d'255' ; Yes, make win_top>239 -> Abort here | |
750 btfsc STATUS,C ; A Cary from the addwf above? | |
751 movlw d'255' ; Yes, make win_top>239 -> Abort here | |
432 | 752 movwf win_top ; Result in win_top again |
0 | 753 movlw profile_top+profile_height_pixels+.1 ; Limit |
432 | 754 cpfsgt win_top ; >239? |
0 | 755 bra display_profile2e ; No, draw another line |
756 | |
757 clrf timeout_counter2 ; here: used as counter for depth readings | |
758 movlw profile_width_pixels+profile_left-.1 | |
759 movwf ignore_digits ; here: used as counter for x-pixels | |
760 bcf end_of_profile ; clear flag | |
372 | 761 |
762 movlw profile_left+.1 | |
0 | 763 movwf logbook_pixel_x_pos ; here: used as colum x2 (Start at Colum 5) |
372 | 764 |
765 movlw profile_top+.1 ; Zero-m row | |
0 | 766 movwf apnoe_mins ; here: used for fill between rows |
767 movwf logbook_last_tp ; Initialise for Tp° curve too. | |
768 | |
769 movlw LOW(-.100) ; Initialize max tp° to -10.0 °C. | |
770 movwf logbook_max_tp+0 | |
771 movlw HIGH 0xFFFF & (-.100) | |
772 movwf logbook_max_tp+1 | |
773 | |
774 setf logbook_cur_tp+0 ; Initialize Tp°, before the first recorded point. | |
775 setf logbook_cur_tp+1 | |
776 clrf logbook_last_tp ; Also reset previous Y for Tp° | |
777 clrf logbook_ceiling ; Ceiling = 0, correct value for no ceiling. | |
372 | 778 movlw profile_top+.1 |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
779 movwf logbook_min_temp_pos ; Initialize for displaying the lowest temperature |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
780 movlw profile_top+profile_height_pixels |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
781 movwf logbook_max_temp_pos ; Initialize for displaying the highest temperature |
0 | 782 |
371 | 783 movlw profile_left |
432 | 784 movwf win_leftx2 |
371 | 785 movlw profile_top |
432 | 786 movwf win_top |
371 | 787 movlw profile_height_pixels |
432 | 788 movwf win_height |
371 | 789 movlw LOW (profile_width_pixels*.2) |
432 | 790 movwf win_width+0 |
371 | 791 movlw HIGH (profile_width_pixels*.2) |
432 | 792 movwf win_width+1 |
371 | 793 call TFT_box_write ; open box for d1 |
794 | |
434 | 795 ; INIT_PIXEL_WRITE logbook_pixel_x_pos ; pixel x2 (Also sets standard Color!) |
0 | 796 |
797 profile_display_loop: | |
434 | 798 ; Init pixel write |
560 | 799 movf logbook_pixel_x_pos,W |
800 mullw 2 | |
801 call pixel_write_col320 | |
434 | 802 |
0 | 803 movff profile_temp+0,profile_temp2+0 |
804 movff profile_temp+1,profile_temp2+1 ; 16Bit x-scaler | |
805 incf profile_temp2+1,F | |
806 tstfsz profile_temp2+0 ; Must not be Zero | |
807 bra profile_display_loop2 ; Not Zero! | |
808 incf profile_temp2+0,F ; Zero, Increase! | |
809 | |
810 profile_display_loop2: | |
811 rcall profile_view_get_depth ; reads depth, temp and profile data | |
812 | |
813 btfsc end_of_profile ; end-of profile reached? | |
814 bra profile_display_loop_done ; Yes, skip all remaining pixels | |
815 | |
816 | |
817 ;---- Draw Ceiling curve, if any --------------------------------------------- | |
818 movf divisor_deco,W | |
819 bz profile_display_skip_deco | |
820 | |
821 movf logbook_ceiling,W ; Any deco ceiling ? | |
822 bz profile_display_skip_deco | |
823 | |
824 mullw .100 ; Yes: convert to mbar | |
825 movff PRODL,sub_a+0 | |
826 movff PRODH,sub_a+1 | |
827 movff logbook_cur_depth+0,sub_b+0 ; Compare with UNSIGNED current depth (16bits) | |
828 movff logbook_cur_depth+1,sub_b+1 | |
829 call subU16 ; set (or not) neg_flag | |
830 | |
831 movlw color_dark_green ; Dark green if Ok, | |
832 btfss neg_flag | |
833 movlw color_dark_red ; Or dark red if ceiling overflown. | |
834 call TFT_set_color | |
835 | |
836 movff PRODL,xA+0 | |
837 movff PRODH,xA+1 | |
838 movff y_scale+0,xB+0 ; devide pressure in mbar/quant for row offsett | |
839 movff y_scale+1,xB+1 | |
840 call div16x16 ; xA/xB=xC | |
841 | |
372 | 842 movlw profile_top+.1 ; Starts right after the top line. |
432 | 843 movwf win_top |
0 | 844 movff logbook_pixel_x_pos,win_leftx2 ; Left border (0-159) |
845 movff xC+0,win_height | |
846 call half_vertical_line ; Inputs: win_top, win_leftx2, win_height, win_color1, win_color2 | |
847 | |
848 profile_display_skip_deco: | |
849 ;---- Draw Tp° curve, if any --------------------------------------------- | |
850 movf divisor_temperature,W | |
851 bz profile_display_skip_temp | |
852 | |
853 movf logbook_cur_tp+0,W ; Did we had already a valid Tp°C record ? | |
854 andwf logbook_cur_tp+1,W | |
855 incf WREG | |
856 bz profile_display_skip_temp ; No: just skip drawing. | |
857 | |
858 movlw LOW(((profile_height_pixels-.10)*.256)/.370) ; fixed tp° scale: (-2 .. +35°C * scale256 )/153pix | |
859 movwf xB+0 | |
860 movlw HIGH(((profile_height_pixels-.10)*.256)/.370) | |
861 movwf xB+1 | |
862 | |
863 movf logbook_cur_tp+0,W ; Current Tp° - (-2.0°C) == Tp° + 20. | |
864 addlw LOW(.20) ; Low byte. | |
865 movwf xA+0 | |
866 movf logbook_cur_tp+1,W | |
867 btfsc STATUS,C ; Propagate carry, if any | |
868 incf WREG | |
869 movwf xA+1 | |
870 call mult16x16 ; xA*xB=xC | |
871 | |
872 ; scale: divide by 256, ie. take just high byte. | |
873 movf xC+1,W | |
874 sublw profile_top+profile_height_pixels-.10 ; Upside-down: Y = .75 + (.153 - result) | |
875 movwf xC+0 | |
876 | |
877 ; Check limits | |
372 | 878 movlw profile_top+.1 |
0 | 879 movwf xC+1 |
880 cpfsgt xC+0 | |
881 movff xC+1,xC+0 | |
882 | |
883 movlw color_orange | |
884 call TFT_set_color | |
885 | |
886 movf logbook_last_tp,W ; do we have a valid previous value ? | |
887 bz profile_display_temp_1 ; No: skip the vertical line. | |
888 movwf xC+1 | |
889 call profile_display_fill ; In this column between this row (xC+0) and the last row (xC+1) | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
890 profile_display_temp_1: |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
891 movf xC+0,W ; current row |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
892 cpfsgt logbook_min_temp_pos ; check limit |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
893 movwf logbook_min_temp_pos ; lowest row in the temp graph |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
894 cpfslt logbook_max_temp_pos ; check limit |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
895 movwf logbook_max_temp_pos ; lowest row in the temp graph |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
896 |
0 | 897 movff xC+0,logbook_last_tp |
898 PIXEL_WRITE logbook_pixel_x_pos,xC+0 ; Set col(0..159) x row (0..239), put a current color pixel. | |
899 | |
900 profile_display_skip_temp: | |
901 ;---- Draw depth curve --------------------------------------------------- | |
902 movff y_scale+0,xB+0 ; devide pressure in mbar/quant for row offsett | |
903 movff y_scale+1,xB+1 | |
904 movff logbook_cur_depth+0,xA+0 | |
905 movff logbook_cur_depth+1,xA+1 | |
906 call div16x16 ; xA/xB=xC | |
372 | 907 movlw profile_top+.1 |
0 | 908 addwf xC+0,F ; add 75 pixel offset to result |
909 | |
910 btfsc STATUS,C ; Ignore potential profile errors | |
911 movff apnoe_mins,xC+0 | |
912 | |
913 rcall profile_display_color ; Back to normal profile color. | |
914 | |
915 movff apnoe_mins,xC+1 | |
916 call profile_display_fill ; In this column between this row (xC+0) and the last row (xC+1) | |
917 movff xC+0,apnoe_mins ; Store last row for fill routine | |
918 | |
372 | 919 PIXEL_WRITE logbook_pixel_x_pos,xC+0 ; Set col(0..159) x row (0..239), put a std color pixel. |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
920 incf logbook_pixel_x_pos,F ; Next column |
0 | 921 |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
922 ;---- Draw Marker square , if any ---------------------------------------- |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
923 btfss log_marker_found ; Any marker to draw? |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
924 bra profile_display_skip_marker ; No |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
925 |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
926 ; tiny "m" |
430 | 927 incf apnoe_mins,W ; increase row (Y) |
432 | 928 movwf win_top |
492 | 929 ; limit win_top to 220 |
560 | 930 movlw .220 |
931 cpfslt win_top | |
932 movwf win_top | |
430 | 933 decf logbook_pixel_x_pos,W ; decrease column (X) |
432 | 934 movwf win_leftx2 |
492 | 935 ; limit win_leftx2 to 151 |
560 | 936 movlw .151 |
937 cpfslt win_leftx2 | |
938 movwf win_leftx2 | |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
939 |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
940 movlw color_orange |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
941 call TFT_set_color |
492 | 942 WIN_FONT FT_TINY |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
943 lfsr FSR2,buffer |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
944 STRCPY_PRINT "m" |
492 | 945 bcf log_marker_found ; Clear flag |
495
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
946 |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
947 movlw profile_left |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
948 movwf win_leftx2 |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
949 movlw profile_top |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
950 movwf win_top |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
951 movlw profile_height_pixels |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
952 movwf win_height |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
953 movlw LOW (profile_width_pixels*.2) |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
954 movwf win_width+0 |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
955 movlw HIGH (profile_width_pixels*.2) |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
956 movwf win_width+1 |
2b1239e6ea85
Bugfix: More then one marker shown deleted profile
heinrichsweikamp
parents:
492
diff
changeset
|
957 call TFT_box_write ; re-open box for d1 |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
958 |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
959 profile_display_skip_marker: |
0 | 960 ;---- Draw CNS curve, if any --------------------------------------------- |
961 movf divisor_cns,W | |
962 bz profile_display_skip_cns | |
963 ; | |
964 ; TODO HERE | |
965 ; | |
966 profile_display_skip_cns: | |
967 | |
968 ;---- Draw GF curve, if any ---------------------------------------------- | |
969 movf divisor_gf,W | |
970 bz profile_display_skip_gf | |
971 ; | |
972 ; TODO HERE | |
973 ; | |
974 profile_display_skip_gf: | |
975 | |
976 ;---- All curves done. | |
977 | |
978 profile_display_skip_loop1: ; skips readings! | |
979 dcfsnz profile_temp2+0,F | |
980 bra profile_display_loop3 ; check 16bit.... | |
981 | |
982 rcall profile_view_get_depth ; reads depth, temp and profile data | |
168
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
983 |
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
984 btfsc end_of_profile ; end-of profile reached? |
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
985 bra profile_display_loop_done ; Yes, skip all remaining pixels |
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
986 |
0 | 987 bra profile_display_skip_loop1 |
988 | |
989 profile_display_loop3: | |
990 decfsz profile_temp2+1,F ; 16 bit x-scaler test | |
991 bra profile_display_skip_loop1 ; skips readings! | |
992 | |
993 decfsz ignore_digits,F ; counts drawn x-pixels to zero | |
994 bra profile_display_loop ; Not ready yet | |
995 ; Done. | |
996 | |
997 display_profile_no_profile: ; No profile available for this dive! | |
998 | |
999 profile_display_loop_done: | |
560 | 1000 btfss is_bailout ; Bailout during the dive? |
1001 bra profile_display_loop_done_nobail ; No | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1002 ; Yes, show "Bailout" |
560 | 1003 movlw color_pink |
1004 call TFT_set_color | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1005 WIN_TINY logbook_bailout_column,logbook_bailout_row |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1006 STRCPY_TEXT_PRINT tDiveBailout ; Bailout |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1007 profile_display_loop_done_nobail: |
560 | 1008 btfss gas6_changed ; Gas6 |
1009 bra profile_display_loop_done_nogas6 ; No | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1010 ; Yes, show "Gas 6!" |
560 | 1011 movlw color_pink |
1012 call TFT_set_color | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1013 WIN_TINY logbook_bailout_column,logbook_bailout_row-.15 |
560 | 1014 STRCPY_TEXT tGas ; Gas |
1015 STRCAT_PRINT " 6!" | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1016 |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1017 profile_display_loop_done_nogas6: |
560 | 1018 decf divesecs,F ;-1 |
0 | 1019 read_int_eeprom .2 |
560 | 1020 movf EEDATA,W |
1021 bcf STATUS,C | |
1022 subfwb divesecs,W ; max. dives (low value) - divesecs | |
1023 movwf lo ; result | |
1024 incf divesecs,F ;+1 | |
0 | 1025 ; Set ext_flash_address:3 to TOC entry of this dive |
1026 ; 1st: 200000h-200FFFh -> lo=0 | |
1027 ; 2nd: 201000h-201FFFh -> lo=1 | |
1028 ; 3rd: 202000h-202FFFh -> lo=2 | |
1029 ; 256: 2FF000h-2FFFFFh -> lo=255 (And hi>0...) | |
1030 clrf ext_flash_address+0 | |
1031 clrf ext_flash_address+1 | |
1032 movlw 0x20 | |
1033 movwf ext_flash_address+2 | |
1034 movlw .16 | |
1035 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) | |
1036 movf PRODL,W | |
1037 addwf ext_flash_address+1,F | |
1038 movf PRODH,W | |
1039 addwfc ext_flash_address+2,F | |
1040 ; pointer at the first 0xFA of header | |
1041 | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1042 movff logbook_min_temp_pos,win_top ; Y position at lowest temperature |
432 | 1043 movff logbook_pixel_x_pos,win_leftx2 |
0 | 1044 movlw .130 |
432 | 1045 cpfslt win_leftx2 ; limit left border to 130 |
1046 movwf win_leftx2 | |
0 | 1047 WIN_FONT FT_TINY |
1048 movlw color_orange ; Use same color as tp° curve | |
1049 call TFT_set_color | |
1050 | |
1051 movff logbook_min_tp+0,lo | |
1052 movff logbook_min_tp+1,hi | |
1053 lfsr FSR2,buffer | |
1054 | |
1055 TSTOSS opt_units ; 0=°C, 1=°F | |
1056 bra logbook_show_temp_metric | |
1057 ;logbook_show_temp_imperial: | |
1058 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required | |
1059 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit | |
1060 lfsr FSR2,buffer ; Overwrite "-" | |
1061 bsf ignore_digit5 ; Full degrees only | |
1062 output_16 | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1063 STRCAT_TEXT_PRINT tLogTunitF |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1064 ; Now, the max. temperature |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1065 movlw .15 |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1066 subwf logbook_max_temp_pos,W |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1067 movff WREG,win_top ; Y position at max temperature |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1068 movff logbook_max_tp+0,lo |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1069 movff logbook_max_tp+1,hi |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1070 lfsr FSR2,buffer |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1071 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1072 call convert_celsius_to_fahrenheit ; convert value in lo:hi from celsius to fahrenheit |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1073 output_16 |
0 | 1074 bcf ignore_digit5 |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1075 STRCAT_TEXT_PRINT tLogTunitF |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1076 |
0 | 1077 bra logbook_show_temp_common |
1078 | |
1079 logbook_show_temp_metric: | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1080 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1081 movlw d'3' |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1082 movwf ignore_digits |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1083 bsf leftbind |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1084 output_16dp d'2' ; temperature |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1085 STRCAT_TEXT_PRINT tLogTunitC |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1086 ; Now, the max. temperature |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1087 movlw .15 |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1088 subwf logbook_max_temp_pos,W |
432 | 1089 movwf win_top ; Y position at max temperature |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1090 movff logbook_max_tp+0,lo |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1091 movff logbook_max_tp+1,hi |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1092 lfsr FSR2,buffer |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1093 call TFT_convert_signed_16bit ; converts lo:hi into signed-short and adds '-' to POSTINC2 if required |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1094 movlw d'3' |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1095 movwf ignore_digits |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1096 bsf leftbind |
0 | 1097 output_16dp d'2' ; temperature |
1098 STRCAT_TEXT_PRINT tLogTunitC | |
1099 | |
1100 logbook_show_temp_common: | |
50 | 1101 bcf leftbind |
1102 call TFT_standard_color | |
0 | 1103 |
1104 ; Get pointer to Gaslist | |
1105 LOG_POINT_TO log_gas1 | |
1106 | |
1107 movlw color_white ; Color for Gas 1 | |
1108 call TFT_set_color ; Set Color... | |
1109 bsf leftbind | |
1110 WIN_TINY log_gas_column1, log_gas_row | |
1111 rcall log_show_gas_common | |
1112 | |
1113 movlw color_green ; Color for Gas 2 | |
1114 call TFT_set_color ; Set Color... | |
1115 WIN_TINY log_gas_column2, log_gas_row | |
1116 rcall log_show_gas_common | |
1117 | |
1118 movlw color_red ; Color for Gas 3 | |
1119 call TFT_set_color ; Set Color... | |
1120 WIN_TINY log_gas_column3, log_gas_row | |
1121 rcall log_show_gas_common | |
1122 | |
1123 movlw color_yellow ; Color for Gas 4 | |
1124 call TFT_set_color ; Set Color... | |
1125 WIN_TINY log_gas_column4, log_gas_row | |
1126 rcall log_show_gas_common | |
1127 | |
1128 movlw color_cyan ; Color for Gas 5 | |
1129 call TFT_set_color ; Set Color... | |
1130 WIN_TINY log_gas_column5, log_gas_row | |
1131 rcall log_show_gas_common | |
1132 | |
1133 rcall logbook_preloop_tasks ; Clear some flags and set to Speed_eco | |
1134 display_profile_loop: | |
560 | 1135 ; REPLACE ## logbook look and feel |
1136 ; btfsc switch_left ; SET/MENU? | |
1137 ; BY | |
1138 btfsc switch_right | |
0 | 1139 bra logbook_page2 ; Show more information |
560 | 1140 ; REPLACE ## logbook look and feel |
1141 ; btfsc switch_right ; ENTER? | |
1142 ; BY | |
1143 btfsc switch_left | |
0 | 1144 bra exit_profileview ; back to list |
1145 | |
1146 rcall log_screendump_and_onesecond ; Check if we need to make a screenshot and check for new second | |
1147 btfsc sleepmode ; Timeout? | |
1148 bra exit_profileview ; back to list | |
1149 bra display_profile_loop ; wait for something to do | |
1150 | |
1151 global log_screendump_and_onesecond | |
560 | 1152 log_screendump_and_onesecond: ; Check if we need to make a screenshot and check for new second |
0 | 1153 btfsc onesecupdate |
1154 call timeout_surfmode ; Timeout | |
1155 btfsc onesecupdate | |
1156 call set_dive_modes ; Check, if divemode must be entered | |
1157 bcf onesecupdate ; one second update | |
1158 btfsc divemode | |
1159 goto restart ; Enter Divemode if required | |
1160 | |
1161 btfsc enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
1162 bra log_screendump_and_onesecond2 | |
1163 btfsc vusb_in ; USB plugged in? | |
113 | 1164 call comm_mode ; Start COMM mode |
0 | 1165 return |
1166 log_screendump_and_onesecond2: | |
1167 btfss vusb_in ; USB (still) plugged in? | |
1168 bcf enable_screen_dumps ; No, clear flag | |
1169 call rs232_get_byte | |
1170 btfsc rs232_recieve_overflow | |
1171 return | |
1172 movlw "l" | |
1173 cpfseq RCREG1 | |
1174 return | |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1175 goto TFT_dump_screen ; Dump the screen contents and return |
0 | 1176 |
1177 log_show_gas_common: | |
1178 extern customview_show_mix | |
1179 lfsr FSR2,buffer | |
1180 call ext_flash_byte_read_plus ; Gas2 current O2 | |
1181 movff temp1,lo | |
1182 call ext_flash_byte_read_plus ; Gas2 current He | |
1183 movff temp1,hi | |
1184 call customview_show_mix ; Put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 | |
1185 STRCAT_PRINT "" | |
1186 call ext_flash_byte_read_plus ; Gas2 change depth | |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1187 goto ext_flash_byte_read_plus ; Gas2 Type and return |
0 | 1188 |
1189 ;============================================================================= | |
1190 profile_display_color: | |
1191 movff average_depth_hold_total+3,active_gas ; Restore gas color. | |
1192 movlw color_white ; Default color | |
1193 dcfsnz active_gas,F | |
1194 movlw color_white ; Color for Gas 1 | |
1195 dcfsnz active_gas,F | |
1196 movlw color_green ; Color for Gas 2 | |
1197 dcfsnz active_gas,F | |
1198 movlw color_red ; Color for Gas 3 | |
1199 dcfsnz active_gas,F | |
1200 movlw color_yellow ; Color for Gas 4 | |
1201 dcfsnz active_gas,F | |
1202 movlw color_cyan ; Color for Gas 5 | |
1203 dcfsnz active_gas,F | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1204 movlw color_pink ; Color for Gas 6 |
0 | 1205 goto TFT_set_color ; Set Color... |
1206 | |
1207 ;============================================================================= | |
1208 ; Draw a vertical line between xC+1 and xC+0, at current X position. | |
1209 ; | |
1210 ; Note: should keep xC+0 | |
1211 ; Note: ascending or descending ! | |
1212 ; | |
1213 profile_display_fill: | |
1214 ; First, check if xC+0>apnoe_mins or xC+0<aponoe_mins | |
1215 movf xC+0,W | |
1216 cpfseq xC+1 ; xC+0 = apone_mins? | |
1217 bra profile_display_fill2 ; No! | |
1218 return | |
1219 | |
1220 profile_display_fill2: | |
1221 ; Make sure to init X position. | |
1222 movf logbook_pixel_x_pos,W | |
1223 mullw 2 | |
1224 decf PRODL,F | |
1225 movlw 0 | |
1226 subwfb PRODH,F | |
1227 call pixel_write_col320 | |
1228 | |
1229 movf xC+0,W | |
1230 cpfsgt xC+1 ; apnoe_mins>xC+0? | |
1231 bra profile_display_fill_up ; Yes! | |
1232 | |
1233 profile_display_fill_down2: ; Loop | |
560 | 1234 decf xC+1,F |
0 | 1235 |
1236 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239) | |
1237 | |
560 | 1238 movf xC+0,W |
1239 cpfseq xC+1 ; Loop until xC+1=xC+0 | |
1240 bra profile_display_fill_down2 | |
0 | 1241 return ; apnoe_mins and xC+0 are untouched |
1242 | |
1243 profile_display_fill_up: ; Fill upwards from xC+0 to apone_mins! | |
560 | 1244 incf xC+1,F |
0 | 1245 |
1246 HALF_PIXEL_WRITE xC+1 ; Updates just row (0..239) | |
1247 | |
560 | 1248 movf xC+0,W |
1249 cpfseq xC+1 ; Loop until xC+1=apnoe_mins | |
1250 bra profile_display_fill_up | |
0 | 1251 return ; apnoe_mins and xC+0 are untouched |
1252 | |
1253 ;============================================================================= | |
1254 | |
1255 | |
1256 profile_view_get_depth: | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
1257 infsnz logbook_sample_counter+0,F |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
1258 incf logbook_sample_counter+1,F ; Count read pixels |
0 | 1259 |
1260 movf logbook_sample_counter+0,W | |
1261 cpfseq average_depth_hold_total+0 | |
560 | 1262 bra profile_view_get_depth_no_line ; no need to draw a 10min line, continue |
0 | 1263 movf logbook_sample_counter+1,W |
1264 cpfseq average_depth_hold_total+1 | |
560 | 1265 bra profile_view_get_depth_no_line ; no need to draw a 10min line, continue |
1266 ; draw a new 10min line here... | |
0 | 1267 clrf logbook_sample_counter+0 |
560 | 1268 clrf logbook_sample_counter+1 ; clear counting registers for next line |
0 | 1269 |
1270 ; Vertical lines... | |
1271 movlw color_deepblue | |
560 | 1272 call TFT_set_color ; Make this configurable? |
0 | 1273 movlw profile_top+.1 |
432 | 1274 movwf win_top |
560 | 1275 incf logbook_pixel_x_pos,W ; draw one line to right to make sure it's the background of the profile |
1276 movwf win_leftx2 ; Left border (0-159) | |
0 | 1277 movlw profile_height_pixels |
432 | 1278 movwf win_height |
0 | 1279 movlw profile_height_pixels |
560 | 1280 movwf win_width ; "Window" height |
1281 call half_horizontal_line ; Inputs: win_top, win_leftx2, win_width, win_color1, win_color2 | |
0 | 1282 |
1283 profile_view_get_depth_no_line: | |
1284 call ext_flash_byte_read_plus_0x20 ; read depth first | |
1285 movff temp1,logbook_cur_depth+0 ; low value | |
1286 call ext_flash_byte_read_plus_0x20 ; read depth first | |
1287 movff temp1,logbook_cur_depth+1 ; high value | |
1288 call ext_flash_byte_read_plus_0x20 ; read Profile Flag Byte | |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1289 movff temp1,timeout_counter2 ; store Profile Flag Byte |
0 | 1290 |
560 | 1291 bcf event_occured ; clear flag |
0 | 1292 btfsc timeout_counter2,7 |
560 | 1293 bsf event_occured ; We also have an Event byte! |
1294 bcf timeout_counter2,7 ; Clear Event Byte Flag (If any) | |
0 | 1295 ; timeout_counter2 now holds the number of additional bytes to ignore (0-127) |
560 | 1296 movlw 0xFD ; end of profile bytes? |
0 | 1297 cpfseq logbook_cur_depth+0 |
560 | 1298 bra profile_view_get_depth_new1 ; no 1st. 0xFD |
0 | 1299 cpfseq logbook_cur_depth+1 |
560 | 1300 bra profile_view_get_depth_new1 ; no 2nd. 0xFD |
1301 bsf end_of_profile ; End found! Set Flag! Skip remaining pixels! | |
0 | 1302 return |
1303 | |
1304 profile_view_get_depth_new1: | |
560 | 1305 btfsc event_occured ; Was there an event attached to this sample? |
168
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
1306 rcall profile_view_get_depth_events ; Yes, get information about this event(s) |
0 | 1307 |
1308 ;---- Read Tp°, if any AND divisor reached AND bytes available ----------- | |
560 | 1309 movf divisor_temperature,W ; Is Tp° divisor null ? |
1310 bz profile_view_get_depth_no_tp ; Yes: no Tp° curve. | |
1311 decf count_temperature,F ; Decrement tp° counter | |
1312 bnz profile_view_get_depth_no_tp ; No temperature this time | |
0 | 1313 |
560 | 1314 call ext_flash_byte_read_plus_0x20 ; Tp° low |
0 | 1315 decf timeout_counter2,F |
1316 movff temp1,logbook_cur_tp+0 | |
560 | 1317 call ext_flash_byte_read_plus_0x20 ; Tp° high |
0 | 1318 decf timeout_counter2,F |
1319 movff temp1,logbook_cur_tp+1 | |
1320 movff divisor_temperature,count_temperature ; Restart counter. | |
1321 | |
1322 ; Compute Tp° max on the fly... | |
560 | 1323 movff logbook_cur_tp+0,sub_a+0 ; Compare cur_tp > max_tp ? |
0 | 1324 movff logbook_cur_tp+1,sub_a+1 |
1325 movff logbook_max_tp+0,sub_b+0 | |
1326 movff logbook_max_tp+1,sub_b+1 | |
560 | 1327 call sub16 ; SIGNED sub_a - sub_b |
0 | 1328 btfsc neg_flag |
1329 bra profile_view_get_depth_no_tp | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1330 |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1331 ; store max. temp only below start_dive_threshold (1,0m) |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1332 tstfsz logbook_cur_depth+1 ; > 2,56m? |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1333 bra profile_view_compute_max_temp ; Yes, include in max. temp measurement |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1334 movlw start_dive_threshold ; 1,0m |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1335 cpfsgt logbook_cur_depth+0 ; low value |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1336 bra profile_view_get_depth_no_tp ; above 1,0m, ignore temp |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1337 |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1338 profile_view_compute_max_temp: |
0 | 1339 movff logbook_cur_tp+0,logbook_max_tp+0 |
1340 movff logbook_cur_tp+1,logbook_max_tp+1 | |
1341 | |
1342 ;---- Read deco, if any AND divisor=0 AND bytes available ---------------- | |
1343 profile_view_get_depth_no_tp: | |
1344 movf divisor_deco,W | |
1345 bz profile_view_get_depth_no_deco | |
1346 decf count_deco,F | |
1347 bnz profile_view_get_depth_no_deco | |
1348 | |
1349 call ext_flash_byte_read_plus_0x20 | |
1350 decf timeout_counter2,F | |
1351 movff temp1,logbook_ceiling | |
560 | 1352 movff divisor_deco,count_deco ; Restart counter. |
168
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
1353 call ext_flash_byte_read_plus_0x20 ; Skip stop length |
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
1354 decf timeout_counter2,F |
0 | 1355 |
1356 ;---- Read GF, if any AND divisor=0 AND bytes available ------------------ | |
1357 profile_view_get_depth_no_deco: | |
1358 ; Then skip remaining bytes... | |
560 | 1359 movf timeout_counter2,W ; number of additional bytes to ignore (0-127) |
1360 tstfsz timeout_counter2 ; Anything to skip? | |
1361 call incf_ext_flash_address0_0x20 ; Yes, increases bytes in ext_flash_address:3 with 0x200000 bank switching | |
0 | 1362 return |
1363 | |
168
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
1364 profile_view_get_depth_events: |
560 | 1365 clrf EventByte2 ; Clear EventByte2 |
1366 call ext_flash_byte_read_plus_0x20 ; Read Event byte | |
1367 movff temp1,EventByte ; store EventByte | |
1368 decf timeout_counter2,F ; reduce counter | |
98 | 1369 |
560 | 1370 btfss EventByte,7 ; Another Event byte? |
1371 bra profile_no_second_eventbyte ; No | |
1372 call ext_flash_byte_read_plus_0x20 ; Read Event byte2 | |
1373 movff temp1,EventByte2 ; store EventByte2 | |
1374 decf timeout_counter2,F ; reduce counter | |
1375 bcf EventByte,7 ; Clear flag | |
98 | 1376 |
1377 profile_no_second_eventbyte: | |
168
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
1378 ; Check event flags in the EventBytes |
167 | 1379 btfsc EventByte,4 ; Manual Gas Changed? |
1380 rcall logbook_event1 ; Yes! | |
1381 btfsc EventByte,5 ; Stored Gas Changed? | |
1382 rcall logbook_event4 ; Yes! | |
1383 btfsc EventByte,6 ; Setpoint Change? | |
1384 rcall logbook_event3 ; Yes! | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1385 btfsc EventByte2,0 ; Bailout? |
167 | 1386 rcall logbook_event2 ; Yes! |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1387 ; Any Alarm? |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1388 bcf EventByte,4 ; Clear bits already tested |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1389 bcf EventByte,5 |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1390 bcf EventByte,6 |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1391 movlw .6 ; manual marker? |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1392 cpfseq EventByte |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1393 return ; No, return |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
1394 bsf log_marker_found ; Manual marker! Draw small yellow rectancle here |
163
4d71549dcf6c
clarify diluent change in the documentation
heinrichsweikamp
parents:
162
diff
changeset
|
1395 return |
4d71549dcf6c
clarify diluent change in the documentation
heinrichsweikamp
parents:
162
diff
changeset
|
1396 |
4d71549dcf6c
clarify diluent change in the documentation
heinrichsweikamp
parents:
162
diff
changeset
|
1397 logbook_event4: ; Stored Gas changed! |
560 | 1398 call ext_flash_byte_read_plus_0x20 ; Read Gas# |
1399 decf timeout_counter2,F ; reduce counter | |
0 | 1400 movff temp1,average_depth_hold_total+3 |
560 | 1401 rcall profile_display_color ; Change profile color according to gas number |
0 | 1402 return |
1403 | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1404 logbook_event1: ; Gas6 changed |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1405 bsf gas6_changed |
0 | 1406 movlw 6 ; Just color backup to 6 |
1407 movwf average_depth_hold_total+3 | |
1408 rcall profile_display_color ; Back to normal profile color. | |
167 | 1409 incf_ext_flash_address_0x20 .2 ; Skip two bytes |
1410 decf timeout_counter2,F ; reduce counter | |
1411 decf timeout_counter2,F ; reduce counter | |
1412 return | |
0 | 1413 |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1414 logbook_event2: ; Bailout |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1415 bsf is_bailout ; Set flag |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1416 movff average_depth_hold_total+3,total_divetime_seconds+0 ; Backup last gas color in case we return to CCR |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1417 movlw 6 ; Use Gas6 color |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1418 movwf average_depth_hold_total+3 |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1419 rcall profile_display_color ; Back to normal profile color. |
167 | 1420 incf_ext_flash_address_0x20 .2 ; Skip two bytes |
1421 decf timeout_counter2,F ; reduce counter | |
1422 decf timeout_counter2,F ; reduce counter | |
1423 return | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1424 |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1425 logbook_event3: ; Setpoint change |
167 | 1426 incf_ext_flash_address_0x20 .1 ; Skip one byte |
1427 decf timeout_counter2,F ; reduce counter | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1428 btfss is_bailout ; Are we in bailout? |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1429 return ; No, return |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1430 ; We were in bailout before, restore profile color |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1431 movff total_divetime_seconds+0,average_depth_hold_total+3 ; Restore color |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1432 rcall profile_display_color ; Back to normal profile color. |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1433 return |
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1434 |
0 | 1435 exit_profileview: |
255 | 1436 ; call speed_fastest |
0 | 1437 bcf sleepmode |
560 | 1438 clrf timeout_counter2 ; restore all registers to build same page again |
0 | 1439 movff divemins_backup,divemins+0 |
1440 movff logbook_divenumber_temp, logbook_divenumber | |
1441 movff logbook_max_dive_counter_temp,logbook_max_dive_counter | |
1442 incf logbook_max_dive_counter,F | |
1443 decf logbook_divenumber,F | |
1444 bcf all_dives_shown | |
1445 clrf menupos3 ; here: used row on current page | |
1446 movlw logbook_row_number | |
1447 movwf menupos ; here: active row on current page | |
372 | 1448 ; call TFT_DisplayOff |
502
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
1449 call TFT_boot |
0 | 1450 clrf CCP1CON ; stop PWM |
1451 bcf PORTC,2 ; Pull PWM out to GND | |
560 | 1452 call TFT_boot |
502
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
1453 ; call TFT_ClearScreen ; clear details/profile |
0 | 1454 goto logbook2 ; start search |
1455 | |
1456 next_logbook2: | |
1457 btfsc all_dives_shown ; all shown | |
1458 goto logbook ; all reset | |
1459 clrf menupos3 | |
1460 movlw logbook_row_number | |
1461 movwf menupos | |
1462 incf logbook_page_number,F ; start new screen | |
169
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
1463 bsf keep_cursor_new_page ; Keep cursor on "next page" |
0 | 1464 clrf CCP1CON ; stop PWM |
1465 bcf PORTC,2 ; Pull PWM out to GND | |
502
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
1466 call TFT_boot |
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
1467 ;call TFT_ClearScreen |
0 | 1468 goto logbook2 ; start search |
1469 | |
1470 next_logbook3: | |
560 | 1471 incf menupos,F ; +1 |
0 | 1472 movlw logbook_row_number+.2 |
560 | 1473 cpfsgt menupos ; =logbook_row_number+.3? |
1474 bra next_logbook3a ; No | |
0 | 1475 movlw .1 |
1476 movwf menupos | |
1477 bra next_logbook3b | |
1478 | |
1479 next_logbook3a: | |
560 | 1480 incf menupos3,W ; last entry in current page +1 |
1481 cpfseq menupos ; same as cursor pos.? | |
1482 bra next_logbook3b ; No | |
1483 movlw logbook_row_number+.1 ; Yes, ... | |
1484 movwf menupos ; ... jump directly to "next page" if page is not full | |
0 | 1485 |
1486 movlw logbook_row_number | |
560 | 1487 cpfseq menupos3 ; Last dive was row logbook_row_number? |
1488 bsf all_dives_shown ; No, set flag to load first page again (full reset) | |
0 | 1489 |
1490 next_logbook3b: | |
1491 clrf timeout_counter2 | |
1492 call TFT_logbook_cursor | |
1493 | |
1494 bcf switch_left | |
1495 goto logbook_loop | |
1496 | |
1497 display_listdive: | |
1498 bsf logbook_page_not_empty ; Page not empty | |
1499 incf menupos3,F | |
1500 | |
1501 bsf leftbind | |
1502 WIN_FONT FT_SMALL | |
1503 WIN_LEFT logbook_list_left | |
1504 | |
1505 decf menupos3,W ; -1 into wreg | |
1506 mullw logbook_row_offset | |
1507 movff PRODL,win_top | |
1508 | |
1509 lfsr FSR2,buffer | |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1510 call do_logoffset_common_read ; Read into lo:hi |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1511 tstfsz lo ; lo=0? |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1512 bra display_listdive1 ; No, adjust offset |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1513 tstfsz hi ; hi=0? |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1514 bra display_listdive1 ; No, adjust offset |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1515 bra display_listdive1b ; Display now |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1516 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1517 display_listdive1: |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1518 ; Check limit (lo:hi must be <1000) |
560 | 1519 movlw LOW d'1000' ; Compare to 1000 |
1520 subwf lo,W | |
1521 movlw HIGH d'1000' | |
1522 subwfb hi,W | |
1523 bc display_listdive1b ; carry = no-borrow = > 1000, skip! | |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1524 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1525 infsnz lo,F |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1526 incf hi,F ; hi:lo = hi:lo + 1 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1527 movff lo,sub_a+0 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1528 movff hi,sub_a+1 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1529 movff logbook_divenumber,sub_b+0 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1530 clrf sub_b+1 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1531 call subU16 ; sub_c = sub_a - sub_b |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1532 movff sub_c+0,lo |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1533 movff sub_c+1,hi |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1534 bra display_listdive1a |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1535 |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1536 display_listdive1b: |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1537 clrf hi |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1538 movff logbook_divenumber,lo ; lo=0 and hi=0 -> show without applied offset |
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1539 display_listdive1a: |
560 | 1540 output_16_3 ; displays only last three figures from a 16Bit value (0-999), # of dive |
0 | 1541 PUTC ' ' |
1542 LOG_POINT_TO log_date+1 ; Point to month | |
1543 call ext_flash_byte_read_plus | |
1544 movff temp1,lo ; read month | |
1545 | |
1546 display_listdive2: | |
1547 movff lo,convert_value_temp+0 ; Month (in lo, see above) | |
1548 call ext_flash_byte_read_plus ; Day | |
1549 movff temp1,convert_value_temp+1 | |
1550 call TFT_convert_date_short ; converts into "DD/MM" or "MM/DD" or "MM/DD" into buffer | |
1551 PUTC ' ' | |
1552 | |
1553 LOG_POINT_TO log_max_depth ; Point to max. depth | |
1554 call ext_flash_byte_read_plus ; max. Depth | |
1555 movff temp1,lo | |
1556 call ext_flash_byte_read_plus | |
1557 movff temp1,hi | |
1558 | |
560 | 1559 TSTOSS opt_units ; 0=Meters, 1=Feets |
0 | 1560 bra display_listdive2_metric |
1561 ;display_listdive2_imperial: | |
560 | 1562 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet |
0 | 1563 PUTC ' ' |
25 | 1564 bcf leftbind |
560 | 1565 output_16_3 ; limit to 999 and display only (0-999) |
0 | 1566 STRCAT_TEXT tFeets1 |
1567 bra display_listdive3 | |
1568 | |
1569 display_listdive2_metric: | |
560 | 1570 bsf ignore_digit5 ; no cm... |
1571 movlw d'1' ; +1 | |
1572 movff WREG,ignore_digits ; no 1000m | |
0 | 1573 bcf leftbind |
560 | 1574 output_16dp .3 ; xxx.y |
0 | 1575 STRCAT_TEXT tMeters |
1576 PUTC ' ' | |
1577 | |
1578 display_listdive3: | |
1579 call ext_flash_byte_read_plus | |
1580 movff temp1,lo ; read divetime minutes | |
1581 call ext_flash_byte_read_plus | |
1582 movff temp1,hi | |
1583 output_16_3 ; Divetime minutes (0-999min) | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
1584 STRCAT_TEXT tMinutes |
560 | 1585 clrf WREG |
1586 movff WREG,buffer+.21 ; limit to 21 chars | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
1587 STRCAT_PRINT "" ; Display header-row in list |
0 | 1588 return |
1589 | |
1590 logbook_show_divenumber: | |
1591 call do_logoffset_common_read ; Read into lo:hi | |
1592 tstfsz lo ; lo=0? | |
1593 bra logbook_show_divenumber2 ; No, adjust offset | |
1594 tstfsz hi ; hi=0? | |
1595 bra logbook_show_divenumber2 ; No, adjust offset | |
1596 movff divesecs,lo ; lo=0 and hi=0 -> skip Offset routine | |
1597 bra logbook_show_divenumber3 ; Display now | |
1598 | |
1599 logbook_show_divenumber2: | |
376
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
1600 infsnz lo,F |
e99bb91f6f92
CHANGE: Do not show ppO2 in warning area if already shown in custom view
heinrichsweikamp
parents:
372
diff
changeset
|
1601 incf hi,F ; hi:lo = hi:lo + 1 |
0 | 1602 movff lo,sub_a+0 |
1603 movff hi,sub_a+1 | |
1604 movff divesecs,sub_b+0 | |
1605 clrf sub_b+1 | |
560 | 1606 call subU16 ; sub_c = sub_a - sub_b |
0 | 1607 movff sub_c+0,lo |
1608 movff sub_c+1,hi | |
1609 | |
1610 logbook_show_divenumber3: | |
1611 WIN_MEDIUM logbook_divenumer_column, logbook_divenumer_row | |
1612 bsf leftbind | |
560 | 1613 output_16 ; # of dive in logbook |
0 | 1614 bcf leftbind |
560 | 1615 STRCAT_PRINT "" |
0 | 1616 return |
1617 | |
1618 | |
1619 logbook_page2: ; Show more info | |
560 | 1620 rcall log_details_header ; Shows number, time/date and basic dive info |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1621 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1622 ; Deco model |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1623 WIN_SMALL .5,.65 |
560 | 1624 LOG_POINT_TO log_decomodel |
1625 call ext_flash_byte_read_plus ; read deco model | |
0 | 1626 movff temp1,lo |
1627 decfsz temp1,F | |
1628 bra logbook_decomodel1 | |
1629 ; Deco model GF Version | |
560 | 1630 STRCAT_PRINT "ZH-L16+GF" |
1631 LOG_POINT_TO log_gf_lo | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1632 WIN_SMALL .5,.90 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1633 STRCPY_TEXT tGF |
560 | 1634 call ext_flash_byte_read_plus ; Read GF lo |
0 | 1635 movff temp1,lo |
1636 output_8 | |
560 | 1637 STRCAT "%/" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1638 bra logbook_decomodel_common |
0 | 1639 logbook_decomodel1: |
1640 ; Deco model NON-GF Version | |
560 | 1641 STRCAT_PRINT "ZH-L16" |
1642 LOG_POINT_TO log_sat_mult | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1643 WIN_SMALL .5,.90 |
560 | 1644 call ext_flash_byte_read_plus ; Read sat_mult |
0 | 1645 movff temp1,lo |
1646 output_8 | |
560 | 1647 STRCAT "%/" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1648 logbook_decomodel_common: |
560 | 1649 call ext_flash_byte_read_plus ; Read desat_mult or GF_hi |
0 | 1650 movff temp1,lo |
1651 output_8 | |
560 | 1652 STRCAT_PRINT "%" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1653 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1654 ; CNS |
560 | 1655 LOG_POINT_TO log_cns_start |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1656 WIN_SMALL .5,.115 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1657 STRCPY_TEXT tCNS2 |
560 | 1658 call ext_flash_byte_read_plus ; read cns low |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1659 movff temp1,lo |
560 | 1660 call ext_flash_byte_read_plus ; read cns high |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1661 movff temp1,hi |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1662 output_16 |
560 | 1663 LOG_POINT_TO log_cns_end |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1664 STRCAT "->" |
560 | 1665 call ext_flash_byte_read_plus ; read CNS low |
0 | 1666 movff temp1,lo |
560 | 1667 call ext_flash_byte_read_plus ; read CNS high |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1668 movff temp1,hi |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1669 output_16 |
560 | 1670 STRCAT_PRINT "%" |
0 | 1671 |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1672 ; Salinity |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1673 WIN_SMALL .5,.140 |
560 | 1674 LOG_POINT_TO log_salinity |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1675 STRCPY_TEXT tDvSalinity |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1676 bsf leftbind |
560 | 1677 call ext_flash_byte_read_plus ; read salinity |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1678 movff temp1,lo |
560 | 1679 movff temp1,total_divetime_seconds+1 ; backup for average depth display |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1680 output_8 |
560 | 1681 STRCAT_PRINT "%" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1682 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1683 ; Average depth |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1684 WIN_SMALL .5,.165 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1685 STRCPY_TEXT tAVG |
560 | 1686 LOG_POINT_TO log_avr_depth |
1687 call ext_flash_byte_read_plus ; read avr low | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1688 movff temp1,lo |
560 | 1689 call ext_flash_byte_read_plus ; read avr high |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1690 movff temp1,hi |
560 | 1691 movf total_divetime_seconds+1,W ; salinity for this dive |
1692 call adjust_depth_with_salinity_log ; computes salinity setting (FROM WREG!) into lo:hi [mbar] | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1693 output_16dp .3 |
560 | 1694 STRCAT_PRINT "m" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1695 |
0 | 1696 ; Last deco |
560 | 1697 LOG_POINT_TO log_last_stop |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1698 WIN_SMALL .5,.190 |
0 | 1699 STRCPY_TEXT tLastDecostop |
560 | 1700 call ext_flash_byte_read_plus ; Read last stop |
0 | 1701 movff temp1,lo |
1702 output_8 | |
560 | 1703 STRCAT_PRINT "m" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1704 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1705 movlw color_lightblue |
560 | 1706 call TFT_set_color |
1707 WIN_FRAME_COLOR16 .63,.220,.2,.105 ; Top, Bottom, Left, Right | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1708 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1709 ; Firmware |
560 | 1710 call TFT_standard_color |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1711 WIN_SMALL .110,.65 |
560 | 1712 STRCAT "V:" |
1713 LOG_POINT_TO log_firmware | |
1714 call ext_flash_byte_read_plus ; read firmware xx | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1715 movff temp1,lo |
560 | 1716 bsf neg_flag ; set flag for 2.15 or newer |
1717 movlw .1 | |
1718 cpfsgt lo ; >1? | |
1719 bcf neg_flag ; No, clear flag | |
1720 movlw .9 | |
1721 cpfslt lo ; <9? | |
1722 bcf neg_flag ; No, clear flag (When unit was updgraded from hwOS Sport (10.xx)) | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1723 bsf leftbind |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1724 output_8 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1725 PUTC "." |
560 | 1726 call ext_flash_byte_read_plus ; read firmware yy |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1727 movff temp1,lo |
560 | 1728 movlw .14 |
1729 cpfsgt lo ; >14? | |
1730 bcf neg_flag ; No, clear flag | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1731 output_99x |
560 | 1732 STRCAT_PRINT "" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1733 |
560 | 1734 btfss neg_flag ; set flag for 2.15 or newer |
1735 bra logbook_no_batt_info | |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1736 |
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1737 ; Battery percent (for dives with 2.15 or newer) |
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1738 WIN_SMALL .110,.140 |
560 | 1739 LOG_POINT_TO log_batt_info ; Battery percent |
1740 call ext_flash_byte_read_plus ; read battery low | |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1741 movff temp1,lo |
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1742 output_8 |
560 | 1743 STRCAT_PRINT "%" |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1744 |
560 | 1745 logbook_no_batt_info: ; dives with firmware <2.15 |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1746 |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1747 ; Battery voltage |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1748 WIN_SMALL .110,.90 |
560 | 1749 STRCAT_PRINT "Batt:" |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1750 WIN_SMALL .110,.115 |
560 | 1751 LOG_POINT_TO log_battery ; Battery voltage... |
1752 call ext_flash_byte_read_plus ; read battery low | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1753 movff temp1,lo |
560 | 1754 call ext_flash_byte_read_plus ; read battery high |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1755 movff temp1,hi |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1756 output_16dp .2 |
560 | 1757 STRCAT_PRINT "V" |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1758 |
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1759 ; surface pressure in mbar |
560 | 1760 LOG_POINT_TO log_surface_press |
1761 call ext_flash_byte_read_plus ; read surface pressure | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1762 movff temp1,lo |
560 | 1763 call ext_flash_byte_read_plus ; read surface pressure |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1764 movff temp1,hi |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1765 WIN_SMALL .110,.165 |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1766 lfsr FSR2,buffer |
560 | 1767 bsf leftbind |
1768 output_16 ; Air pressure before dive | |
1769 STRCAT_TEXT tMBAR | |
1770 clrf WREG | |
1771 movff WREG,buffer+7 ; limit to 7 chars | |
1772 STRCAT_PRINT "" | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1773 |
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1774 movlw color_greenish |
560 | 1775 call TFT_set_color |
1776 WIN_FRAME_COLOR16 .63,.220,.107,.159 ; Top, Bottom, Left, Right | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1777 |
560 | 1778 rcall logbook_preloop_tasks ; Clear some flags and set to Speed_eco |
0 | 1779 display_details_loop: |
560 | 1780 ; REPLACE ## logbook look and feel |
1781 ; btfsc switch_left ; SET/MENU? | |
1782 ; BY | |
1783 btfsc switch_right | |
1784 bra logbook_page3 ; Details, 2nd page | |
1785 ; REPLACE ## logbook look and feel | |
1786 ; btfsc switch_right ; ENTER? | |
1787 btfsc switch_left | |
1788 bra exit_profileview ; back to list | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1789 rcall log_screendump_and_onesecond ; Check if we need to make a screenshot and check for new second |
560 | 1790 btfsc sleepmode ; Timeout? |
1791 bra exit_profileview ; back to list | |
1792 bra display_details_loop ; wait for something to do | |
0 | 1793 |
1794 global logbook_preloop_tasks | |
1795 logbook_preloop_tasks: | |
560 | 1796 movlw CCP1CON_VALUE ; See hwos.inc |
1797 movwf CCP1CON ; Power-on backlight | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1798 call TFT_standard_color |
560 | 1799 bcf sleepmode ; clear some flags |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1800 bcf switch_right |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1801 bcf switch_left |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1802 clrf timeout_counter2 |
560 | 1803 goto speed_normal ; and return |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1804 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1805 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1806 logbook_page3: ; Show even more info |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1807 rcall log_details_header ; Shows number, time/date and basic dive info |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1808 |
560 | 1809 ; REPLACE ## logbook look and feel |
1810 ; ; OC/CC Gas List | |
1811 ; LOG_POINT_TO log_divemode | |
1812 ; call ext_flash_byte_read_plus ; 0=OC, 1=CC, 2=Gauge, 3=Apnea into temp1 | |
1813 ; WIN_SMALL .5,.65 | |
1814 ; WIN_COLOR color_greenish | |
1815 ; STRCPY_TEXT_PRINT tGaslist ; "OC Gas List" / tGaslistCC | |
1816 ; BY | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1817 bcf leftbind |
560 | 1818 LOG_POINT_TO log_gas1 |
1819 movlw color_white ; Color for Gas 1 | |
1820 call TFT_set_color ; Set Color... | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1821 WIN_SMALL .5,.90 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1822 rcall log_show_gas_common2 |
560 | 1823 movlw color_green ; Color for Gas 2 |
1824 call TFT_set_color ; Set Color... | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1825 WIN_SMALL .5,.115 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1826 rcall log_show_gas_common2 |
560 | 1827 movlw color_red ; Color for Gas 3 |
1828 call TFT_set_color ; Set Color... | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1829 WIN_SMALL .5,.140 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1830 rcall log_show_gas_common2 |
560 | 1831 movlw color_yellow ; Color for Gas 4 |
1832 call TFT_set_color ; Set Color... | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1833 WIN_SMALL .5,.165 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1834 rcall log_show_gas_common2 |
560 | 1835 movlw color_cyan ; Color for Gas 5 |
1836 call TFT_set_color ; Set Color... | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1837 WIN_SMALL .5,.190 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1838 rcall log_show_gas_common2 |
560 | 1839 ; OC/CC Gas List |
1840 WIN_SMALL .5,.65 | |
1841 WIN_COLOR color_greenish | |
1842 LOG_POINT_TO log_divemode | |
1843 call ext_flash_byte_read_plus ; 0=OC, 1=CC, 2=Gauge, 3=Apnea into temp1 | |
1844 decfsz temp1,w ; =1 (CC)? | |
1845 bra logbook_page3a | |
1846 STRCPY_TEXT_PRINT tGaslistCC | |
1847 bra logbook_page3b | |
1848 logbook_page3a: | |
1849 STRCPY_TEXT_PRINT tGaslist | |
1850 logbook_page3b: | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1851 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1852 movlw color_lightblue |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1853 call TFT_set_color |
560 | 1854 WIN_FRAME_COLOR16 .63,.220,.2,.90 ; Top, Bottom, Left, Right |
530 | 1855 |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1856 rcall logbook_preloop_tasks ; Clear some flags and set to Speed_eco |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1857 display_details2_loop: |
560 | 1858 ; REPLACE ## logbook look and feel |
1859 ; btfsc switch_left ; SET/MENU? | |
1860 ; BY | |
1861 btfsc switch_right | |
1862 goto logbook_page4 ; Show more info | |
1863 ; REPLACE ## logbook look and feel | |
1864 ; btfsc switch_right ; ENTER? | |
1865 ; BY | |
1866 btfsc switch_left | |
1867 bra exit_profileview ; back to list | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1868 rcall log_screendump_and_onesecond ; Check if we need to make a screenshot and check for new second |
560 | 1869 btfsc sleepmode ; Timeout? |
1870 bra exit_profileview ; back to list | |
1871 bra display_details2_loop ; wait for something to do | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1872 |
530 | 1873 logbook_page4: ; Show even more info in CC mode |
1874 LOG_POINT_TO log_divemode | |
560 | 1875 call ext_flash_byte_read ; 0=OC, 1=CC, 2=Gauge, 3=Apnea into WREG and temp1 |
1876 decfsz temp1,w ; =1 (CC)? | |
1877 goto display_profile2 ; no | |
530 | 1878 |
560 | 1879 rcall log_details_header ; Shows number, time/date and basic dive info |
1880 ; Setpoint list | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1881 LOG_POINT_TO log_sp1 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1882 WIN_SMALL .5,.65 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1883 WIN_COLOR color_greenish |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1884 STRCPY_TEXT_PRINT tFixedSetpoints |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1885 call TFT_standard_color |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1886 WIN_SMALL .5,.90 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1887 rcall log_show_sp_common |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1888 WIN_SMALL .5,.115 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1889 rcall log_show_sp_common |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1890 WIN_SMALL .5,.140 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1891 rcall log_show_sp_common |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1892 WIN_SMALL .5,.165 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1893 rcall log_show_sp_common |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1894 WIN_SMALL .5,.190 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1895 rcall log_show_sp_common |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1896 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1897 movlw color_greenish |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1898 call TFT_set_color |
560 | 1899 WIN_FRAME_COLOR16 .63,.220,.2,.112 ; Top, Bottom, Left, Right |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1900 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1901 rcall logbook_preloop_tasks ; Clear some flags and set to Speed_eco |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1902 display_details3_loop: |
560 | 1903 ; REPLACE ## logbook look and feel |
1904 ; btfsc switch_left ; SET/MENU? | |
1905 ; BY | |
1906 btfsc switch_right | |
1907 goto display_profile2 ; Show the profile view again | |
1908 ; REPLACE ## logbook look and feel | |
1909 ; btfsc switch_right ; ENTER? | |
1910 ; BY | |
1911 btfsc switch_left | |
1912 bra exit_profileview ; back to list | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1913 rcall log_screendump_and_onesecond ; Check if we need to make a screenshot and check for new second |
560 | 1914 btfsc sleepmode ; Timeout? |
1915 bra exit_profileview ; back to list | |
1916 bra display_details3_loop ; wait for something to do | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1917 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1918 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1919 log_details_header: |
560 | 1920 clrf CCP1CON ; stop PWM |
1921 bcf PORTC,2 ; Pull PWM out to GND | |
502
0910c227018f
BUGFIX: PSCR mode showed bailout gaslist instead of diluent gaslist
heinrichsweikamp
parents:
500
diff
changeset
|
1922 call TFT_boot |
560 | 1923 ;call TFT_ClearScreen ; Clear screen |
0 | 1924 |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1925 ; Set ext_flash pointer to "#divesecs-oldest" dive |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1926 ; compute read_int_eeprom .2 - divesecs |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1927 ; Read required header data for profile display |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1928 ; look in header for pointer to begin of diveprofile (Byte 2-4) |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1929 ; Set pointer (ext_flash_log_pointer:3) to this address, start drawing |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1930 |
560 | 1931 decf divesecs,F ;-1 |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1932 read_int_eeprom .2 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1933 movf EEDATA,W |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1934 bcf STATUS,C |
560 | 1935 subfwb divesecs,W ; max. dives (low value) - divesecs |
1936 movwf lo ; result | |
1937 incf divesecs,F ;+1 | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1938 ; Set ext_flash_address:3 to TOC entry of this dive |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1939 ; 1st: 200000h-200FFFh -> lo=0 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1940 ; 2nd: 201000h-201FFFh -> lo=1 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1941 ; 3rd: 202000h-202FFFh -> lo=2 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1942 ; 256: 2FF000h-2FFFFFh -> lo=255 (And hi>0...) |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1943 clrf ext_flash_address+0 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1944 clrf ext_flash_address+1 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1945 movlw 0x20 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1946 movwf ext_flash_address+2 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1947 movlw .16 |
560 | 1948 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1949 movf PRODL,W |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1950 addwf ext_flash_address+1,F |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1951 movf PRODH,W |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1952 addwfc ext_flash_address+2,F |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1953 ; pointer at the first 0xFA of header |
560 | 1954 rcall logbook_show_divenumber ; Show the dive number in medium font |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1955 ; Show date and time in first row |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1956 WIN_SMALL .59,.10 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1957 LOG_POINT_TO log_date |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1958 call ext_flash_byte_read_plus |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1959 movff temp1,convert_value_temp+2 ; Year |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1960 call ext_flash_byte_read_plus |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1961 movff temp1,convert_value_temp+0 ; Month |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1962 call ext_flash_byte_read_plus |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1963 movff temp1,convert_value_temp+1 ; Day |
560 | 1964 call TFT_convert_date ; converts into "DD/MM/YY" or "MM/DD/YY" or "YY/MM/DD" in postinc2 |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1965 PUTC "-" |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1966 call ext_flash_byte_read_plus ; hour |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1967 movff temp1,lo |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1968 call ext_flash_byte_read_plus ; Minutes |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1969 movff temp1,hi |
560 | 1970 output_99x ; hour |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1971 PUTC ':' |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1972 movff hi,lo |
560 | 1973 output_99x ; minute |
1974 STRCAT_PRINT "" ; Display 1st row of details | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1975 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1976 ; Show max depth and dive time |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1977 WIN_SMALL .5,.35 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1978 STRCAT "Max:" |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1979 LOG_POINT_TO log_max_depth |
560 | 1980 call ext_flash_byte_read_plus ; read max depth |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1981 movff temp1,lo |
560 | 1982 call ext_flash_byte_read_plus ; read max depth |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1983 movff temp1,hi |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1984 |
560 | 1985 TSTOSS opt_units ; 0=Meters, 1=Feets |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1986 bra logbook_page2_depth_metric |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1987 ; imperial |
560 | 1988 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1989 PUTC ' ' |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1990 bcf leftbind |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1991 output_16_3 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1992 STRCAT_TEXT tFeets |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1993 bra logbook_page2_depth_common |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1994 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1995 logbook_page2_depth_metric: |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1996 bsf leftbind |
560 | 1997 output_16dp d'3' ; max. depth |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1998 STRCAT_TEXT tMeters |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1999 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2000 logbook_page2_depth_common: |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2001 STRCAT " - " |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2002 call ext_flash_byte_read_plus ; divetime in minutes |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2003 movff temp1,lo |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2004 call ext_flash_byte_read_plus |
560 | 2005 movff temp1,hi ; divetime in minutes |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2006 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2007 bsf leftbind |
560 | 2008 output_16 ; divetime minutes |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2009 PUTC "m" |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2010 LOG_POINT_TO log_divetime+.2 |
560 | 2011 call ext_flash_byte_read_plus ; read divetime seconds |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2012 movff temp1,lo |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2013 bsf leftbind |
560 | 2014 output_99x ; divetime seconds |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2015 call TFT_standard_color |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2016 STRCAT_PRINT "s" |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2017 ; ; Dive mode |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2018 ; LOG_POINT_TO log_divemode |
560 | 2019 ; call ext_flash_byte_read_plus ; Read divemode |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2020 ; movff temp1,lo |
560 | 2021 ; call TFT_display_decotype_surface1 ; "strcat_print"s divemode (OC, CC, APNEA or GAUGE) |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2022 return |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2023 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
2024 |
0 | 2025 log_show_sp_common: |
2026 lfsr FSR2,buffer | |
560 | 2027 call ext_flash_byte_read_plus ; Read setpoint |
0 | 2028 movff temp1,lo |
2029 clrf hi | |
2030 bsf leftbind | |
2031 output_16dp d'3' | |
2032 bcf leftbind | |
2033 STRCAT_TEXT tbar | |
2034 PUTC " " | |
560 | 2035 call ext_flash_byte_read_plus ; change depth |
0 | 2036 movff temp1,lo |
2037 | |
560 | 2038 TSTOSS opt_units ; 0=Meters, 1=Feets |
0 | 2039 bra log_show_sp_common_metric |
2040 movf lo,W | |
560 | 2041 mullw .100 ; convert meters to mbar |
0 | 2042 movff PRODL,lo |
2043 movff PRODH,hi | |
560 | 2044 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet |
0 | 2045 output_16 |
560 | 2046 STRCAT_TEXT tFeets ; "ft" |
0 | 2047 bra log_show_sp_common_common |
2048 log_show_sp_common_metric: | |
2049 output_8 | |
560 | 2050 STRCAT_TEXT tMeters ; "m" |
0 | 2051 log_show_sp_common_common: |
2052 STRCAT_PRINT "" | |
2053 return | |
2054 | |
560 | 2055 log_show_gas_common2: ; as log_show_gas_common but with change depth |
0 | 2056 lfsr FSR2,buffer |
560 | 2057 call ext_flash_byte_read_plus ; current O2 |
0 | 2058 movff temp1,lo |
560 | 2059 call ext_flash_byte_read_plus ; current He |
0 | 2060 movff temp1,hi |
560 | 2061 call customview_show_mix ; Put "Nxlo", "Txlo/hi", "Air" or "O2" into Postinc2 |
2062 call ext_flash_byte_read_plus ; change depth | |
0 | 2063 movff temp1,lo |
2064 | |
560 | 2065 TSTOSS opt_units ; 0=Meters, 1=Feets |
0 | 2066 bra log_show_gas_common2_metric |
2067 movf lo,W | |
560 | 2068 mullw .100 ; convert meters to mbar |
0 | 2069 movff PRODL,lo |
2070 movff PRODH,hi | |
560 | 2071 call convert_mbar_to_feet ; convert value in lo:hi from mbar to feet |
0 | 2072 output_16 |
560 | 2073 STRCAT_TEXT tFeets ; "ft" |
0 | 2074 bra log_show_gas_common2_common |
2075 log_show_gas_common2_metric: | |
2076 output_8 | |
560 | 2077 STRCAT_TEXT tMeters ; "m" |
0 | 2078 log_show_gas_common2_common: |
2079 bcf leftbind | |
560 | 2080 call ext_flash_byte_read_plus ; Gas Type |
0 | 2081 STRCAT_PRINT "" |
2082 return | |
2083 | |
2084 END |