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