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