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