Mercurial > public > hwos_code
annotate src/logbook.asm @ 640:8c1f1f334275
3.13 release
author | heinrichsweikamp |
---|---|
date | Thu, 29 Oct 2020 09:29:15 +0100 |
parents | 4050675965ea |
children | 070528a88715 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
640 | 3 ; File logbook.asm * combined next generation V3.12.2 |
0 | 4 ; |
5 ; Logbook | |
6 ; | |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-11-12 : [mH] moving from OSTC code | |
582 | 11 ; |
0 | 12 ;============================================================================= |
582 | 13 |
14 | |
604 | 15 #include "hwos.inc" ; mandatory header |
582 | 16 #include "tft.inc" |
17 #include "external_flash.inc" | |
18 #include "math.inc" | |
19 #include "strings.inc" | |
20 #include "convert.inc" | |
21 #include "tft_outputs.inc" | |
22 #include "eeprom_rs232.inc" | |
23 #include "menu_processor.inc" | |
24 #include "start.inc" | |
25 #include "surfmode.inc" | |
26 #include "divemode.inc" | |
27 #include "ghostwriter.inc" | |
631 | 28 #include "rtc.inc" |
634 | 29 #include "gaslist.inc" |
30 #include "colorschemes.inc" | |
631 | 31 |
32 #DEFINE inside_loogbook | |
33 #include "logbook.inc" | |
34 | |
0 | 35 |
634 | 36 extern main_menu |
582 | 37 |
38 | |
634 | 39 ;---- Private local Variables ------------------------------------------------ |
0 | 40 |
582 | 41 CBLOCK local1 ; max size is 16 byte !!! |
42 count_temperature ; current sample count for temperature divisor | |
43 count_deco ; current sample count for deco (ceiling) divisor | |
623 | 44 logbook_cur_depth:2 ; current depth, for drawing profile |
45 logbook_cur_tp:2 ; current temperature, for drawing profile | |
46 logbook_last_tp ; Y of the last item in Tp° curve | |
47 logbook_min_tp:2 ; min temperature, for drawing profile | |
48 logbook_max_tp:2 ; maximum temperature, for drawing profile | |
49 logbook_ceiling ; current ceiling, for drawing profile | |
582 | 50 logbook_flags ; flags only used in logbook.asm |
51 logbook_page_number ; page# in logbook | |
52 logbook_divenumber ; # of dive in list during search | |
53 logbook_max_dive_counter ; counts dive# to zero | |
54 ENDC ; used: 16 byte, remaining: 0 byte => FULL | |
0 | 55 |
582 | 56 CBLOCK local2 ; max size is 16 byte !!! |
57 profile_temp1:2 ; temp for profile display | |
58 profile_temp2:2 ; temp for profile display | |
59 logbook_sample_counter:2 ; amount of read samples | |
629 | 60 y_scale:2 ; y-scale (the horizontal lines) |
61 x_scale:2 ; x-scale (the vertical lines) | |
582 | 62 logbook_pixel_x_pos ; x2 position of current pixel in X-direction |
63 logbook_min_temp_pos ; lowest row in the temp graph | |
64 logbook_max_temp_pos ; lowest row in the temp graph | |
65 logbook_menupos_temp ; last position of cursor | |
66 logbook_divenumber_temp ; used to back-up dive number | |
67 logbook_max_dive_counter_temp ; used to back-up max_dive_counter | |
68 ENDC ; used: 16 byte, remaining: 0 byte => FULL | |
0 | 69 |
582 | 70 CBLOCK local3 ; max size is 16 byte !!! |
71 divenumber ; used for accessing dives | |
72 vertical_interval:2 ; holds interval of samples for vertical 10min line | |
73 backup_color1 ; used for restoring drawing color | |
74 backup_color2 ; used for restoring drawing color | |
75 fill_between_rows ; used for fill between rows | |
76 logbook_temp ; used as temp | |
77 logbook_temp_backup ; used as backup for temp | |
78 divisor_temperature ; divisor used while sampling of the dive data | |
79 divisor_deco ; divisor used while sampling of the dive data | |
80 divisor_gf ; divisor used while sampling of the dive data | |
81 divisor_ppo2_sensors ; divisor used while sampling of the dive data | |
82 divisor_decoplan ; divisor used while sampling of the dive data | |
83 divisor_cns ; divisor used while sampling of the dive data | |
84 divisor_tank ; divisor used while sampling of the dive data | |
631 | 85 total_num_dives ; total number of dives (low byte on) |
86 ENDC ; used: 16 byte, remaining: 0 byte => full | |
582 | 87 |
0 | 88 |
634 | 89 ; Remark: This code includes decoding and displaying of log data for Trimix |
623 | 90 ; and CCR/pSCR dives to make sure that if such dives are in the |
91 ; logbook they will be displayed correctly. | |
582 | 92 |
93 ;---- Defines ---------------------------------------------------------------- | |
94 | |
95 ; Flags | |
96 #DEFINE return_from_profileview logbook_flags,0 | |
97 #DEFINE all_dives_shown logbook_flags,1 | |
98 #DEFINE logbook_page_not_empty logbook_flags,2 | |
99 #DEFINE end_of_profile logbook_flags,3 | |
100 #DEFINE keep_cursor_new_page logbook_flags,4 | |
101 #DEFINE log_marker_found logbook_flags,5 | |
102 #DEFINE log_show_gas_short logbook_flags,6 | |
103 ; logbook_flags,7 ; unused | |
104 | |
631 | 105 |
0 | 106 ; Logbook Coordinates |
604 | 107 #DEFINE logbook_list_left .10 ; column of dive# in list |
628 | 108 #DEFINE logbook_row_offset .27 ; distance between rows of list |
631 | 109 #DEFINE logbook_row_number .7 ; number of dive entry rows per list |
0 | 110 |
111 ; Profile display | |
604 | 112 #DEFINE profile_height_pixels .157 ; amount of pixels height for profile display |
113 #DEFINE profile_width_pixels .156 ; amount of pixels width for profile display | |
114 #DEFINE profile_left .1 ; left border | |
115 #DEFINE profile_top .65 ; top border | |
0 | 116 |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
117 ; "Bailout" |
582 | 118 #DEFINE logbook_bailout_column .124 |
119 #DEFINE logbook_bailout_row .207 | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
120 |
0 | 121 ; Dive number |
582 | 122 #DEFINE logbook_divenumer_column .1 |
123 #DEFINE logbook_divenumer_row .1 | |
623 | 124 |
0 | 125 ; Date and Time |
582 | 126 #DEFINE logbook_date_column .100 |
127 #DEFINE logbook_date_row .7 | |
128 #DEFINE logbook_time_column .120 | |
129 #DEFINE logbook_time_row .38 | |
623 | 130 |
0 | 131 ; Max. Depth |
582 | 132 #DEFINE log_max_value_row .38 |
133 #DEFINE log_max_value_column .1 | |
623 | 134 |
582 | 135 ; Divetime |
631 | 136 #DEFINE log_divetime_mins_value_row .38 |
137 #DEFINE log_divetime_mins_value_column .60 | |
623 | 138 |
0 | 139 ; Gaslist below profile |
582 | 140 #DEFINE log_gas_row .225 |
141 #DEFINE log_gas_column1 .0 | |
142 #DEFINE log_gas_column2 log_gas_column1+(.1*.32) | |
143 #DEFINE log_gas_column3 log_gas_column1+(.2*.32) | |
144 #DEFINE log_gas_column4 log_gas_column1+(.3*.32) | |
145 #DEFINE log_gas_column5 log_gas_column1+(.4*.32) | |
0 | 146 |
147 ; Logbook Page2 | |
582 | 148 ; Gaslist |
149 #DEFINE log2_title_row1 .20 | |
150 #DEFINE log2_title_column .90 | |
151 #DEFINE log2_gas_column log2_title_column | |
152 #DEFINE log2_gas_row1 .36 | |
153 #DEFINE log2_gas_row2 1*.16+log2_gas_row1 | |
154 #DEFINE log2_gas_row3 2*.16+log2_gas_row1 | |
155 #DEFINE log2_gas_row4 3*.16+log2_gas_row1 | |
156 #DEFINE log2_gas_row5 4*.16+log2_gas_row1 | |
0 | 157 |
582 | 158 ; Setpoint List |
159 #DEFINE log2_title_sp_row .130 | |
160 #DEFINE log2_sp_row1 .146 | |
161 #DEFINE log2_sp_row2 1*.16+log2_sp_row1 | |
162 #DEFINE log2_sp_row3 2*.16+log2_sp_row1 | |
163 #DEFINE log2_sp_row4 3*.16+log2_sp_row1 | |
164 #DEFINE log2_sp_row5 4*.16+log2_sp_row1 | |
0 | 165 |
582 | 166 ; Details list |
167 #DEFINE log2_salinity_row .55 | |
168 #DEFINE log2_salinity_column .2 | |
169 #DEFINE log2_cns_row .1*.16+log2_salinity_row | |
170 #DEFINE log2_cns_column log2_salinity_column | |
171 #DEFINE log2_avr_row .2*.16+log2_salinity_row | |
172 #DEFINE log2_avr_column log2_salinity_column | |
173 #DEFINE log2_decomodel2_row .3*.16+log2_salinity_row | |
174 #DEFINE log2_decomodel2_column log2_salinity_column | |
175 #DEFINE log2_decomodel3_row .4*.16+log2_salinity_row | |
176 #DEFINE log2_decomodel3_column log2_salinity_column | |
177 #DEFINE log2_decomodel_row .5*.16+log2_salinity_row | |
178 #DEFINE log2_decomodel_column log2_salinity_column | |
179 #DEFINE log2_firmware_row .6*.16+log2_salinity_row | |
180 #DEFINE log2_firmware_column log2_salinity_column | |
181 #DEFINE log2_battery_row .7*.16+log2_salinity_row | |
182 #DEFINE log2_battery_column log2_salinity_column | |
183 #DEFINE log2_divemode_row .8*.16+log2_salinity_row | |
184 #DEFINE log2_divemode_column log2_salinity_column | |
185 #DEFINE log2_lastdeco_row .9*.16+log2_salinity_row | |
186 #DEFINE log2_lastdeco_column log2_salinity_column | |
623 | 187 |
0 | 188 ; Air pressure |
582 | 189 #DEFINE MBAR_row .10*.16+log2_salinity_row |
190 #DEFINE MBAR_column log2_salinity_column | |
0 | 191 |
192 | |
634 | 193 ;============================================================================= |
604 | 194 logbook CODE |
0 | 195 ;============================================================================= |
196 | |
634 | 197 ;----------------------------------------------------------------------------- |
198 ; Helper Function - show the Cursor | |
199 ; | |
582 | 200 TFT_logbook_cursor: |
628 | 201 WIN_BOX_BLACK .0, .239, logbook_list_left-.8, logbook_list_left-.1 ; top, bottom, left, right |
0 | 202 |
623 | 203 WIN_LEFT logbook_list_left-.8 ; set horizontal position |
634 | 204 FONT_SIZE FT_SMALL ; set font size |
205 FONT_COLOR_MEMO ; set font color | |
623 | 206 decf menu_pos_cur,W ; get row number -1 into WREG |
207 mullw logbook_row_offset ; multiply with vertical offset between rows | |
208 movff PRODL,win_top ; set vertical position | |
209 STRCPY_PRINT "\xB7" ; print cursor | |
210 return ; done | |
0 | 211 |
212 | |
634 | 213 ;----------------------------------------------------------------------------- |
214 ; Entry Point coming from Surface Menu | |
215 ; | |
216 global logbook | |
0 | 217 logbook: |
634 | 218 call TFT_boot ; initialize display |
631 | 219 |
220 clrf logbook_flags ; clear all flags | |
221 clrf menu_pos_max ; clear number of used rows on current page | |
634 | 222 clrf logbook_page_number ; clear # of current displayed page |
223 clrf logbook_divenumber ; clear # of dive in list during search | |
224 clrf logbook_temp ; clear temps | |
225 clrf logbook_temp_backup ; ... | |
631 | 226 |
227 movlw logbook_row_number ; get number of dive entry rows per list | |
228 movwf menu_pos_cur ; initialize cursor position to last entry | |
0 | 229 |
631 | 230 call eeprom_total_dives_read ; read total number of dives |
231 movf mpr+0,W ; extract low byte | |
232 movwf logbook_max_dive_counter ; copy to logbook_max_dive_counter | |
233 movwf total_num_dives ; copy to total_num_dives, too | |
234 | |
634 | 235 logbook2: |
631 | 236 |
634 | 237 ; display dive headers backwards from latest dive to first dive, |
238 ; stop when - no dive is stored (no valid header found) | |
239 ; - current dive has no valid header (past last dive, < 256 dives) | |
240 ; - 255 dives are reached (logbook display limit) | |
0 | 241 |
582 | 242 incf logbook_temp,F ; increase dive counter |
243 incf logbook_temp,W ; = 0x..FF ? | |
631 | 244 bz logbook_reset ; YES - loop |
0 | 245 |
631 | 246 ; compute index for dive to show / goto previous dive |
247 decf logbook_max_dive_counter,F | |
0 | 248 |
631 | 249 ; copy the first 22 byte of the header from FLASH to memory |
634 | 250 movf logbook_max_dive_counter,W ; hand over header index in WREG |
251 call log_header_addr_by_index ; compute start address of the header | |
252 FLASH_RR_READ header_buffer,.22 ; copy first 22 bytes of header from FLASH to memory | |
631 | 253 |
254 ; check if there is a header | |
255 MOVCC header_buffer+index_header_start,WREG ; read first byte of header | |
256 xorlw 0xFA ; header start code found? | |
257 bnz logbook3b ; NO - abort | |
623 | 258 incf logbook_divenumber,F ; YES - new header found, increase logbook_divenumber |
259 bra logbook4 ; - done with searching, display the header | |
0 | 260 |
261 logbook3b: | |
604 | 262 btfss logbook_page_not_empty ; was there at least one dive? |
631 | 263 bra exit_logbook ; NO - not a single header was found, leave logbook |
264 bra logbook_display_loop2 ; YES - can show something | |
0 | 265 |
266 logbook_reset: | |
604 | 267 tstfsz logbook_divenumber ; was there at least one dive? |
631 | 268 bra logbook_reset2 ; YES - proceed |
269 bra logbook3b ; NO - nothing to do | |
0 | 270 |
271 logbook_reset2: | |
631 | 272 bsf all_dives_shown ; flag all dives are shown |
273 bra logbook_display_loop2 ; check number of dives on page and append navigation | |
0 | 274 |
275 logbook4: | |
631 | 276 btfsc all_dives_shown ; all dives shown? |
277 bra logbook_display_loop2 ; YES - page done | |
634 | 278 call display_listdive ; NO - display dive summery on current list position |
631 | 279 movlw logbook_row_number ; - load max number of lines |
280 cpfseq menu_pos_cur ; - cursor on last line (exit)? | |
623 | 281 bra logbook_display_loop1 ; NO - skip saving of address |
0 | 282 |
582 | 283 ; store all registers required to rebuilt the current logbook page after the detail/profile view |
604 | 284 movff logbook_divenumber,logbook_divenumber_temp ; # of dive in list of the current page |
285 movff logbook_max_dive_counter,logbook_max_dive_counter_temp ; backup counter | |
623 | 286 movff logbook_temp,logbook_temp_backup ; amount of dives drawn until now |
0 | 287 |
288 logbook_display_loop1: | |
631 | 289 decfsz menu_pos_cur,F ; all lines used up? |
290 bra logbook2 ; NO - loop to show another dive | |
0 | 291 logbook_display_loop2: |
631 | 292 btfss logbook_page_not_empty ; YES - was there one dive at all? |
293 bra logbook ; NO - restart from the first page | |
294 ;bra logbook_display_loop3 ; YES - complete page and start HMI | |
0 | 295 |
631 | 296 logbook_display_loop3: |
0 | 297 |
631 | 298 ; print navigation lines |
0 | 299 WIN_LEFT logbook_list_left |
628 | 300 WIN_TOP logbook_row_offset*(logbook_row_number+.0) |
582 | 301 STRCPY_TEXT_PRINT tNextLog ; "Next Page" |
628 | 302 |
0 | 303 WIN_LEFT logbook_list_left |
304 WIN_TOP logbook_row_offset*(logbook_row_number+.1) | |
582 | 305 STRCPY_TEXT_PRINT tExit ; "Exit" |
0 | 306 |
631 | 307 movlw d'1' ; default cursor to position 1 |
308 btfsc return_from_profileview ; returning from a detail/profile view? | |
309 movf logbook_menupos_temp,W ; YES - reload last cursor position | |
310 movwf menu_pos_cur ; set cursor position | |
311 movlw logbook_row_number+.1 ; get menu line where the next page item is | |
312 btfsc keep_cursor_new_page ; do we come from the "next page" line? | |
313 movwf menu_pos_cur ; YES - set cursor to "next line" again | |
0 | 314 |
631 | 315 bcf return_from_profileview ; clear flag for returning from detail/profile view |
316 bcf keep_cursor_new_page ; clear flag for coming from "next page" | |
604 | 317 bcf logbook_page_not_empty ; obviously the current page is NOT empty |
169
dcf3e08f31ac
CHANGE: Improve internal logbook usability
heinrichsweikamp
parents:
168
diff
changeset
|
318 |
604 | 319 call TFT_logbook_cursor ; show the cursor |
0 | 320 |
623 | 321 logbook_loop_pre: |
322 call logbook_preloop_tasks ; clear timeout, some flags and switch on backlight | |
0 | 323 logbook_loop: |
623 | 324 btfsc switch_left ; left button pressed? |
631 | 325 goto next_logbook3 ; YES - move cursor |
326 btfsc switch_right ; NO - right button pressed? | |
327 bra display_profile_or_exit ; YES - view details/profile | |
328 call housekeeping ; NO - handle screen dump request, timeout and entering dive mode | |
329 bra logbook_loop ; - loop waiting for something to do | |
0 | 330 |
331 display_profile_or_exit: | |
631 | 332 movlw logbook_row_number+.2 ; get menu line were the exit item is |
333 cpfseq menu_pos_cur ; cursor on exit line? | |
334 bra display_profile_or_next ; NO - show profile or next page | |
335 ;bra exit_logbook ; YES - exit logbook | |
371 | 336 |
372 | 337 exit_logbook: |
623 | 338 bcf switch_right ; clear pending button events |
339 bcf switch_left ; ... | |
634 | 340 goto main_menu ; jump-back to main menu (in menu_tree.asm) |
0 | 341 |
631 | 342 display_profile_or_next: |
343 movlw logbook_row_number+.1 ; get menu line were the next page item is | |
344 cpfseq menu_pos_cur ; cursor on next page line? | |
345 bra display_profile ; NO - show profile of selected dive | |
346 goto next_logbook2 ; YES - show next page | |
0 | 347 |
634 | 348 |
631 | 349 ;----------------------------------------------------------------------------- |
634 | 350 ; show graphical Dive Profile |
631 | 351 ; |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
352 display_profile: |
623 | 353 bcf bailout_mode ; clear event flag |
354 bcf event_gas_change_gas6 ; clear event flag | |
355 movff menu_pos_cur,logbook_menupos_temp ; store current cursor position | |
582 | 356 bsf return_from_profileview ; tweak search routine to exit after found |
0 | 357 |
631 | 358 ; compute the number of the dive to show |
359 movf logbook_page_number,W ; get page number of page we are on | |
360 mullw logbook_row_number ; multiply with number of dives per page | |
361 movf PRODL,W ; copy low byte to WREG | |
362 addwf menu_pos_cur,W ; add number of selected dive on current page page | |
363 movwf divenumber ; result is the number of the dive to show | |
364 | |
634 | 365 ; copy header from FLASH into memory |
366 call log_header_addr_by_divenumber ; compute header start address from the dive number | |
367 FLASH_RR_READ header_buffer,.256 ; copy complete header from FLASH to memory | |
631 | 368 |
369 ; read the sampling rate | |
370 MOVCC header_buffer+index_samplingrate,sampling_rate | |
371 | |
372 ; --- start drawing the dive profile page --- | |
0 | 373 |
374 display_profile2: | |
634 | 375 call TFT_boot ; initialize display |
376 FONT_COLOR_MEMO ; set font color | |
582 | 377 |
631 | 378 ; show dive number |
604 | 379 call logbook_show_divenumber ; show the dive number in medium font |
0 | 380 |
631 | 381 ; show date |
582 | 382 WIN_SMALL logbook_date_column, logbook_date_row |
631 | 383 MOVTT header_buffer+index_date,mpr ; read date |
634 | 384 call output_date ; print date |
385 PRINT ; dump to screen | |
582 | 386 |
631 | 387 ; show dive mode |
388 WIN_SMALL log_divetime_mins_value_column,logbook_date_row ; align with surrounding data | |
389 MOVCC header_buffer+index_divemode,lo ; read dive type (0=OC, 1=CC, 2=Gauge, 3=Apnea, 4=pSCR) | |
634 | 390 call TFT_print_decotype ; print deco mode (OC, CC, Gauge, Apnea or pSCR) |
623 | 391 ; also sets aux_flag in case the dive was done in a deco mode |
0 | 392 |
631 | 393 ; show time |
582 | 394 WIN_SMALL logbook_time_column, logbook_time_row |
631 | 395 MOVII header_buffer+index_time,mpr ; get time |
396 output_99x ; print hour | |
397 PUTC ':' ; print spacing ":" | |
398 movff hi,lo ; print minute | |
399 output_99x ; ... | |
634 | 400 PRINT ; print buffer as 1st row of details to screen |
0 | 401 |
631 | 402 ; get log format version |
403 MOVCC header_buffer+index_profile_version,lo ; read profile format version | |
634 | 404 movlw b'00111111' ; load mask for external part of the profile version |
405 andwf lo,F ; keep only the external part | |
406 movlw 0x24 ; recorded external version < 0x24 | |
407 cpfslt lo ; ... ? | |
631 | 408 bra log_skip_extra_icon ; YES - skip end of dive icon |
582 | 409 |
631 | 410 ; print end of dive icon |
582 | 411 WIN_SMALL logbook_time_column-.8, logbook_time_row |
631 | 412 STRCPY_PRINT 0x94 |
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
|
413 |
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
|
414 log_skip_extra_icon: |
631 | 415 MOVII header_buffer+index_max_depth,mpr ; get max depth in [mbar] |
416 | |
417 ; compute vertical scale (y-axis) | |
418 MOVII mpr,xA | |
419 MOVLI profile_height_pixels,xB ; number of pixels available for plot | |
604 | 420 call div16x16 ; xC = xA / xB with xA as remainder |
623 | 421 MOVII xC,y_scale ; y-scale (mbar/pixel) |
631 | 422 INCI y_scale ; increase by one to include potential remainder (round up) |
0 | 423 |
631 | 424 ; compute number of pixels per each 10 m |
582 | 425 movlw LOW ((profile_height_pixels+1)*.1000) |
426 movwf xC+0 | |
427 movlw HIGH (((profile_height_pixels+1)*.1000) & h'FFFF') | |
428 movwf xC+1 | |
429 movlw UPPER ((profile_height_pixels+1)*.1000) | |
430 movwf xC+2 | |
431 clrf xC+3 | |
631 | 432 MOVII mpr,xB ; get max. depth in mbar |
433 call div32x16 ; xC:4 = xC:4 / xB:2 with xA as remainder | |
434 MOVII xC,x_scale ; pixels/10m (for scale, draw any xx rows a scale-line) | |
0 | 435 |
631 | 436 ; safeguard scale to become zero |
437 movf x_scale+0,W ; get low byte | |
438 iorwf x_scale+1,W ; ior with high byte | |
439 btfsc STATUS,Z ; x_scale = zero ? | |
440 incf x_scale+1,F ; YES - set to 256 to make "display_profile2e" working | |
582 | 441 |
631 | 442 ; calculate vertical interval |
443 MOVLI .600,xA ; a vertical line every 600 seconds (10 minutes) | |
444 movff sampling_rate,xB+0 ; copy sampling rate to xB, low byte | |
445 clrf xB+1 ; clear xB, high byte | |
446 call div16x16 ; xC=xA/xB with xA as remainder | |
447 MOVII xC,vertical_interval ; vertical_interval:2 holds number of samples between each vertical 10 min lines | |
448 | |
449 ; get total sample time in seconds | |
450 MOVII header_buffer+index_total_seconds,xA | |
0 | 451 |
631 | 452 ; calculate x-scale value |
453 MOVLI profile_width_pixels,xB ; horizontal width of plot area in pixels | |
454 call div16x16 ; xC = xA / xB with xA as remainder: seconds per pixel | |
455 MOVII xC,xA ; copy seconds/pixel to xA | |
456 movff sampling_rate,xB+0 ; divide through sampling rate | |
457 clrf xB+1 ; ... | |
458 call div16x16 ; xC = xA / xB with xA as remainder: samples per pixel | |
459 MOVII xC,profile_temp1 ; store samples/pixel | |
460 INCI profile_temp1 ; increment result by 1 to include potential remainder (round up) | |
461 | |
582 | 462 WIN_SMALL log_max_value_column,log_max_value_row |
0 | 463 |
631 | 464 ; get max depth in [mbar] |
465 MOVII header_buffer+index_max_depth,mpr | |
466 | |
467 ; print depth | |
582 | 468 TSTOSS opt_units ; 0=Meters, 1=Feets |
623 | 469 bra display_profile_offset4_metric ; 0 - do metric |
631 | 470 ;bra display_profile_offset4_imperial ; 1 - do imperial |
471 | |
472 display_profile_offset4_imperial: | |
473 call convert_cm_to_feet ; convert value in mpr from [cm] to [feet] | |
634 | 474 PUTC ' ' ; append a space |
475 output_999 ; print depth (0-999) | |
476 STRCAT_TEXT_PRINT tFeets ; append unit and dump to screen | |
477 bra display_profile_offset4_common ; continue | |
0 | 478 |
479 display_profile_offset4_metric: | |
634 | 480 bsf omit_digit_1 ; do not print 1st digit (no cm) |
481 bsf decimal_digit2 ; place a decimal point in front of digit 2 | |
482 output_65535 ; print depth (0.0x-655.3x) | |
483 STRCAT_TEXT_PRINT tMeters ; append unit and dump to screen | |
484 ;bra display_profile_offset4_common ; continue | |
0 | 485 |
582 | 486 display_profile_offset4_common: |
631 | 487 WIN_SMALL log_divetime_mins_value_column,log_divetime_mins_value_row |
0 | 488 |
631 | 489 ; show dive time minutes : seconds |
490 MOVTT header_buffer+index_divetime,mpr ; get dive time | |
634 | 491 bsf leftbind ; print left-aligned |
492 output_9999 ; print dive time minutes (0-9999) | |
631 | 493 PUTC 'm' ; print "m" (minutes) |
494 movff up,lo ; print dive time seconds | |
495 output_99x ; dive time seconds | |
634 | 496 PUTC_PRINT "s" ; append unit (seconds) and dump buffer to screen |
0 | 497 |
631 | 498 ; get minimum temperature (for later use) |
499 MOVII header_buffer+index_min_temp,logbook_min_tp | |
0 | 500 |
631 | 501 ; print gases |
623 | 502 btfss aux_flag ; dive done in a deco mode? |
503 bra logbook_set_gas_color ; NO - always use gas 1 color (white) then | |
504 | |
631 | 505 ; set pointer to gas 1 type |
506 MOVCC header_buffer+index_gas1+.3,WREG ; read gas type | |
507 decfsz WREG,W ; = 1 (= "First") ? | |
604 | 508 bra logbook_find_first_gas2 ; NO |
623 | 509 logbook_set_gas_color: |
510 movlw .1 ; YES - select white color | |
582 | 511 bra logbook_find_first_gas_done |
631 | 512 |
0 | 513 logbook_find_first_gas2: |
631 | 514 ; set pointer to gas 2 type |
515 MOVCC header_buffer+index_gas2+.3,WREG ; read gas type | |
516 decfsz WREG,W ; = 1 (= "First") ? | |
604 | 517 bra logbook_find_first_gas3 ; NO |
623 | 518 movlw .2 ; YES - select green color |
582 | 519 bra logbook_find_first_gas_done |
631 | 520 |
0 | 521 logbook_find_first_gas3: |
631 | 522 ; set pointer to gas 3 type |
523 MOVCC header_buffer+index_gas3+.3,WREG ; read gas type | |
524 decfsz WREG,W ; = 1 (= "First") ? | |
604 | 525 bra logbook_find_first_gas4 ; NO |
623 | 526 movlw .3 ; YES - select red color |
582 | 527 bra logbook_find_first_gas_done |
631 | 528 |
0 | 529 logbook_find_first_gas4: |
631 | 530 ; set pointer to gas 4 type |
531 MOVCC header_buffer+index_gas4+.3,WREG ; read gas type | |
532 decfsz WREG,W ; = 1 (= "First") ? | |
604 | 533 bra logbook_find_first_gas5 ; NO |
623 | 534 movlw .4 ; YES - select yellow color |
582 | 535 bra logbook_find_first_gas_done |
631 | 536 |
0 | 537 logbook_find_first_gas5: |
631 | 538 ; must be gas 5 then |
539 movlw .5 ; select cyan color | |
540 ;bra logbook_find_first_gas_done | |
541 | |
0 | 542 logbook_find_first_gas_done: |
631 | 543 movwf backup_color1 ; keep copy of color for later restore |
623 | 544 call TFT_color_code_gas ; set color |
0 | 545 |
634 | 546 ; initialize flag for signaling when last sample set was read |
547 bcf end_of_profile | |
548 | |
631 | 549 ; set ext_flash_address to the begin of the profile data |
550 MOVTT header_buffer+index_profile_start_address,ext_flash_address | |
0 | 551 |
634 | 552 ; header start code sequence present? |
553 FLASH_CW_READ_0x20 ; get the 1st byte | |
554 xorlw 0xFA ; 1st byte = header start byte? | |
555 bnz display_profile_no_profile_jump ; NO - no profile data available, abort | |
0 | 556 |
634 | 557 FLASH_CW_READ_0x20 ; get the 2nd byte |
558 xorlw 0xFA ; 2nd byte = header start byte? | |
559 bnz display_profile_no_profile_jump ; NO - no profile data available, abort | |
631 | 560 |
561 ; check if the profile actually belongs to this dive (check done with low bytes only) | |
634 | 562 FLASH_CC_READ_0x20 lo ; read dive number in profile |
631 | 563 incf total_num_dives,W ; WREG = total number of dives + 1 |
604 | 564 bsf STATUS,C ; set borrow |
631 | 565 subfwb divenumber,W ; WREG = total number of dives - number of dive to show - 1 |
566 cpfseq lo ; number of dive in profile = number of dive to show? | |
634 | 567 display_profile_no_profile_jump: |
631 | 568 bra display_profile_no_profile ; NO - no profile data for this dive available |
569 ;bra display_profile_show_profile ; YES - show profile | |
0 | 570 |
631 | 571 display_profile_show_profile: |
0 | 572 |
631 | 573 ; skip high byte of dive number 1 byte |
634 | 574 ; skip second part of header start code 2 byte |
631 | 575 ; skip length of profile data 3 byte |
634 | 576 ; skip sampling rate in profile data 1 byte |
631 | 577 ; skip number of divisors 1 byte |
578 ; ====== | |
579 ; total number of bytes to skip = 8 byte | |
634 | 580 |
581 EXT_FLASH_INC_ADDRESS_0x20 d'8' ; skip next 8 bytes | |
631 | 582 |
583 ; read divisor temp | |
634 | 584 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
585 FLASH_CW_READ_0x20 ; read temperature divisor into WREG | |
631 | 586 movwf divisor_temperature ; store temperature divisor |
587 movwf count_temperature ; store to temperature counter, too | |
588 | |
589 ; read divisor deco | |
634 | 590 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
591 FLASH_CW_READ_0x20 ; read deco divisor into WREG | |
631 | 592 movwf divisor_deco ; store deco divisor |
593 movwf count_deco ; store to deco status counter, too | |
0 | 594 |
631 | 595 ; read divisor GF |
634 | 596 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
597 FLASH_CC_READ_0x20 divisor_gf ; store saturation divisor | |
631 | 598 |
599 ; read divisor ppO2 sensors | |
634 | 600 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
631 | 601 FLASH_CC_READ_0x20 divisor_ppo2_sensors ; store ppO2 divisor |
602 | |
603 ; read divisor deco plan | |
634 | 604 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
631 | 605 FLASH_CC_READ_0x20 divisor_decoplan ; store deco plan divisor |
606 | |
607 ; read divisor CNS | |
634 | 608 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
609 FLASH_CC_READ_0x20 divisor_cns ; store CNS divisor | |
631 | 610 |
611 ; read divisor tank data | |
634 | 612 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip information type and length |
631 | 613 FLASH_CC_READ_0x20 divisor_tank ; store tank pressure divisor |
614 | |
634 | 615 ;---- start drawing the profile ---------------- |
631 | 616 |
617 ; draw a frame around profile area | |
634 | 618 movlw color_deepblue ; select color |
619 WIN_FRAME_COLOR profile_top-1,profile_top+profile_height_pixels+1,profile_left-1,profile_left+profile_width_pixels+1 | |
0 | 620 |
631 | 621 ; draw depth grid |
622 movlw profile_top ; set top position of plot area | |
623 movwf win_top ; ... | |
624 movlw profile_left ; set left position of plot area | |
625 movwf win_leftx2 ; ... | |
626 movlw d'1' ; draw lines of 1 pixel width | |
627 movwf win_height ; ... | |
628 movlw profile_width_pixels+.1 ; set right position of plot area | |
629 movwf win_width+0 ; ... | |
630 clrf win_width+1 ; ... | |
631 bra display_profile2_loline ; do not draw the 0 m line | |
632 display_profile2_loop: | |
634 | 633 BOX ; draw the line |
631 | 634 display_profile2_loline: |
635 movf win_top,W ; get last row drawn | |
636 addwf x_scale+0,W ; add line interval distance, low byte | |
637 tstfsz x_scale+1 ; interval distance > 255 ? | |
638 movlw d'255' ; YES - would make win_top > 239 -> prepare abort | |
639 btfsc STATUS,C ; did the add produce a carry? | |
640 movlw d'255' ; YES - would make win_top > 239 -> prepare abort | |
641 movwf win_top ; write position of next line back to win_top | |
642 movlw profile_top+profile_height_pixels+.1 ; get limit for last line | |
643 cpfsgt win_top ; line to draw beyond limit? | |
644 bra display_profile2_loop ; NO - draw the line | |
0 | 645 |
631 | 646 ; do various initializations for drawing the curves |
634 | 647 clrf ul ; clear counter for depth readings |
648 movlw profile_width_pixels+profile_left-.1 ; load loop counter | |
649 movwf ex ; ... | |
372 | 650 |
582 | 651 movlw profile_left+.1 |
623 | 652 movwf logbook_pixel_x_pos ; here: used as column x2 (start at column 5) |
372 | 653 |
604 | 654 movlw profile_top+.1 ; zero-m row |
582 | 655 movwf fill_between_rows |
631 | 656 movwf logbook_last_tp ; initialize for temperature curve, too |
582 | 657 |
631 | 658 movlw LOW(-.100) ; initialize max temperature to -10.0 °C |
634 | 659 movwf logbook_max_tp+0 ; ... |
660 movlw HIGH 0xFFFF & (-.100) ; ... | |
661 movwf logbook_max_tp+1 ; ... | |
0 | 662 |
631 | 663 setf logbook_cur_tp+0 ; initialize temperature to 0xFFFF = 'no data' |
664 setf logbook_cur_tp+1 ; ... | |
665 clrf logbook_last_tp ; also reset previous Y for temperature | |
629 | 666 clrf logbook_ceiling ; ceiling = 0, correct value for no ceiling |
582 | 667 movlw profile_top+.1 |
623 | 668 movwf logbook_min_temp_pos ; initialize for displaying the lowest temperature |
582 | 669 movlw profile_top+profile_height_pixels |
604 | 670 movwf logbook_max_temp_pos ; initialize for displaying the highest temperature |
0 | 671 |
582 | 672 movlw profile_left |
673 movwf win_leftx2 | |
674 movlw profile_top | |
675 movwf win_top | |
676 movlw profile_height_pixels | |
677 movwf win_height | |
678 movlw LOW (profile_width_pixels*.2) | |
679 movwf win_width+0 | |
680 movlw HIGH (profile_width_pixels*.2) | |
681 movwf win_width+1 | |
682 call TFT_box_write ; open box for d1 | |
371 | 683 |
582 | 684 ; INIT_PIXEL_WRITE logbook_pixel_x_pos ; pixel x2 (also sets standard color!) |
0 | 685 |
634 | 686 ;---- start profile plotting loop -------------- |
687 | |
631 | 688 CLRI logbook_sample_counter ; clear counter for amount of samples read so far |
689 | |
0 | 690 profile_display_loop: |
631 | 691 ; initialize pixel write |
582 | 692 movf logbook_pixel_x_pos,W |
693 mullw 2 | |
694 call pixel_write_col320 | |
695 | |
623 | 696 MOVII profile_temp1,profile_temp2 ; 16 bit x-scaler |
697 | |
582 | 698 incf profile_temp2+1,F |
623 | 699 tstfsz profile_temp2+0 ; must not be zero, is zero? |
700 bra profile_display_loop2 ; NO - ok | |
701 incf profile_temp2+0,F ; YES - increase by 1 | |
0 | 702 |
703 profile_display_loop2: | |
631 | 704 rcall profile_view_get_depth ; read one set of depth, temp and event data |
705 btfsc end_of_profile ; end of profile data reached? | |
604 | 706 bra profile_display_loop_done ; YES - skip all remaining pixels |
0 | 707 |
634 | 708 ;---- draw ceiling curve, if any --------------- |
631 | 709 |
710 movf divisor_deco,W ; get divisor, deco data logged? | |
711 bz profile_display_skip_deco ; NO - skip | |
0 | 712 |
604 | 713 movf logbook_ceiling,W ; any deco ceiling? |
631 | 714 bz profile_display_skip_deco ; NO - skip |
0 | 715 |
604 | 716 mullw .100 ; YES - convert to mbar |
631 | 717 MOVII PROD, sub_a ; - ceiling depth |
718 MOVII logbook_cur_depth+0,sub_b ; - current depth | |
719 call cmpU16 ; - compute ceiling - current depth | |
720 movlw color_dark_green ; - dark green if ok | |
721 btfss neg_flag ; - current depth > ceiling ? | |
722 movlw color_dark_red ; NO - dark red because ceiling is violated | |
723 call TFT_set_color ; - set color | |
724 MOVII PROD,xA ; - divide pressure in mbar/pixel for row offset | |
725 MOVII y_scale,xB ; - ... | |
726 call div16x16 ; - xC = xA / xB with xA as remainder | |
727 movlw profile_top+.1 ; - start right after the top line | |
728 movwf win_top ; - ... | |
729 movff logbook_pixel_x_pos,win_leftx2 ; - set left border (0-159) | |
730 movff xC+0,win_height ; - set hight | |
731 call half_vertical_line ; - color the area | |
0 | 732 |
733 profile_display_skip_deco: | |
631 | 734 |
634 | 735 ;---- draw temperature curve, if any ----------- |
631 | 736 |
737 movf divisor_temperature,W ; get divisor, deco data logged? | |
738 bz profile_display_skip_temp ; NO - skip | |
0 | 739 |
631 | 740 movf logbook_cur_tp+0,W ; did we had a valid temperature record already (0xFF = 'no data')? |
741 andwf logbook_cur_tp+1,W ; ... | |
742 incf WREG ; ... | |
743 bz profile_display_skip_temp ; NO - skip drawing | |
0 | 744 |
631 | 745 ; fixed temperature scale: (-2 .. +35°C * scale256 ) / 153 pixel |
746 movlw LOW (((profile_height_pixels-.10)*.256)/.370) | |
582 | 747 movwf xB+0 |
748 movlw HIGH (((profile_height_pixels-.10)*.256)/.370) | |
749 movwf xB+1 | |
0 | 750 |
631 | 751 movf logbook_cur_tp+0,W ; current temperature - (-2.0°C) == temperature + 20 |
604 | 752 addlw LOW(.20) ; low byte |
582 | 753 movwf xA+0 |
754 movf logbook_cur_tp+1,W | |
604 | 755 btfsc STATUS,C ; propagate carry, if any |
582 | 756 incf WREG |
757 movwf xA+1 | |
758 call mult16x16 ; xA*xB=xC | |
0 | 759 |
631 | 760 ; scale: divide by 256 -> just take the high byte |
582 | 761 movf xC+1,W |
604 | 762 sublw profile_top+profile_height_pixels-.10 ; upside-down: Y = .75 + (.153 - result) |
582 | 763 movwf xC+0 |
0 | 764 |
629 | 765 ; check limits |
582 | 766 movlw profile_top+.1 |
767 movwf xC+1 | |
768 cpfsgt xC+0 | |
769 movff xC+1,xC+0 | |
0 | 770 |
629 | 771 movlw color_orange ; select color for temperature curve |
634 | 772 call TFT_set_color ; set color |
0 | 773 |
604 | 774 movf logbook_last_tp,W ; do we have a valid previous value? |
631 | 775 bz profile_display_temp_1 ; NO - skip the vertical line |
776 movwf xC+1 ; YES - set end position | |
777 call profile_display_fill ; - draw in this column between this row (xC+0) and the last row (xC+1) | |
778 | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
779 profile_display_temp_1: |
631 | 780 movf xC+0,W ; get position |
781 cpfsgt logbook_min_temp_pos ; > min limit? | |
782 movwf logbook_min_temp_pos ; NO - set to lowest position for the temp graph | |
783 cpfslt logbook_max_temp_pos ; < max limit? | |
784 movwf logbook_max_temp_pos ; NO - set to highest position for the temp graph | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
785 |
631 | 786 movff xC+0,logbook_last_tp ; set col (0..159) x row (0..239) |
787 PIXEL_WRITE logbook_pixel_x_pos,xC+0 ; draw a pixel | |
0 | 788 |
789 profile_display_skip_temp: | |
631 | 790 |
634 | 791 ;---- draw depth curve ------------------------- |
582 | 792 |
631 | 793 MOVII y_scale, xB ; divide pressure in mbar/pixel for row offset |
794 MOVII logbook_cur_depth,xA ; get current depth | |
795 call div16x16 ; xC = xA / xB with xA as remainder | |
796 movlw profile_top+.1 ; get offset | |
797 addwf xC+0,F ; add offset | |
798 btfsc STATUS,C ; profile error? | |
799 movff fill_between_rows,xC+0 ; YES - ignore | |
0 | 800 |
631 | 801 movf backup_color1,W ; copy gas number to WREG for color-coding |
634 | 802 call TFT_color_code_gas ; get color for gas |
803 call TFT_set_color ; set drawing color | |
0 | 804 |
631 | 805 movff fill_between_rows,xC+1 ; set position |
604 | 806 call profile_display_fill ; in this column between this row (xC+0) and the last row (xC+1) |
807 movff xC+0,fill_between_rows ; store last row for fill routine | |
0 | 808 |
631 | 809 PIXEL_WRITE logbook_pixel_x_pos,xC+0 ; draw a pixel |
810 incf logbook_pixel_x_pos,F ; advance to next column | |
811 | |
634 | 812 ;---- draw marker square, if any --------------- |
0 | 813 |
604 | 814 btfss log_marker_found ; any marker to draw? |
631 | 815 bra profile_display_skip_marker ; NO - skip |
816 bcf log_marker_found ; YES - clear flag | |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
817 |
631 | 818 ; set position |
582 | 819 incf fill_between_rows,W ; increase row (Y) |
820 movwf win_top | |
631 | 821 |
582 | 822 ; limit win_top to 220 |
823 movlw .220 | |
824 cpfslt win_top | |
825 movwf win_top | |
826 decf logbook_pixel_x_pos,W ; decrease column (X) | |
827 movwf win_leftx2 | |
631 | 828 |
582 | 829 ; limit win_leftx2 to 151 |
830 movlw .151 | |
831 cpfslt win_leftx2 | |
832 movwf win_leftx2 | |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
833 |
631 | 834 ; print marker |
634 | 835 FONT_COLOR color_orange ; set font color |
836 FONT_SIZE FT_TINY ; set font size | |
837 INIT_BUFFER ; initialize output buffer | |
838 STRCPY_PRINT "m" ; print a "m" (marker) | |
582 | 839 |
840 movlw profile_left | |
841 movwf win_leftx2 | |
842 movlw profile_top | |
843 movwf win_top | |
844 movlw profile_height_pixels | |
845 movwf win_height | |
846 movlw LOW (profile_width_pixels*.2) | |
847 movwf win_width+0 | |
848 movlw HIGH (profile_width_pixels*.2) | |
849 movwf win_width+1 | |
850 call TFT_box_write ; re-open box for d1 | |
402
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
851 |
a3a0f1fd7fc4
NEW: Logbook shows markers with small orange boxes in the profile
heinrichsweikamp
parents:
392
diff
changeset
|
852 profile_display_skip_marker: |
631 | 853 |
634 | 854 ;---- draw CNS curve, if any ------------------- |
631 | 855 |
856 movf divisor_cns,W ; get divisor, CNS logged? | |
857 bz profile_display_skip_cns ; NO - skip | |
582 | 858 ; |
604 | 859 ; add further code here... |
582 | 860 ; |
631 | 861 |
0 | 862 profile_display_skip_cns: |
863 | |
634 | 864 ;---- draw saturation curve, if any ------------ |
631 | 865 |
866 movf divisor_gf,W ; get divisor, saturation logged? | |
867 bz profile_display_skip_gf ; NO - skip | |
582 | 868 ; |
604 | 869 ; add further code here... |
582 | 870 ; |
631 | 871 |
0 | 872 profile_display_skip_gf: |
873 | |
634 | 874 ;---- all curves done -------------------------- |
0 | 875 |
631 | 876 profile_display_skip_loop1: |
877 dcfsnz profile_temp2+0,F ; decrement low byte of x-scaler, became zero? | |
878 bra profile_display_loop3 ; YES - decrement high byte | |
879 rcall profile_view_get_depth ; NO - read next depth, temp and profile data set | |
880 btfsc end_of_profile ; - end-of profile reached? | |
881 bra profile_display_loop_done ; YES - skip all remaining pixels | |
882 bra profile_display_skip_loop1 ; NO - continue | |
0 | 883 |
631 | 884 profile_display_loop3: |
885 decfsz profile_temp2+1,F ; decrement high byte of x-scaler, became zero? | |
886 bra profile_display_skip_loop1 ; NO - continue | |
634 | 887 decfsz ex,F ; YES - count drown x-pixels to zero, became zero? |
631 | 888 bra profile_display_loop ; NO - draw next sample |
889 bra profile_display_loop_done ; YES - done | |
0 | 890 |
891 profile_display_loop_done: | |
623 | 892 btfss bailout_mode ; bailout during the dive? |
631 | 893 bra profile_display_gas6 ; NO - skip next |
634 | 894 FONT_COLOR color_pink ; YES - select pink color |
895 WIN_TINY logbook_bailout_column,logbook_bailout_row; - select font and position | |
896 STRCPY_TEXT_PRINT tDiveBailout ; - print "Bailout" and dump to screen | |
631 | 897 |
898 profile_display_gas6: | |
623 | 899 btfss event_gas_change_gas6 ; did a change to gas 6 occurred? |
631 | 900 bra profile_display_temperatures ; NO - skip next |
634 | 901 FONT_COLOR color_pink ; YES - select color |
582 | 902 WIN_TINY logbook_bailout_column,logbook_bailout_row-.15 |
623 | 903 STRCPY_TEXT tGas ; - print "Gas" |
634 | 904 STRCAT_PRINT " 6!" ; - append " 6!" and dump to screen |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
905 |
631 | 906 profile_display_temperatures: |
907 movff logbook_min_temp_pos,win_top ; get Y position at lowest temperature | |
908 movff logbook_pixel_x_pos,win_leftx2 ; get X ... | |
909 movlw .130 ; left border limit | |
910 cpfslt win_leftx2 ; too far to the left? | |
911 movwf win_leftx2 ; YES - set to limit | |
634 | 912 FONT_SIZE FT_TINY ; set font size |
913 FONT_COLOR color_yellow ; set font color | |
0 | 914 |
631 | 915 MOVII logbook_min_tp,mpr ; get min temperature |
0 | 916 |
582 | 917 TSTOSS opt_units ; 0=°C, 1=°F |
623 | 918 bra logbook_show_temp_metric ; 0 - do Celsius |
631 | 919 ;bra logbook_show_temp_imperial ; 1 - do Fahrenheit |
920 | |
921 logbook_show_temp_imperial: | |
922 ; min temperature | |
634 | 923 rcall logbook_show_temp_imperial_out ; print temperature |
631 | 924 ; max temperature |
634 | 925 movlw .15 ; set position |
926 subwf logbook_max_temp_pos,W ; ... | |
631 | 927 movwf win_top ; Y position at max temperature |
634 | 928 MOVII logbook_max_tp,mpr ; get max temperature |
929 rcall logbook_show_temp_imperial_out ; print temperature | |
930 bra logbook_show_gases ; continue | |
0 | 931 |
932 logbook_show_temp_metric: | |
631 | 933 ; min temperature |
634 | 934 rcall logbook_show_temp_metric_out ; print temperature |
631 | 935 ; max temperature |
634 | 936 movlw .15 ; set position |
937 subwf logbook_max_temp_pos,W ; ... | |
604 | 938 movwf win_top ; Y position at max temperature |
634 | 939 MOVII logbook_max_tp,mpr ; get max temperature |
940 rcall logbook_show_temp_metric_out ; print temperature | |
941 bra logbook_show_gases ; continue | |
942 | |
943 logbook_show_temp_imperial_out: | |
944 INIT_BUFFER ; initialize output buffer | |
945 call convert_celsius_to_fahrenheit ; convert value in lo:hi from Celsius to Fahrenheit | |
946 bsf leftbind ; print left-aligned | |
947 bsf omit_digit_1 ; full degrees only | |
948 output_9999 ; print temperature (0x-999x) | |
949 STRCAT_TEXT_PRINT tLogTunitF ; add unit and dump to screen | |
950 return ; done | |
951 | |
952 logbook_show_temp_metric_out: | |
953 INIT_BUFFER ; initialize output buffer | |
954 call convert_signed_16bit ; convert lo:hi into unsigned-short and add '-' to POSTINC2 if required | |
955 bsf leftbind ; print left-aligned | |
956 bsf decimal_digit1 ; place a decimal point in front of the 1st digit | |
957 output_999 ; print temperature (0.0-99.9) | |
958 STRCAT_TEXT_PRINT tLogTunitC ; add unit and dump to screen | |
959 return ; done | |
0 | 960 |
631 | 961 |
962 display_profile_no_profile: | |
634 | 963 ; print "no profile anymore..." message |
631 | 964 WIN_SMALL .4,.110 ; set text size and position |
634 | 965 FONT_COLOR_DISABLED ; use the color for disabled things |
631 | 966 STRCPY_TEXT_PRINT tNoProfileData ; print message |
967 | |
968 logbook_show_gases: | |
634 | 969 FONT_COLOR_MEMO ; back to standard color |
623 | 970 btfss aux_flag ; dive done in a deco mode? |
631 | 971 bra logbook_show_gases_done ; NO - don't show gases |
623 | 972 |
973 ; show gases | |
634 | 974 lfsr FSR0,header_buffer+index_gas1 ; load base address of the gases |
582 | 975 bsf log_show_gas_short ; do the short version of log_show_gas |
0 | 976 |
582 | 977 WIN_TINY log_gas_column1, log_gas_row |
604 | 978 movlw .1 ; color for gas 1 |
582 | 979 call log_show_gas |
0 | 980 |
582 | 981 WIN_TINY log_gas_column2, log_gas_row |
604 | 982 movlw .2 ; color for gas 2 |
582 | 983 call log_show_gas |
0 | 984 |
582 | 985 WIN_TINY log_gas_column3, log_gas_row |
604 | 986 movlw .3 ; color for gas 3 |
582 | 987 call log_show_gas |
0 | 988 |
582 | 989 WIN_TINY log_gas_column4, log_gas_row |
604 | 990 movlw .4 ; color for gas 4 |
582 | 991 call log_show_gas |
0 | 992 |
582 | 993 WIN_TINY log_gas_column5, log_gas_row |
604 | 994 movlw .5 ; color for gas 5 |
582 | 995 call log_show_gas |
996 | |
623 | 997 logbook_show_gases_done: |
998 rcall logbook_preloop_tasks ; clear timeout, some flags and set to Speed_eco | |
999 display_profile_loop: | |
1000 btfsc switch_right ; right button pressed? | |
631 | 1001 bra logbook_page1 ; YES - show more information |
1002 btfsc switch_left ; NO - left button pressed? | |
1003 bra exit_profileview ; YES - back to list | |
1004 call housekeeping ; NO - handle screen dump request, timeout and entering dive mode | |
1005 bra display_profile_loop ; - loop waiting for something to do | |
1006 | |
0 | 1007 |
634 | 1008 ;----------------------------------------------------------------------------- |
1009 ; Helper Function - draw a vertical line between xC+1 and xC+0 at current X position | |
0 | 1010 ; |
1011 ; Note: should keep xC+0 | |
1012 ; Note: ascending or descending ! | |
1013 ; | |
1014 profile_display_fill: | |
582 | 1015 ; First, check if xC+0 > fill_between_rows or xC+0 < aponoe_mins |
0 | 1016 movf xC+0,W |
623 | 1017 cpfseq xC+1 ; xC+0 = apnoe_mins ? |
604 | 1018 bra profile_display_fill2 ; NO |
0 | 1019 return |
1020 | |
604 | 1021 profile_display_fill2: |
623 | 1022 ; Make sure to init X position |
582 | 1023 movf logbook_pixel_x_pos,W |
1024 mullw 2 | |
1025 decf PRODL,F | |
1026 movlw 0 | |
1027 subwfb PRODH,F | |
1028 call pixel_write_col320 | |
0 | 1029 |
1030 movf xC+0,W | |
604 | 1031 cpfsgt xC+1 ; fill_between_rows > xC+0 ? |
1032 bra profile_display_fill_up ; YES | |
0 | 1033 |
604 | 1034 profile_display_fill_down2: ; loop |
560 | 1035 decf xC+1,F |
0 | 1036 |
604 | 1037 HALF_PIXEL_WRITE xC+1 ; updates just row (0..239) |
0 | 1038 |
560 | 1039 movf xC+0,W |
604 | 1040 cpfseq xC+1 ; loop until xC+1 = xC+0 |
560 | 1041 bra profile_display_fill_down2 |
582 | 1042 return ; fill_between_rows and xC+0 are untouched |
0 | 1043 |
604 | 1044 profile_display_fill_up: ; fill upwards from xC+0 to apone_mins! |
560 | 1045 incf xC+1,F |
0 | 1046 |
604 | 1047 HALF_PIXEL_WRITE xC+1 ; updates just row (0..239) |
0 | 1048 |
560 | 1049 movf xC+0,W |
604 | 1050 cpfseq xC+1 ; loop until xC+1 = fill_between_rows |
560 | 1051 bra profile_display_fill_up |
582 | 1052 return ; fill_between_rows and xC+0 are untouched |
0 | 1053 |
1054 | |
634 | 1055 ;----------------------------------------------------------------------------- |
1056 ; read next Profile Data Set and plot Depth and Temperature | |
1057 ; | |
0 | 1058 profile_view_get_depth: |
623 | 1059 INCI logbook_sample_counter ; count read pixels |
0 | 1060 |
582 | 1061 movf logbook_sample_counter+0,W |
1062 cpfseq vertical_interval+0 | |
1063 bra profile_view_get_depth_no_line ; no need to draw a 10min line, continue | |
1064 movf logbook_sample_counter+1,W | |
1065 cpfseq vertical_interval+1 | |
1066 bra profile_view_get_depth_no_line ; no need to draw a 10min line, continue | |
634 | 1067 |
1068 ;---- 10 min vertical line --------------------- | |
0 | 1069 |
634 | 1070 CLRI logbook_sample_counter ; clear counting registers for next line |
1071 movlw color_deepblue ; select color | |
1072 call TFT_set_color ; set color | |
1073 movlw profile_top+.1 ; set top position | |
1074 movwf win_top ; ... | |
582 | 1075 incf logbook_pixel_x_pos,W ; draw one line to right to make sure it's the background of the profile |
604 | 1076 movwf win_leftx2 ; left border (0-159) |
582 | 1077 movlw profile_height_pixels |
1078 movwf win_height | |
1079 movlw profile_height_pixels | |
604 | 1080 movwf win_width ; "window" height |
1081 call half_horizontal_line ; inputs: win_top, win_leftx2, win_width, win_color1, win_color2 | |
0 | 1082 |
1083 profile_view_get_depth_no_line: | |
634 | 1084 FLASH_II_READ_0x20 logbook_cur_depth ; read depth (2 bytes) |
1085 FLASH_CC_READ_0x20 ul ; read Profile Flag Byte | |
0 | 1086 |
623 | 1087 bcf event_occured ; clear flag by default |
634 | 1088 btfsc ul,7 ; event recorded? |
623 | 1089 bsf event_occured ; YES - we also have an event byte |
634 | 1090 bcf ul,7 ; clear event byte flag (if any) |
631 | 1091 |
634 | 1092 ; ul now holds the number of additional bytes to ignore (0-127) |
631 | 1093 |
634 | 1094 ;---- check for end of profile ----------------- |
631 | 1095 movlw 0xFD ; load token for end of profile data |
1096 cpfseq logbook_cur_depth+0 ; end of profile token in 1st depth byte? | |
1097 bra profile_view_get_depth_new1 ; NO - profile continues | |
1098 cpfseq logbook_cur_depth+1 ; YES - end of profile token in 2nd depth byte? | |
1099 bra profile_view_get_depth_new1 ; NO - profile continues | |
1100 bsf end_of_profile ; YES - end of profile, set flag to skip remaining pixels | |
1101 return ; - done | |
0 | 1102 |
1103 profile_view_get_depth_new1: | |
604 | 1104 btfsc event_occured ; was there an event attached to this sample? |
1105 rcall profile_view_get_depth_events ; YES - get information about this event(s) | |
582 | 1106 |
634 | 1107 ;---- temperature ------------------------------ |
1108 | |
631 | 1109 movf divisor_temperature,W ; is temperature divisor null ? |
1110 bz profile_view_get_depth_no_tp ; YES - no temperature curve | |
1111 decf count_temperature,F ; NO - decrement temperature counter, counter zero now? | |
1112 bnz profile_view_get_depth_no_tp ; NO - no temperature this time | |
634 | 1113 FLASH_II_READ_0x20 logbook_cur_tp ; YES - read temperature (2 bytes) |
1114 decf ul,F ; - reduce counter twice | |
1115 decf ul,F ; - ... | |
631 | 1116 movff divisor_temperature,count_temperature ; - restart counter |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1117 |
631 | 1118 ; compute max temperature on the fly... |
1119 MOVII logbook_cur_tp,sub_a ; copy current temperature to sub_a | |
1120 MOVII logbook_max_tp,sub_b ; copy maximum temperature to sub_b | |
1121 call sub16 ; SIGNED sub_a - sub_b | |
1122 btfsc neg_flag ; current temperature > maximum temperature ? | |
1123 bra profile_view_get_depth_no_tp ; NO - no new max temperature | |
582 | 1124 |
631 | 1125 ; store new max. temperature, but only if below dive_threshold_norm_alt_start |
1126 tstfsz logbook_cur_depth+1 ; deeper than 2.55 m ? | |
604 | 1127 bra profile_view_compute_max_temp ; YES - include in max. temp measurement |
623 | 1128 movlw dive_threshold_norm_alt_start+0 ; get start-of-dive depth in mbar / cm, low byte |
1129 cpfsgt logbook_cur_depth+0 ; deeper that start-of-dive threshold? | |
631 | 1130 bra profile_view_get_depth_no_tp ; NO - ignore current temperature |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1131 |
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
124
diff
changeset
|
1132 profile_view_compute_max_temp: |
631 | 1133 MOVII logbook_cur_tp,logbook_max_tp ; store new max temperature |
582 | 1134 |
0 | 1135 profile_view_get_depth_no_tp: |
634 | 1136 |
1137 ;---- deco ceiling ----------------------------- | |
1138 | |
582 | 1139 movf divisor_deco,W |
1140 bz profile_view_get_depth_no_deco | |
1141 decf count_deco,F | |
1142 bnz profile_view_get_depth_no_deco | |
0 | 1143 |
634 | 1144 FLASH_CC_READ_0x20 logbook_ceiling ; read the ceiling |
1145 decf ul,F ; reduce the counter | |
604 | 1146 movff divisor_deco,count_deco ; restart counter |
634 | 1147 EXT_FLASH_INC_ADDRESS_0x20 d'1' ; skip the stop duration |
1148 decf ul,F ; reduce the counter | |
631 | 1149 |
0 | 1150 profile_view_get_depth_no_deco: |
631 | 1151 ; then skip remaining bytes... |
634 | 1152 movf ul,W ; get number of additional bytes to ignore (0-127) |
631 | 1153 tstfsz WREG ; anything to skip? |
634 | 1154 call ext_flash_inc_address_0x20_exec ; YES - skip #WREG bytes |
1155 return ; done | |
1156 | |
0 | 1157 |
634 | 1158 ;----------------------------------------------------------------------------- |
1159 ; get Information about Event(s) | |
1160 ; | |
168
1784ab9362ca
BUGFIX: False max. temp in Logbook, false Bailout and Gas 6 flags in logbook
heinrichsweikamp
parents:
167
diff
changeset
|
1161 profile_view_get_depth_events: |
623 | 1162 clrf event_byte2 ; clear event byte 2 |
634 | 1163 FLASH_CC_READ_0x20 event_byte1 ; read event byte 1 |
1164 decf ul,F ; reduce counter | |
98 | 1165 |
623 | 1166 btfss event_byte1,7 ; another event byte? |
631 | 1167 bra profile_no_second_eventbyte ; NO - skip next |
634 | 1168 FLASH_CC_READ_0x20 event_byte2 ; YES - read event byte 2 |
1169 decf ul,F ; - reduce counter | |
631 | 1170 bcf event_byte1,7 ; - clear flag |
98 | 1171 |
1172 profile_no_second_eventbyte: | |
582 | 1173 ; Check event flags in the EventBytes |
623 | 1174 btfsc event_byte1,4 ; manual gas changed? |
604 | 1175 rcall logbook_event1 ; YES |
623 | 1176 btfsc event_byte1,5 ; stored gas changed? |
604 | 1177 rcall logbook_event4 ; YES |
623 | 1178 btfsc event_byte1,6 ; setpoint change? |
604 | 1179 rcall logbook_event3 ; YES |
623 | 1180 btfsc event_byte2,0 ; bailout? |
604 | 1181 rcall logbook_event2 ; YES |
623 | 1182 ; any alarm? |
1183 bcf event_byte1,4 ; clear bits already tested | |
634 | 1184 bcf event_byte1,5 ; ... |
1185 bcf event_byte1,6 ; ... | |
623 | 1186 movlw .6 ; coding for manual marker |
1187 cpfseq event_byte1 ; manual marker set? | |
1188 return ; NO - done | |
1189 bsf log_marker_found ; YES - draw small yellow rectangle here | |
1190 return ; - done | |
163
4d71549dcf6c
clarify diluent change in the documentation
heinrichsweikamp
parents:
162
diff
changeset
|
1191 |
604 | 1192 logbook_event4: ; stored gas changed |
634 | 1193 FLASH_CC_READ_0x20 backup_color1 ; read gas number, to be used as color index |
1194 decf ul,F ; reduce counter | |
631 | 1195 call TFT_color_code_gas ; change profile color according to gas number (still in WREG) |
634 | 1196 return ; done |
0 | 1197 |
604 | 1198 logbook_event1: ; gas 6 used |
623 | 1199 bsf event_gas_change_gas6 ; set event flag |
1200 movlw .6 ; use gas 6 color | |
1201 movwf backup_color1 ; select color for gas 6 | |
582 | 1202 call TFT_color_code_gas ; set profile color |
634 | 1203 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip two bytes |
1204 decf ul,F ; reduce counter | |
1205 decf ul,F ; reduce counter | |
1206 return ; done | |
0 | 1207 |
604 | 1208 logbook_event2: ; bailout |
623 | 1209 bsf bailout_mode ; set flag |
604 | 1210 movff backup_color1,backup_color2 ; backup last gas color in case we return to CCR |
1211 movlw .6 ; use Gas6 color | |
582 | 1212 movwf backup_color1 |
623 | 1213 call TFT_color_code_gas ; use gas 6 color |
634 | 1214 EXT_FLASH_INC_ADDRESS_0x20 d'2' ; skip two bytes |
1215 decf ul,F ; reduce counter | |
1216 decf ul,F ; reduce counter | |
1217 return ; done | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1218 |
604 | 1219 logbook_event3: ; setpoint change |
634 | 1220 EXT_FLASH_INC_ADDRESS_0x20 d'1' ; skip one byte |
1221 decf ul,F ; reduce counter | |
623 | 1222 btfss bailout_mode ; in bailout? |
631 | 1223 return ; NO - done |
1224 movff backup_color2,backup_color1 ; YES - restore color | |
1225 movf backup_color2,W ; - copy gas number to WREG for color-coding | |
1226 call TFT_color_code_gas ; - back to normal profile color | |
1227 return ; - done | |
99
87cc1adfe4da
show event "bailout" in the internal logbook
heinrichsweikamp
parents:
98
diff
changeset
|
1228 |
604 | 1229 |
634 | 1230 ;----------------------------------------------------------------------------- |
1231 ; Helper Function - return to Dive List | |
1232 ; | |
0 | 1233 exit_profileview: |
634 | 1234 clrf ul ; restore all registers to build same page again |
582 | 1235 movff logbook_divenumber_temp,logbook_divenumber |
1236 movff logbook_max_dive_counter_temp,logbook_max_dive_counter | |
1237 movff logbook_temp_backup,logbook_temp | |
1238 incf logbook_max_dive_counter,F | |
1239 decf logbook_divenumber,F | |
1240 bcf all_dives_shown | |
631 | 1241 clrf menu_pos_max ; number of rows used on current logbook-page |
582 | 1242 movlw logbook_row_number |
623 | 1243 movwf menu_pos_cur ; here: active row on current page |
582 | 1244 call TFT_boot |
634 | 1245 goto logbook2 ; display dive headers |
1246 | |
0 | 1247 |
634 | 1248 ;----------------------------------------------------------------------------- |
1249 ; Helper Function - show next Page | |
1250 ; | |
0 | 1251 next_logbook2: |
623 | 1252 btfsc all_dives_shown ; all shown? |
1253 goto logbook ; YES | |
1254 clrf menu_pos_max ; number of used rows on current logbook-page | |
582 | 1255 movlw logbook_row_number |
623 | 1256 movwf menu_pos_cur |
582 | 1257 incf logbook_page_number,F ; start new screen |
604 | 1258 bsf keep_cursor_new_page ; keep cursor on "next page" |
582 | 1259 call TFT_boot |
634 | 1260 goto logbook2 ; display dive headers |
1261 | |
0 | 1262 |
634 | 1263 ;----------------------------------------------------------------------------- |
1264 ; Helper Function - move Cursor | |
1265 ; | |
0 | 1266 next_logbook3: |
631 | 1267 incf menu_pos_cur,F ; set cursor to next line |
1268 movlw logbook_row_number+.2 ; get maximum number of lines | |
1269 cpfsgt menu_pos_cur ; cursor position beyond last line? | |
634 | 1270 bra next_logbook3a ; NO - ok, done |
631 | 1271 movlw .1 ; YES - reset to first line |
1272 movwf menu_pos_cur ; - ... | |
1273 bra next_logbook3b ; - done | |
0 | 1274 |
1275 next_logbook3a: | |
623 | 1276 incf menu_pos_max,W ; last entry on current page +1 |
1277 cpfseq menu_pos_cur ; same as cursor position? | |
604 | 1278 bra next_logbook3b ; NO |
623 | 1279 movlw logbook_row_number+.1 ; YES - ... |
1280 movwf menu_pos_cur ; - ... jump directly to "next page" if page is not full | |
0 | 1281 |
582 | 1282 movlw logbook_row_number |
623 | 1283 cpfseq menu_pos_max ; last dive was row logbook_row_number? |
604 | 1284 bsf all_dives_shown ; NO - set flag to load first page again (full reset) |
0 | 1285 |
1286 next_logbook3b: | |
634 | 1287 call TFT_logbook_cursor ; show the cursor |
1288 goto logbook_loop_pre ; serve HMI | |
0 | 1289 |
634 | 1290 |
1291 ;----------------------------------------------------------------------------- | |
1292 ; Helper Function - display Dive Summery | |
631 | 1293 ; |
0 | 1294 display_listdive: |
631 | 1295 bsf logbook_page_not_empty ; flag page will not be empty |
1296 incf menu_pos_max,F ; increment number of lines shown | |
0 | 1297 |
634 | 1298 FONT_SIZE FT_SMALL ; set font size |
1299 FONT_COLOR_MEMO ; set font color | |
631 | 1300 WIN_LEFT logbook_list_left ; set horizontal output position |
1301 decf menu_pos_max,W ; get current line -1 into WREG | |
1302 mullw logbook_row_offset ; multiply with row spacing | |
1303 movff PRODL,win_top ; set vertical output position | |
634 | 1304 INIT_BUFFER ; initialize output buffer |
392
32780516c8c6
NEW: Show actual dive count in logbook list view (If <1000)
heinrichsweikamp
parents:
389
diff
changeset
|
1305 |
631 | 1306 ; print dive number |
1307 movf logbook_divenumber,W ; get running number of the dive | |
1308 call log_compute_divenumber ; compute dive number to show (incorporate dive number offset) | |
634 | 1309 bcf leftbind ; make sure dive number is printed in 5 digit format |
1310 output_65535 ; print dive number (0-65535) | |
1311 movff buffer+2,buffer+0 ; drop first 2 digits | |
1312 movff buffer+3,buffer+1 ; ... | |
1313 movff buffer+4,buffer+2 ; ... | |
1314 movlw .3 ; relocate buffer pointer | |
1315 movwf FSR2L ; ... | |
631 | 1316 |
1317 PUTC ' ' ; print a space char | |
1318 | |
1319 ; print dive date | |
1320 MOVTT header_buffer+index_date,mpr ; get date | |
634 | 1321 call output_date_short ; print date (day and month) |
631 | 1322 PUTC ' ' ; print a space char |
0 | 1323 |
631 | 1324 ; print dive depth |
1325 MOVII header_buffer+index_max_depth,mpr ; get max depth | |
1326 | |
1327 TSTOSS opt_units ; switch by configured units | |
1328 bra display_listdive2_metric ; 0 - do metric | |
1329 ;bra display_listdive2_imperial ; 1 - do imperial | |
0 | 1330 |
631 | 1331 display_listdive2_imperial: |
1332 call convert_cm_to_feet ; convert value in mpr from [cm] to [feet] | |
1333 PUTC ' ' ; print one space char | |
634 | 1334 output_999 ; print depth (0-999) |
631 | 1335 STRCAT_TEXT tFeets1 ; print unit label |
1336 bra display_listdive3 ; continue with common part | |
0 | 1337 |
1338 display_listdive2_metric: | |
634 | 1339 bsf omit_digit_1 ; do not print 1st digit (no cm) |
1340 bsf decimal_digit2 ; place a decimal point in front of digit 2 | |
1341 output_65535 ; print depth (0.0x-655.3x) | |
631 | 1342 STRCAT_TEXT tMeters ; print unit label |
634 | 1343 PUTC ' ' ; append one space char |
631 | 1344 ;bra display_listdive3 ; continue with common part |
0 | 1345 |
631 | 1346 ; print dive time |
0 | 1347 display_listdive3: |
631 | 1348 MOVII header_buffer+index_divetime,mpr ; get dive time (minutes only) |
634 | 1349 output_999 ; print minutes (0-999) |
631 | 1350 STRCAT_TEXT tMinutes ; print minutes mark ("'") |
634 | 1351 movlw .21 ; max string length is 21 chars |
1352 call TFT_buffer_trim_length ; fill or cut buffer to correct length | |
1353 PRINT ; dump to screen | |
631 | 1354 return ; done |
0 | 1355 |
604 | 1356 |
634 | 1357 ;----------------------------------------------------------------------------- |
1358 ; Helper Function - show Dive Number | |
1359 ; | |
0 | 1360 logbook_show_divenumber: |
1361 WIN_MEDIUM logbook_divenumer_column, logbook_divenumer_row | |
623 | 1362 movf divenumber,W ; log_compute_divenumber needs the list number |
1363 call log_compute_divenumber ; compute dive number | |
634 | 1364 bsf leftbind ; print left-aligned |
1365 output_65535 ; show dive number | |
1366 PRINT ; print buffer to screen | |
623 | 1367 return ; done |
0 | 1368 |
1369 | |
631 | 1370 ;----------------------------------------------------------------------------- |
1371 ; 1st Details Page after Profile: Dive Statistics | |
634 | 1372 ; |
631 | 1373 logbook_page1: ; show more info |
634 | 1374 rcall log_details_header ; show number, time/date and basic dive data |
582 | 1375 |
623 | 1376 btfss aux_flag ; dive done in a deco mode? |
631 | 1377 bra logbook_page1_1 ; NO |
623 | 1378 |
631 | 1379 ; deco model |
582 | 1380 WIN_SMALL .5,.65 |
631 | 1381 MOVCC header_buffer+index_decomodel,WREG ; get deco model (0= ZH-L16, 1=ZH-L16+GF) |
1382 decfsz WREG,W ; GF model? | |
1383 bra logbook_decomodel_1 ; NO - ZH-L16 | |
1384 ;bra logbook_decomodel_2 ; YES - ZH-L16+GF | |
1385 | |
1386 logbook_decomodel_2: | |
1387 ; deco model GF version | |
634 | 1388 STRCAT_PRINT "ZH-L16+GF" ; print model label |
1389 WIN_SMALL .5,.90 ; set position | |
640 | 1390 STRCPY_TEXT tGF2 ; print label "GF :" |
1391 MOVII header_buffer+index_gf_lo_hi,mpr ; get GF factors | |
634 | 1392 bra logbook_decomodel_com ; continue with common part |
631 | 1393 |
1394 logbook_decomodel_1: | |
1395 ; deco model none-GF version | |
634 | 1396 STRCAT_PRINT "ZH-L16" ; print model label |
1397 WIN_SMALL .5,.90 ; set position | |
640 | 1398 STRCPY_TEXT tSD2 ; print label "S/D:" |
631 | 1399 MOVII header_buffer+index_factor_sat_desat,mpr; get both factors |
634 | 1400 ;bra logbook_decomodel_com ; continue with common part |
1401 | |
1402 logbook_decomodel_com: | |
640 | 1403 output_256 ; print GF low / saturation factor |
582 | 1404 STRCAT "%/" |
640 | 1405 movff hi,lo ; print GF high / desaturation factor |
634 | 1406 output_256 ; ... |
1407 PUTC_PRINT "%" ; append unit and dump buffer to screen | |
0 | 1408 |
631 | 1409 logbook_cns: |
582 | 1410 WIN_SMALL .5,.115 |
1411 STRCPY_TEXT tCNS2 | |
631 | 1412 MOVII header_buffer+index_cns_start,mpr ; get CNS at start of dive |
1413 bcf mpr+1,int_warning_flag ; clear warning flag (fix for cases were the flags already got stored to EEPROM) | |
1414 bcf mpr+1,int_attention_flag ; clear attention flag (fix for cases were the flags already got stored to EEPROM) | |
634 | 1415 output_999 ; print CNS % (0-999) |
1416 STRCAT "->" ; print an arrow | |
631 | 1417 MOVII header_buffer+index_cns_end,mpr ; get CNS at end of dive |
604 | 1418 bcf hi,int_warning_flag ; clear warning flag (fix for cases were the flags already got stored to EEPROM) |
1419 bcf hi,int_attention_flag ; clear attention flag (fix for cases were the flags already got stored to EEPROM) | |
634 | 1420 output_999 ; print CNS % (0-999) |
1421 PUTC_PRINT "%" ; append unit and dump buffer to screen | |
582 | 1422 |
631 | 1423 logbook_page1_1: |
1424 WIN_SMALL .5,.140 | |
1425 STRCPY_TEXT tAVG | |
1426 MOVII header_buffer+index_avr_depth,mpr ; get average depth | |
1427 | |
1428 TSTOSS opt_units ; 0=Meters, 1=Feets | |
1429 bra logbook_page1_1_metric ; do metric | |
1430 ;bra logbook_page1_1_imperial ; do imperial | |
623 | 1431 |
631 | 1432 logbook_page1_1_imperial: |
1433 call convert_cm_to_feet ; convert value in lo:hi from [cm] to [feet] | |
634 | 1434 PUTC ' ' ; addend a space |
1435 output_999 ; print depth (0-999) | |
1436 STRCAT_PRINT "ft" ; append unit and dump to screen | |
1437 bra logbook_page1_1_common ; continue | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1438 |
631 | 1439 logbook_page1_1_metric: |
634 | 1440 bsf decimal_digit2 ; place a decimal point in front of digit 2 |
1441 bsf omit_digit_1 ; do not print 1st digit | |
1442 output_65535 ; print depth (0.0x - 999.9x) | |
1443 PUTC_PRINT "m" ; append unit and dump buffer to screen | |
1444 ;bra logbook_page1_1_common ; continue | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1445 |
631 | 1446 logbook_page1_1_common: |
623 | 1447 btfss aux_flag ; dive done in a deco mode? |
631 | 1448 bra logbook_page1_2 ; NO |
1449 | |
1450 ; Salinity | |
634 | 1451 WIN_SMALL .5,.165 ; set position |
1452 STRCPY_TEXT tDvSalinity2 ; print label | |
631 | 1453 MOVCC header_buffer+index_salinity,lo ; read salinity |
634 | 1454 output_99 ; print salinity (0-99, effectively 0-4 with leading space) |
1455 PUTC_PRINT "%" ; append unit and dump to screen | |
623 | 1456 |
582 | 1457 ; Last deco |
634 | 1458 WIN_SMALL .5,.190 ; set position |
1459 STRCPY_TEXT tLastDeco ; print label | |
631 | 1460 MOVCC header_buffer+index_last_stop,lo ; read last stop depth |
634 | 1461 output_99 ; print depth (0-99, effectively 0-6 with leading space) |
1462 PUTC_PRINT "m" ; append unit and dump to screen | |
582 | 1463 |
631 | 1464 logbook_page1_2: |
634 | 1465 movlw color_lightblue ; select color |
1466 WIN_FRAME_COLOR .63,.220,.2,.105 ; top, bottom, left, right | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1467 |
582 | 1468 ; Firmware |
634 | 1469 FONT_COLOR_MEMO ; set font color |
1470 WIN_SMALL .110,.65 ; set output position | |
1471 STRCAT "V:" ; print "V:" | |
631 | 1472 MOVII header_buffer+index_firmware,mpr ; get firmware version |
1473 movff lo,up ; keep a backup of major in up | |
623 | 1474 bsf leftbind ; print left-aligned |
634 | 1475 output_99 ; print major version |
623 | 1476 PUTC "." ; print "." |
631 | 1477 movff hi,lo ; print minor version... |
1478 output_99x ; ... in 2 digit format | |
634 | 1479 PRINT ; print buffer to screen |
620 | 1480 |
634 | 1481 logbook_battery_hwos_tech: |
1482 ; all hwos tech >= 2.15 also stored battery % | |
631 | 1483 movf up,W ; get major into WREG |
623 | 1484 xorlw .3 ; major == 3 ? |
1485 bz logbook_battery_percent ; YES - show battery % | |
631 | 1486 movf up,W ; NO - get major into WREG (again) |
1487 xorlw .2 ; major == 2 ? | |
634 | 1488 bnz logbook_battery_hwos_sport ; NO - check for hwos sport |
631 | 1489 movlw .14 ; YES - check minor version |
1490 cpfsgt lo ; - minor > 14 ? | |
634 | 1491 bra logbook_battery_hwos_sport ; NO - check for hwos sport |
1492 bra logbook_battery_percent ; YES - show battery % | |
1493 | |
1494 logbook_battery_hwos_sport: | |
1495 ; all hwos_sport >= 10.34 also stored battery % | |
1496 ; check major again for .10 (for maintainability) | |
1497 movf up,W ; get major into WREG | |
1498 xorlw .10 ; major == 10 ? | |
1499 bnz logbook_battery_voltage ; NO - skip battery % | |
1500 movlw .33 ; YES - check minor version | |
1501 cpfsgt lo ; - minor > 33 ? | |
1502 bra logbook_battery_voltage ; NO - skip battery % | |
1503 ;bra logbook_battery_percent ; YES - show battery % | |
582 | 1504 |
623 | 1505 ; Battery % |
620 | 1506 logbook_battery_percent: |
631 | 1507 WIN_SMALL .110,.140 |
1508 MOVCC header_buffer+index_batt_percent,lo ; get battery percent | |
634 | 1509 output_256 ; print battery percent |
1510 PUTC_PRINT "%" ; append "%" and dump buffer to screen | |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1511 |
623 | 1512 ; Battery Voltage |
1513 logbook_battery_voltage: | |
634 | 1514 WIN_SMALL .110,.90 ; set position |
1515 STRCAT_PRINT "Batt:" ; print label | |
1516 WIN_SMALL .110,.115 ; set position | |
1517 MOVII header_buffer+index_battery_voltage,mpr ; get battery voltage | |
1518 bsf decimal_digit3 ; place a decimal point in front of digit 3 | |
1519 output_9999 ; print battery voltage (0.000-9.999) | |
1520 PUTC_PRINT "V" ; append unit and dump buffer to screen | |
496
a0247e9f71d0
show battery % in logbook (For dives made with 2.15 or newer)
heinrichsweikamp
parents:
495
diff
changeset
|
1521 |
631 | 1522 ; Surface Pressure |
1523 MOVII header_buffer+index_surface_press,mpr ; get surface pressure | |
623 | 1524 WIN_SMALL .110,.165 ; set output position |
634 | 1525 output_9999 ; print surface pressure before dive (0-9999) |
1526 STRCAT_TEXT_PRINT tMBAR ; append unit and dump to screen | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1527 |
623 | 1528 movlw color_greenish ; select color |
634 | 1529 WIN_FRAME_COLOR .63,.220,.107,.159 ; draw a frame with coordinates top, bottom, left, right |
582 | 1530 |
631 | 1531 ; handle HMI |
623 | 1532 rcall logbook_preloop_tasks ; clear timeout and remaining button events |
631 | 1533 display_details1_loop: |
1534 btfsc switch_right ; right button pressed? | |
1535 bra display_details1_more ; YES - more info or back to profile | |
623 | 1536 btfsc switch_left ; left button pressed? |
1537 bra exit_profileview ; YES - back to list | |
631 | 1538 call housekeeping ; NO - handle screen dump request, timeout and entering dive mode |
1539 bra display_details1_loop ; - loop waiting for something to do | |
1540 | |
1541 display_details1_more: | |
1542 btfss aux_flag ; YES - dive done in a deco mode? | |
1543 goto display_profile2 ; NO - show the profile view again | |
1544 ;bra logbook_page2 ; YES - show more details | |
490
8dfb93e80338
NEW: Deep Sleep mode for OSTC Plus and OSTC 2 (2017) (Entered automatically)
heinrichsweikamp
parents:
437
diff
changeset
|
1545 |
623 | 1546 |
631 | 1547 ;----------------------------------------------------------------------------- |
1548 ; 2nd Details Page after Profile: Tissue and Decompression Status | |
634 | 1549 ; |
631 | 1550 logbook_page2: |
1551 | |
634 | 1552 ; skip this page for dives recorded with internal profile < 0x01 |
631 | 1553 |
634 | 1554 MOVCC header_buffer+index_profile_version,WREG; read profile format version |
1555 andlw b'11000000' ; keep only the internal part of the profile version | |
1556 bnz logbook_page2a ; show page 2 if internal version > 0 | |
1557 bra logbook_page3 ; skip page 2 if internal version is 0 | |
631 | 1558 |
634 | 1559 logbook_page2a: |
631 | 1560 |
634 | 1561 rcall log_details_header ; show number, time/date and basic dive data |
631 | 1562 |
1563 ; basic configuration of tissue graphics | |
1564 bsf tissue_graphic_mode ; select logbook mode | |
1565 bcf tissue_graphic_layout ; select press+sat | |
1566 bcf tissue_graphic_cns ; do not show CNS value | |
1567 bcf tissue_graphic_gf ; do not show GF lines by default | |
1568 | |
1569 ; GF configuration | |
1570 MOVCC header_buffer+index_decomodel,WREG ; get deco model (0= ZH-L16, 1=ZH-L16+GF) | |
1571 dcfsnz WREG ; GF model? | |
1572 bsf tissue_graphic_gf ; YES - show GF lines | |
1573 | |
1574 ; draw the graphics | |
634 | 1575 call TFT_surf_cv_tissues |
631 | 1576 |
1577 ; calculate time/date of the end of the dive | |
1578 MOVTT header_buffer+index_date, rtc_latched_year ; get start of the dive - year, month, day | |
1579 MOVII header_buffer+index_time, rtc_latched_hour ; get start of the dive - hour, minute | |
1580 MOVCC header_buffer+index_divetime+2,rtc_latched_secs ; get duration of the dive - seconds | |
1581 MOVII header_buffer+index_divetime+0,mpr ; get duration of the dive - minutes | |
1582 call rtc_add_minutes ; add minutes in mpr to time/date in rtc_latched | |
1583 | |
1584 ; print time/date of the end of the dive | |
1585 WIN_SMALL .8,.193 ; select font and output position | |
1586 MOVTT rtc_latched_year,mpr ; get computed end-of-dive date | |
634 | 1587 call output_date_short ; print date (day and month) |
631 | 1588 STRCAT ".-" ; print spacing ".-" |
1589 MOVII rtc_latched_hour,mpr ; get computed end-of-dive time | |
1590 output_99x ; print hour | |
1591 PUTC ':' ; print spacing ":" | |
1592 movff hi,lo ; print minute | |
1593 output_99x ; ... | |
634 | 1594 PRINT ; print buffer to screen |
631 | 1595 |
1596 | |
1597 ; draw a white frame around the time/date | |
1598 WIN_FRAME_STD surf_tissue_diagram_bottom,.220, surf_tissue_diagram_left, surf_tissue_diagram_right | |
1599 | |
1600 bra logbook_page2_rightside ; continue with right side | |
1601 | |
1602 logbook_page2_nograph: | |
1603 WIN_SMALL .6,.118 ; no tissue graphics because the | |
1604 STRCAT_PRINT "(< FW 3.08)" ; profile was recorded on a FW < 3.08 | |
1605 | |
1606 logbook_page2_rightside: | |
1607 | |
1608 ; 1st line: supersaturation at end of dive | |
1609 WIN_SMALL .100,.68 | |
1610 STRCAT_TEXT_PRINT tBeginOfDive ; print "Begin" | |
1611 | |
1612 ; 2nd line: | |
1613 WIN_SMALL .100+.28,.93 ; +16 for centered, +28 for right-aligned | |
1614 MOVCC header_buffer+index_supersat_start,lo ; get supersaturation at start of dive | |
634 | 1615 output_256 ; print percent value |
1616 PUTC_PRINT "%" ; append "%" and dump buffer to screen | |
631 | 1617 |
1618 ; 3rd line: | |
1619 WIN_SMALL .100,.118 | |
1620 STRCAT_TEXT_PRINT tEndOfDive ; print "End" | |
1621 | |
1622 ; 4th line: | |
1623 WIN_SMALL .100+.28,.143 ; +16 for centered, +28 for right-aligned | |
1624 MOVCC header_buffer+index_supersat_end,lo ; get supersaturation at end of dive | |
634 | 1625 output_256 ; print percent value |
1626 PUTC_PRINT "%" ; append "%" and dump buffer to screen | |
631 | 1627 |
1628 ; 5th line: desaturation time label | |
1629 WIN_SMALL .100,.168 | |
1630 STRCAT_TEXT_PRINT tDesatTime ; print "Desat" | |
1631 | |
1632 ; 6th line: desaturation time value | |
1633 WIN_SMALL .100+.14,.193 ; +?? for centered, +14 for right-aligned | |
1634 MOVII header_buffer+index_desattime,mpr ; get desaturation time | |
1635 call convert_time ; convert hi:lo in minutes to hours (up:hi) and minutes (lo) | |
1636 movf lo,W ; swap hi and lo | |
1637 movff hi,lo ; ... | |
1638 movwf hi ; ... | |
1639 output_99 ; print hours in 0-99 | |
1640 PUTC 'h' ; print hours mark | |
1641 movff hi,lo ; print minutes... | |
1642 output_99x ; ... in two digits, leading zero | |
634 | 1643 PUTC_PRINT "m" ; append minutes mark and dump buffer to screen |
631 | 1644 |
1645 ; draw a colored frame around the right side | |
1646 movlw color_orange ; select color | |
634 | 1647 WIN_FRAME_COLOR .65,.220,.97,.159 ; draw a frame with coordinates top, bottom, left, right |
631 | 1648 |
1649 ; handle HMI | |
634 | 1650 rcall logbook_preloop_tasks ; clear timeout and left-over button events |
631 | 1651 display_details1b_loop: |
1652 btfsc switch_right ; right button pressed? | |
1653 bra logbook_page3 ; YES - show more info | |
1654 btfsc switch_left ; left button pressed? | |
1655 bra exit_profileview ; YES - back to list | |
1656 call housekeeping ; NO - handle screen dump request, timeout and entering dive mode | |
1657 bra display_details1b_loop ; - loop waiting for something to do | |
1658 | |
1659 | |
1660 ;----------------------------------------------------------------------------- | |
634 | 1661 ; Helper Function - clear Timeout and left-over Button Events |
1662 ; | |
582 | 1663 logbook_preloop_tasks: |
604 | 1664 movlw CCP1CON_VALUE ; see hwos.inc |
1665 movwf CCP1CON ; power-on backlight | |
634 | 1666 FONT_COLOR_MEMO ; revert font color to standard |
623 | 1667 call reset_timeout_surfmode ; reset timeout |
1668 bcf switch_left ; clear left-over left button event | |
1669 bcf switch_right ; clear left-over right button event | |
1670 return ; done | |
582 | 1671 |
631 | 1672 ;----------------------------------------------------------------------------- |
1673 ; 3rd Details Page after Profile: Gases / Diluents | |
634 | 1674 ; |
631 | 1675 logbook_page3: |
634 | 1676 rcall log_details_header ; show number, time/date and basic dive data |
1677 | |
631 | 1678 lfsr FSR0,header_buffer+index_gas1 ; load base address of the gases |
582 | 1679 bcf log_show_gas_short ; do the long version of log_show_gas |
0 | 1680 |
582 | 1681 WIN_SMALL .5,.90 |
604 | 1682 movlw .1 ; color for gas 1 |
582 | 1683 rcall log_show_gas |
1684 | |
1685 WIN_SMALL .5,.115 | |
604 | 1686 movlw .2 ; color for gas 2 |
582 | 1687 rcall log_show_gas |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1688 |
582 | 1689 WIN_SMALL .5,.140 |
604 | 1690 movlw .3 ; color for gas 3 |
582 | 1691 rcall log_show_gas |
1692 | |
1693 WIN_SMALL .5,.165 | |
604 | 1694 movlw .4 ; color for gas 4 |
582 | 1695 rcall log_show_gas |
1696 | |
1697 WIN_SMALL .5,.190 | |
604 | 1698 movlw .5 ; color for gas 5 |
582 | 1699 rcall log_show_gas |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1700 |
631 | 1701 ; OC/CC gas list |
634 | 1702 WIN_SMALL .5,.65 ; set title position |
1703 FONT_COLOR color_greenish ; set title color | |
631 | 1704 |
1705 MOVCC header_buffer+index_divemode,WREG ; read dive mode (0=OC, 1=CC, 2=Gauge, 3=Apnea, 4= pSCR) | |
1706 decfsz WREG,W ; dive mode = CC ? | |
1707 bra logbook_page3a ; NO - print OC title | |
1708 STRCPY_TEXT_PRINT tGaslistCC ; YES - print CC title | |
1709 bra logbook_page3b ; - continue with common part | |
560 | 1710 logbook_page3a: |
631 | 1711 STRCPY_TEXT_PRINT tGaslist ; print OC title |
560 | 1712 logbook_page3b: |
634 | 1713 movlw color_lightblue ; select frame color |
1714 WIN_FRAME_COLOR .63,.220,.2,.114 ; draw frame (top, bottom, left, right) | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1715 |
631 | 1716 ; handle HMI |
1717 rcall logbook_preloop_tasks ; clear timeout, some flags and set to speed_eco | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1718 display_details2_loop: |
623 | 1719 btfsc switch_right ; right button pressed? |
1720 goto logbook_page4 ; YES - show more info | |
631 | 1721 btfsc switch_left ; NO - left button pressed? |
1722 bra exit_profileview ; YES - back to list | |
1723 call housekeeping ; NO - handle screen dump request, timeout and entering dive mode | |
1724 bra display_details2_loop ; - loop waiting for something to do | |
1725 | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1726 |
631 | 1727 ;----------------------------------------------------------------------------- |
1728 ; 4th Details Page after Profile: Setpoints | |
634 | 1729 ; |
631 | 1730 logbook_page4: |
1731 MOVCC header_buffer+index_divemode,WREG ; get dive mode (0=OC, 1=CC, 2=Gauge, 3=Apnea, 4= pSCR) | |
1732 decfsz WREG,W ; =1 (CC)? | |
1733 goto display_profile2 ; NO - skip setpoints | |
530 | 1734 |
634 | 1735 rcall log_details_header ; show number, time/date and basic dive data |
631 | 1736 |
1737 ; print setpoint list | |
1738 lfsr FSR0,header_buffer+index_sp1 ; load base address of the setpoints | |
634 | 1739 WIN_SMALL .5,.65 ; set title position |
1740 FONT_COLOR color_greenish ; set title color | |
1741 STRCPY_TEXT_PRINT tFixedSetpoints ; print title | |
1742 FONT_COLOR_MEMO ; set font color | |
1743 WIN_SMALL .5,.90 ; set position | |
1744 rcall log_show_sp ; print setpoint data set | |
1745 WIN_SMALL .5,.115 ; set position | |
1746 rcall log_show_sp ; print setpoint data set | |
1747 WIN_SMALL .5,.140 ; set position | |
1748 rcall log_show_sp ; print setpoint data set | |
1749 WIN_SMALL .5,.165 ; set position | |
1750 rcall log_show_sp ; print setpoint data set | |
1751 WIN_SMALL .5,.190 ; set position | |
1752 rcall log_show_sp ; print setpoint data set | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1753 |
634 | 1754 movlw color_greenish ; select color for the frame |
1755 WIN_FRAME_COLOR .63,.220,.2,.112 ; draw frame (top, bottom, left, right) | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1756 |
631 | 1757 ; handle HMI |
623 | 1758 rcall logbook_preloop_tasks ; clear timeout, some flags and set to Speed_eco |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1759 display_details3_loop: |
623 | 1760 btfsc switch_right ; right button pressed? |
1761 goto display_profile2 ; YES - show the profile view again | |
1762 btfsc switch_left ; left button pressed? | |
1763 bra exit_profileview ; YES - back to list | |
1764 call housekeeping ; NO to both - handle screen dump request, timeout and entering dive mode | |
1765 bra display_details3_loop ; - loop waiting for something to do | |
0 | 1766 |
582 | 1767 |
631 | 1768 ;----------------------------------------------------------------------------- |
634 | 1769 ; Helper Function - show Dive Number, Time/Date and basic Dive Data |
1770 ; | |
582 | 1771 log_details_header: |
634 | 1772 call TFT_boot ; initialize display |
1773 FONT_COLOR_MEMO ; set font color | |
582 | 1774 |
631 | 1775 rcall logbook_show_divenumber ; show the dive number in medium font |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1776 |
631 | 1777 ; show date and time in first row |
582 | 1778 WIN_SMALL .59,.10 |
631 | 1779 MOVTT header_buffer+index_date,mpr ; get date |
634 | 1780 call output_date ; print date |
1781 PUTC "-" ; print "-" | |
631 | 1782 MOVII header_buffer+index_time,mpr ; get time |
1783 output_99x ; print hour | |
1784 PUTC ':' ; print spacing ":" | |
1785 movff hi,lo ; print minute | |
1786 output_99x ; ... | |
634 | 1787 PRINT ; dump to screen |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1788 |
631 | 1789 ; show max depth and dive time |
582 | 1790 WIN_SMALL .5,.35 |
1791 STRCAT "Max:" | |
631 | 1792 MOVII header_buffer+index_max_depth,mpr ; get max depth |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1793 |
631 | 1794 TSTOSS opt_units ; 0=Meters, 1=Feet |
1795 bra logbook_page2_depth_metric ; 1 - do metric | |
1796 ;bra logbook_page2_depth_imperial ; 0 - do imperial | |
629 | 1797 |
631 | 1798 logbook_page2_depth_imperial: |
1799 call convert_cm_to_feet ; convert value in lo:hi from [cm] to [feet] | |
634 | 1800 PUTC ' ' ; append a space |
1801 output_999 ; print depth | |
1802 STRCAT_TEXT tFeets ; append unit | |
1803 bra logbook_page2_depth_common ; continue | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1804 |
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1805 logbook_page2_depth_metric: |
634 | 1806 bsf omit_digit_1 ; do not print 1st digit |
1807 bsf decimal_digit2 ; place a decimal point in front of digit 2 | |
1808 output_65535 ; print depth (0.0x-655.3x) | |
1809 STRCAT_TEXT tMeters ; append unit | |
1810 ;bra logbook_page2_depth_common ; continue | |
500
989917fe2d9f
Battery % in logbook when updated from Sport to Tech
heinrichsweikamp
parents:
496
diff
changeset
|
1811 |
582 | 1812 logbook_page2_depth_common: |
1813 STRCAT " - " | |
631 | 1814 MOVTT header_buffer+index_divetime,mpr ; get dive time |
634 | 1815 bsf leftbind ; print left-aligned |
1816 output_9999 ; print minutes (0-9999) | |
1817 PUTC "m" ; append unit | |
631 | 1818 movff up,lo ; print seconds |
1819 output_99x ; ... | |
634 | 1820 PUTC_PRINT "s" ; append unit and dump buffer to screen |
1821 return ; done | |
582 | 1822 |
1823 | |
634 | 1824 ;----------------------------------------------------------------------------- |
1825 ; Helper Function - show Setpoint Data | |
1826 ; | |
582 | 1827 log_show_sp: |
631 | 1828 ; log point is set by caller |
1829 MOVCC POSTINC0,lo ; copy set point into lo | |
1830 MOVCC POSTINC0,hi ; copy change depth into hi | |
1831 | |
1832 movff mpr+1,mpr+2 ; save change depth | |
1833 clrf mpr+1 ; set high byte to zero for printing setpoint | |
634 | 1834 bsf leftbind ; print left-aligned |
1835 bsf decimal_digit2 ; place a decimal point in front of digit 2 | |
1836 output_999 ; print setpoint (0.00-9.99) | |
1837 STRCAT_TEXT tbar ; append unit | |
1838 PUTC " " ; append a space | |
631 | 1839 movff mpr+2,mpr+0 ; restore change depth to lo |
0 | 1840 |
582 | 1841 TSTOSS opt_units ; 0=Meter, 1=Feet |
623 | 1842 bra log_show_sp_metric ; 0 - do metric |
631 | 1843 ;bra log_show_sp_imperial ; 1 - do imperial |
1844 | |
1845 log_show_sp_imperial: | |
1846 call convert_meter_to_feet ; convert value in lo from [m] to [feet] | |
634 | 1847 output_999 ; print depth (0-999) |
1848 PUTC " " ; append space | |
1849 STRCAT_TEXT_PRINT tFeets ; append unit and dump to screen | |
1850 return ; done | |
631 | 1851 |
582 | 1852 log_show_sp_metric: |
634 | 1853 output_256 ; print depth (0-256) |
1854 PUTC " " ; append space | |
1855 STRCAT_TEXT_PRINT tMeters ; append unit and dump to screen | |
1856 return ; done | |
582 | 1857 |
0 | 1858 |
634 | 1859 ;----------------------------------------------------------------------------- |
1860 ; Helper Function - show Gas Data | |
1861 ; | |
582 | 1862 log_show_gas: ; show gas data |
1863 call TFT_color_code_gas ; color the output (gas number is in WREG) | |
634 | 1864 MOVCC POSTINC0,lo ; read O2 fraction into lo |
1865 MOVCC POSTINC0,hi ; read He fraction into hi | |
1866 call gaslist_strcat_mix ; put "Nxlo", "Txlo/hi", "Air" or "O2" into buffer | |
0 | 1867 |
634 | 1868 MOVCC POSTINC0,lo ; read change depth into lo |
1869 MOVCC POSTINC0,hi ; read gas type into hi | |
1870 | |
1871 btfss log_show_gas_short ; shall do the short version? | |
1872 bra log_show_gas_long ; NO - add gas types | |
1873 PRINT ; YES - dump to screen | |
1874 return ; done | |
631 | 1875 |
1876 log_show_gas_long: | |
604 | 1877 PUTC " " ; put one space between gas composition and gas type marking |
631 | 1878 tstfsz hi ; gas disabled? |
604 | 1879 bra log_show_gas_1 ; NO - next check |
1880 PUTC "x" ; YES - mark with "x" | |
1881 bra log_show_gas_4 ; - continue with change depth | |
1882 log_show_gas_1: | |
631 | 1883 decfsz hi,F ; now: -1 disabled, 0 first, 1 travel, 2 deco -> first? |
604 | 1884 bra log_show_gas_2 ; NO - next check |
1885 PUTC "*" ; YES - mark with "*" | |
1886 bra log_show_gas_4 ; - continue with change depth | |
1887 log_show_gas_2: | |
631 | 1888 decf hi,F ; now: -2 disabled, -1 first, 0 travel, 1 deco |
1889 decfsz hi,F ; now: -3 disabled, -2 first, -1 travel, 0 deco -> deco? | |
604 | 1890 bra log_show_gas_3 ; NO - nothing to mark |
1891 PUTC "=" ; YES - mark with "=" | |
1892 bra log_show_gas_4 ; - continue with change depth | |
1893 log_show_gas_3: | |
1894 PUTC " " ; print a space in absence of any other marking | |
1895 log_show_gas_4: | |
1896 PUTC " " ; put one space between gas type marking and change depth | |
631 | 1897 |
634 | 1898 bsf leftbind ; print left-aligned |
582 | 1899 TSTOSS opt_units ; 0=Meter, 1=Feet |
623 | 1900 bra log_show_gas_metric ; 0 - do metric |
631 | 1901 ;bra log_show_gas_imperial ; 1 - do imperial |
1902 | |
1903 log_show_gas_imperial: | |
1904 call convert_meter_to_feet ; convert value in lo from [m] to [feet] | |
634 | 1905 output_999 ; print depth (0-999) |
1906 STRCAT_TEXT_PRINT tFeets ; append unit and dump to screen | |
1907 return ; done | |
631 | 1908 |
582 | 1909 log_show_gas_metric: |
634 | 1910 output_256 ; print depth (0-255) |
1911 STRCAT_TEXT_PRINT tMeters ; append unit and dump to screen | |
1912 return ; done | |
0 | 1913 |
623 | 1914 |
634 | 1915 ;----------------------------------------------------------------------------- |
1916 ; Helper Function - compute Dive Number | |
1917 ; | |
623 | 1918 log_compute_divenumber: |
631 | 1919 movwf mpr+2 ; store current dive number in mpr+2 |
1920 call eeprom_log_offset_read ; read log offset into mpr+0 & +1 | |
623 | 1921 ; check if offset = 0 |
631 | 1922 tstfsz mpr+0 ; low byte = 0 ? |
1923 bra log_compute_divenumber_2 ; NO - apply offset | |
1924 tstfsz mpr+1 ; YES - high byte = 0 ? | |
1925 bra log_compute_divenumber_2 ; NO - apply offset | |
1926 ;bra log_compute_divenumber_1 ; YES - no offset | |
1927 | |
1928 log_compute_divenumber_1: | |
623 | 1929 movff mpr+2,mpr+0 ; use plain number from dive list |
1930 clrf mpr+1 ; set high byte to 0 | |
1931 return ; done | |
631 | 1932 |
623 | 1933 log_compute_divenumber_2: |
1934 ; check limit (offset must be < 10000) | |
1935 MOVLI .9999,sub_a ; sub_a = 9999 | |
1936 MOVII mpr, sub_b ; sub_b = offset | |
1937 call cmpU16 ; 9999 - offset | |
1938 btfsc neg_flag ; result negative, i.e. offset > 9999 ? | |
1939 bc log_compute_divenumber_1 ; YES - ignore offset | |
1940 INCI mpr ; NO - increment offset by 1 | |
1941 MOVII mpr,sub_a ; - sub_a = offset + 1 | |
1942 movff mpr+2,sub_b+0 ; - sub_b = number from list (low byte) | |
1943 clrf sub_b+1 ; - high byte is 0 | |
1944 call subU16 ; - sub_c = offset + 1 - (number from list) | |
1945 MOVII sub_c,mpr ; - copy result back to mpr | |
1946 return ; - done | |
1947 | |
634 | 1948 |
1949 ;----------------------------------------------------------------------------- | |
1950 ; Helper Function - compute Flash Address of Header by Dive Number | |
631 | 1951 ; |
634 | 1952 ; Memory Map in Flash: |
631 | 1953 ; |
1954 ; low(total number of dives) -> index -> start address end address | |
1955 ; -------------------------------------------------------------------- | |
1956 ; 1 0 0x2|00|000 - 0x2|00|FFF | |
1957 ; 2 1 0x2|01|000 - 0x2|01|FFF | |
1958 ; 3 2 0x2|02|000 - 0x2|02|FFF | |
1959 ; ... | |
1960 ; 256 -> 0 255 0x2|FF|000 - 0x2|FF|FFF | |
634 | 1961 ; |
631 | 1962 log_header_addr_by_divenumber: |
634 | 1963 ; compute dive index from of the dive number |
631 | 1964 decf divenumber,W ; compute number of dive to show -1... |
1965 movwf mpr+3 ; ... and store in mpr+3 | |
1966 movf total_num_dives,W ; get number of total dives (low byte) | |
1967 bcf STATUS,C ; clear carry/borrow bit | |
1968 subfwb mpr+3,W ; index = number of total dives - number of dive to show + 1 | |
1969 ;bra log_header_addr_by_index ; get address by index | |
1970 | |
634 | 1971 |
1972 ;----------------------------------------------------------------------------- | |
1973 ; Helper Function - compute Flash Address of Header by Dive Index | |
1974 ; | |
631 | 1975 global log_header_addr_by_index |
1976 log_header_addr_by_index: | |
1977 ; compute the start address of the header belonging to the dive whose index is in WREG | |
634 | 1978 movwf lo ; copy index to lo |
1979 movlw .16 ; prepare a shift left by 4 bit -> multiply with 16 | |
1980 mulwf lo ; shift left the index to create the offset | |
1981 clrf ext_flash_address+0 ; clear low byte of the address | |
1982 movf PRODL,W ; get low byte of the offset | |
1983 movwf ext_flash_address+1 ; store as high byte of the address | |
1984 movf PRODH,W ; get high byte of the offset | |
1985 addlw 0x20 ; add 0x20 | |
1986 movwf ext_flash_address+2 ; store as upper byte of the address | |
1987 return ; done | |
631 | 1988 |
604 | 1989 ; ---------------------------------------------------------------- |
1990 | |
634 | 1991 END |