Mercurial > public > hwos_code
annotate src/comm.asm @ 454:0ef84436df32
minor: fix some alignments for OSTC cR
| author | heinrichsweikamp |
|---|---|
| date | Tue, 27 Sep 2016 16:03:31 +0200 |
| parents | aadfe9f2edaf |
| children | 0491a84fd0b8 |
| rev | line source |
|---|---|
| 0 | 1 ;============================================================================= |
| 2 ; | |
| 3 ; File comm.asm | |
| 4 ; | |
| 5 ; RS232 via USB | |
| 6 ; | |
| 7 ; Copyright (c) 2012, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
| 8 ;============================================================================= | |
| 9 ; HISTORY | |
| 10 ; 2011-08-22 : [mH] Creation | |
| 11 ; 2012-02-11 : [jDG] Added "c" set custom text, and "i" identify. | |
| 12 | |
| 275 | 13 #include "hwos.inc" |
| 0 | 14 #include "eeprom_rs232.inc" |
| 15 #include "tft.inc" | |
| 16 #include "wait.inc" | |
| 17 #include "strings.inc" | |
| 18 #include "convert.inc" | |
| 19 #include "external_flash.inc" | |
| 20 #include "tft_outputs.inc" | |
| 21 #include "surfmode.inc" | |
| 22 #include "rtc.inc" | |
| 23 #include "adc_lightsensor.inc" | |
|
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
24 #include "shared_definitions.h" |
| 0 | 25 |
| 147 | 26 extern new_battery_menu,restart,option_reset_all |
|
81
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
27 extern option_check_all, gaslist_cleanup_list, get_first_gas_to_WREG, get_first_dil_to_WREG |
|
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
159
diff
changeset
|
28 extern vault_decodata_into_eeprom |
| 0 | 29 |
| 426 | 30 #DEFINE timeout_comm_pre_mode .240 ; Pre-loop |
| 0 | 31 #DEFINE timeout_comm_mode .120 ; Download mode |
| 32 #DEFINE timeout_service_mode .120 ; Service mode | |
| 33 | |
| 34 #DEFINE comm_title_row .0 | |
|
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
35 #DEFINE comm_title_column_usb .50 |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
36 #DEFINE comm_title_column_ble .25 |
| 0 | 37 |
| 38 #DEFINE comm_string_row .30 | |
| 39 #DEFINE comm_string_column .40 | |
| 40 | |
| 41 | |
| 42 #DEFINE comm_status1_row .70 | |
| 43 #DEFINE comm_status1_column .10 | |
| 44 #DEFINE comm_status2_row .100 | |
| 45 #DEFINE comm_status2_column comm_status1_column | |
| 46 #DEFINE comm_status3_row .130 | |
| 47 #DEFINE comm_status3_column comm_status1_column | |
| 48 | |
| 49 #DEFINE comm_warning_row .160 | |
| 50 #DEFINE comm_warning_column .65 | |
| 51 | |
| 52 comm code | |
| 53 | |
| 54 ; test for comm | |
| 218 | 55 global comm_mode, comm_mode0 |
| 0 | 56 comm_mode: |
| 113 | 57 WAITMS d'1' |
| 58 btfss vusb_in ; USB plugged in? | |
| 59 return ; No, it was only a glitch | |
| 60 WAITMS d'1' | |
| 61 btfss vusb_in ; USB plugged in? | |
| 62 return ; No, it was only a glitch | |
| 218 | 63 comm_mode0: |
| 0 | 64 call TFT_ClearScreen |
| 65 WIN_COLOR color_greenish | |
|
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
66 btfsc ble_available ; ble available |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
67 bra comm_mode0_ble |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
68 WIN_SMALL comm_title_column_usb, comm_title_row |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
69 STRCPY_TEXT_PRINT tUsbTitle ; USB Mode |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
70 bra comm_mode0_common |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
71 comm_mode0_ble: |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
72 WIN_SMALL comm_title_column_ble, comm_title_row |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
73 STRCPY_TEXT_PRINT tBleTitle ; BLE Mode |
|
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
74 comm_mode0_common: |
| 0 | 75 call TFT_standard_color |
| 76 WIN_TOP .10 | |
| 77 WIN_LEFT .1 | |
| 78 movlw 0xDE | |
| 79 movwf TBLPTRL | |
| 80 movlw 0xEE | |
| 81 movwf TBLPTRH | |
| 82 movlw 0x01 | |
| 83 movwf TBLPTRU | |
|
251
3fec179a6220
some cleanup, temporaly disable dive_warning.inc
heinrichsweikamp
parents:
245
diff
changeset
|
84 extern color_image |
| 0 | 85 call color_image ; Show usb logo |
| 86 WIN_SMALL comm_status1_column, comm_status1_row | |
| 87 STRCPY_TEXT_PRINT tUsbStarting ; Starting... | |
| 88 call TFT_serial ; Show serial and firmware version | |
| 89 bcf enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
| 90 bcf switch_right | |
| 91 bcf comm_service_enabled | |
| 92 bsf menubit | |
| 93 bcf battery_removed_in_usb ; =1: The battery has been removed in USB | |
| 94 movlw timeout_comm_pre_mode | |
| 95 movwf timeout_counter | |
| 96 WIN_SMALL comm_status1_column+.80, comm_status1_row | |
| 97 STRCPY_TEXT_PRINT tUsbStartDone ; Done... | |
| 98 call enable_rs232 ; Also sets to speed_normal ... | |
| 99 comm_mode1: | |
| 100 bcf onesecupdate | |
| 101 bcf LEDr | |
| 102 dcfsnz timeout_counter,F | |
| 103 bra comm_service_exit ; Timeout -> Exit | |
| 104 comm_mode2: | |
| 448 | 105 ; btfsc battery_gauge_available |
| 393 | 106 ; bra comm_mode4 ; Skip |
| 107 ; | |
| 108 ; call get_battery_voltage ; gets battery voltage | |
| 109 ; movlw .3 | |
| 110 ; cpfslt batt_voltage+1 ; Batt Voltage less then 3*256mV? | |
| 111 ; bra comm_mode3 ; No | |
| 112 ; ; Set flag | |
| 113 ; bsf battery_removed_in_usb ; =1: The battery has been removed in USB | |
| 114 ; bra comm_mode4 | |
| 115 ; | |
| 116 ;comm_mode3: | |
| 117 ; ; Voltage ok. Do we have a new battery now? | |
| 118 ; btfsc battery_removed_in_usb ; =1: The battery has been removed in USB | |
| 119 ; goto new_battery_menu ; show "New battery dialog" | |
| 120 ; | |
| 121 ;comm_mode4: | |
| 350 | 122 rcall comm_write_get_byte |
| 0 | 123 |
| 124 movlw 0xAA ; start byte=0xAA? | |
| 125 cpfseq RCREG1 | |
| 126 bra comm_mode2a | |
| 127 bra comm_mode2b ; Startbyte for service mode found | |
| 128 comm_mode2a: | |
| 129 movlw 0xBB ; start byte=0xBB? | |
| 130 cpfseq RCREG1 | |
| 393 | 131 bra comm_mode2c |
| 0 | 132 bra comm_download_mode ; Startbyte for download mode found |
| 133 | |
| 393 | 134 comm_mode2c: |
| 135 btfss vusb_in ; USB plugged in? | |
| 136 bra comm_service_exit_nousb_delay ; Disconnected -> Exit | |
| 137 comm_mode4a: | |
| 138 btfsc switch_right ; Abort with right | |
| 139 bra comm_service_exit | |
| 140 | |
| 141 btfsc onesecupdate | |
| 142 bra comm_mode1 | |
| 143 | |
| 144 bra comm_mode2 ; Cycle | |
| 145 | |
| 0 | 146 comm_mode2b: |
| 147 ; Startbyte found | |
| 354 | 148 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 149 movlw 0x4B |
| 150 movwf TXREG1 ; Send Answer | |
| 151 ; Now, check comm command | |
| 152 | |
| 350 | 153 rcall comm_write_get_byte ; first byte |
| 354 | 154 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 155 movff RCREG1,TXREG1 ; Echo |
| 156 movlw UPPER comm_service_key | |
| 157 cpfseq RCREG1 | |
| 158 bra comm_mode1 ; Wrong -> Restart | |
| 350 | 159 rcall comm_write_get_byte ; second byte |
| 354 | 160 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 161 movff RCREG1,TXREG1 ; Echo |
| 162 movlw HIGH (comm_service_key & 0xFFFF) | |
| 163 cpfseq RCREG1 | |
| 164 bra comm_mode1 ; Wrong -> Restart | |
| 350 | 165 rcall comm_write_get_byte ; third byte |
| 354 | 166 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 167 movff RCREG1,TXREG1 ; Echo |
| 168 movlw LOW comm_service_key | |
| 169 cpfseq RCREG1 | |
| 170 bra comm_mode1 ; Wrong -> Restart | |
| 171 | |
| 172 ; Enable comm service mode | |
| 173 WIN_SMALL comm_status2_column, comm_status2_row | |
| 174 STRCPY_TEXT_PRINT tUsbServiceMode ; Service mode enabled | |
| 350 | 175 bsf comm_service_enabled ; Set flag... |
| 176 bra comm_download_mode0 ; ... but use common routine | |
| 69 | 177 |
| 178 comm_service_exit_nousb_delay: | |
| 179 WAITMS d'200' | |
| 350 | 180 btfsc vusb_in ; USB plugged in? |
| 69 | 181 bra comm_mode4a ; (Still) connected, return |
| 0 | 182 comm_service_exit_nousb: ; Disconnected -> Exit |
| 183 WIN_SMALL comm_status3_column, comm_status3_row | |
| 184 STRCPY_TEXT_PRINT tUsbClosed ; Port closed | |
| 185 bra comm_service_exit_common | |
| 186 | |
| 187 comm_service_exit: | |
| 188 WIN_SMALL comm_status3_column, comm_status3_row | |
| 189 STRCPY_TEXT_PRINT tUsbExit ; Exited | |
| 190 comm_service_exit_common: | |
| 354 | 191 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 192 movlw 0xFF ; Reply FF |
| 193 movwf TXREG1 ; Send Answer | |
| 194 | |
| 195 ; Wait 1 second | |
| 196 bcf onesecupdate | |
| 197 btfss onesecupdate | |
| 198 bra $-2 | |
| 199 ; Wait 1 second | |
| 200 bcf onesecupdate | |
| 201 btfss onesecupdate | |
| 202 bra $-2 | |
| 203 | |
| 204 call disable_rs232 | |
| 205 goto restart | |
| 206 | |
| 207 ;----------------------------------------------------------------------------- | |
| 208 | |
| 209 comm_service_ll_bootloader: | |
| 210 bsf LEDr | |
| 211 WIN_SMALL comm_status3_column, comm_status3_row | |
| 212 STRCPY_TEXT_PRINT tUsbLlBld ; Low Level Bootloader started | |
| 213 WIN_TOP comm_warning_row | |
| 214 WIN_LEFT comm_warning_column | |
| 252 | 215 TFT_WRITE_PROM_IMAGE dive_warning2_block ; Show Warning icon |
| 0 | 216 goto 0x1FF0C |
| 217 | |
| 218 ;----------------------------------------------------------------------------- | |
|
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
219 ; send firmware to bootloader |
| 0 | 220 ; |
| 221 comm_send_firmware: | |
| 222 movlw 0x50 ; send echo | |
| 223 movwf TXREG1 | |
| 354 | 224 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 225 |
| 226 ; Read 5 bytes into buffer. | |
| 227 lfsr FSR2,buffer | |
| 228 movlw .5 ; counter | |
| 229 movwf lo | |
| 230 movlw 0x55 ; 5'ft byte checksum. | |
| 231 movwf hi | |
| 232 | |
| 233 comm_send_firmware_loop: | |
| 350 | 234 rcall comm_write_get_byte |
| 0 | 235 btfsc rs232_recieve_overflow ; Got byte? |
| 236 bra comm_send_firmware_abort ; No, abort! | |
| 237 movf RCREG1,W | |
| 238 movwf POSTINC2 ; Store checksum byte. | |
| 239 xorwf hi,F ; Also xor into checksum | |
| 240 rlncf hi,F ; And rotate it. | |
| 241 decfsz lo,F | |
| 242 bra comm_send_firmware_loop | |
| 243 | |
| 244 ; Check that 5ft byte checksum's checksum | |
| 245 movf hi,W | |
| 246 bnz comm_send_firmware_failed | |
| 247 | |
| 248 movlw 0x4C ; send OK | |
| 249 movwf TXREG1 | |
| 354 | 250 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 251 |
| 252 ; Passed: goto second stage verification. | |
| 253 ; NOTE: Bootloader is Bank0. With buffer at address 0x200. | |
|
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
159
diff
changeset
|
254 call vault_decodata_into_eeprom ; Store last deco data (And Time/Date) into EEPROM |
| 0 | 255 goto 0x1FDF0 ; And pray... |
| 256 | |
| 257 comm_send_firmware_failed: | |
| 258 WIN_SMALL comm_string_column, comm_string_row | |
| 50 | 259 call TFT_warnings_color |
| 0 | 260 STRCPY_PRINT "Checksum failed" |
| 261 | |
| 262 comm_send_firmware_abort: | |
| 263 | |
| 264 movlw 0xFF ; send ABORTED byte. | |
| 265 movwf TXREG1 | |
| 266 bra comm_download_mode0 ; Done. | |
| 267 | |
| 268 ;----------------------------------------------------------------------------- | |
| 269 ; Reset to Dive 1 in logbook | |
| 270 | |
| 271 comm_reset_logbook_pointers: | |
| 272 clrf EEADRH ; Make sure to select eeprom bank 0 | |
| 273 clrf EEDATA | |
| 274 write_int_eeprom .4 | |
| 275 write_int_eeprom .5 | |
| 276 write_int_eeprom .6 | |
| 277 write_int_eeprom .2 ; Also, delete total dive counter | |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
278 write_int_eeprom .3 |
|
396
61984f91174a
place total dives backup counter in eeprom 16:17
heinrichsweikamp
parents:
393
diff
changeset
|
279 write_int_eeprom .16 |
|
61984f91174a
place total dives backup counter in eeprom 16:17
heinrichsweikamp
parents:
393
diff
changeset
|
280 write_int_eeprom .17 ; And the backup counter, too |
| 0 | 281 call ext_flash_erase_logbook ; And complete logbook (!) |
| 282 bra comm_download_mode0 ; Done. | |
| 283 | |
| 284 ;----------------------------------------------------------------------------- | |
| 285 comm_reset_battery_gauge: ; Resets battery gauge registers | |
| 286 call reset_battery_pointer ; Resets battery pointer 0x07-0x0C and battery_gauge:5 | |
| 287 bra comm_download_mode0 ; Done. | |
| 288 | |
| 289 ;----------------------------------------------------------------------------- | |
| 290 ; erases range in 4kB steps | |
| 291 | |
| 292 comm_erase_range4kb: | |
| 293 movlw 0x42 ; send echo | |
| 294 movwf TXREG1 | |
| 354 | 295 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 296 |
| 297 bcf INTCON,GIE ; All interrups off! | |
| 298 | |
| 299 rcall comm_get_flash_address ; Get three bytes address or return | |
| 300 btfsc rs232_recieve_overflow ; Got Data? | |
| 301 bra comm_download_mode0 ; No, Done. | |
| 302 | |
| 350 | 303 rcall comm_write_get_byte |
| 0 | 304 btfsc rs232_recieve_overflow ; Got byte? |
| 305 bra comm_download_mode0 ; No, Done. | |
| 306 movff RCREG1,lo | |
| 420 | 307 |
| 308 ; Got 4bytes: 3bytes address and 1 bytes (lo) amount of 4kB blocks | |
| 0 | 309 |
| 310 comm_erase_range4kb1: | |
| 311 call ext_flash_erase4kB ; Erase block! | |
| 312 | |
| 313 movlw 0x10 | |
| 314 addwf ext_flash_address+1,F | |
| 315 movlw .0 | |
| 316 addwfc ext_flash_address+2,F ; Increase address by .4096, or 0x1000 | |
| 317 decfsz lo,F | |
| 318 bra comm_erase_range4kb1 ; Loop until lo=zero | |
| 319 | |
| 320 bra comm_download_mode0 ; Done (Sends the 4C OK too). | |
| 321 | |
| 322 ;----------------------------------------------------------------------------- | |
| 323 | |
| 324 comm_erase_4kb: ; Get 3 bytes start address | |
| 325 bcf INTCON,GIE ; All interrups off! | |
| 326 | |
| 327 rcall comm_get_flash_address ; Get three bytes address or return | |
| 328 btfsc rs232_recieve_overflow ; Got Data? | |
| 329 bra comm_download_mode0 ; No, Done. | |
| 330 | |
| 331 call ext_flash_erase4kB ; Erase one block | |
| 332 bra comm_download_mode0 ; Done. | |
| 333 | |
| 334 ;----------------------------------------------------------------------------- | |
| 335 | |
| 336 comm_write_range: ; Get 3 bytes start address | |
| 337 movlw 0x30 ; send echo | |
| 338 movwf TXREG1 | |
| 354 | 339 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 340 |
| 341 bcf INTCON,GIE ; All interrups off! | |
| 342 | |
| 343 rcall comm_get_flash_address ; Get three bytes address or return | |
| 344 btfsc rs232_recieve_overflow ; Got Data? | |
| 345 bra comm_download_mode0 ; No, Done. | |
| 346 | |
| 347 comm_write_range_loop: | |
| 350 | 348 rcall comm_write_get_byte |
| 0 | 349 btfsc rs232_recieve_overflow ; Got byte? |
| 420 | 350 bra comm_download_mode0 ; No, Done (and send OK byte too). |
| 0 | 351 movf RCREG1,W |
|
423
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
352 ; bsf NCTS ; Hold Bluetooth Chip (Requires PC/Android/iOS side to use flow control...) |
|
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
353 call ext_flash_byte_write_comms ; write one byte |
|
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
354 ; bcf NCTS ; Release Bluetooth Chip (Requires PC/Android/iOS side to use flow control...) |
| 0 | 355 call incf_ext_flash_address_p1 ; increase address+1 |
| 420 | 356 bra comm_write_range_loop |
| 0 | 357 |
| 358 ;----------------------------------------------------------------------------- | |
| 359 | |
| 360 comm_send_range: ; Get 3 bytes start address and 3 bytes amount | |
| 361 movlw 0x20 ; send echo | |
| 362 movwf TXREG1 | |
| 354 | 363 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 364 |
| 365 bcf INTCON,GIE ; All interrups off! | |
| 366 | |
| 367 rcall comm_get_flash_address ; Get three bytes address or return | |
| 368 btfsc rs232_recieve_overflow ; Got Data? | |
| 369 bra comm_download_mode0 ; No, Done. | |
| 370 | |
| 350 | 371 rcall comm_write_get_byte |
| 0 | 372 btfsc rs232_recieve_overflow ; Got byte? |
| 373 bra comm_download_mode0 ; No, Done. | |
|
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
374 movff RCREG1,up |
| 350 | 375 rcall comm_write_get_byte |
| 0 | 376 btfsc rs232_recieve_overflow ; Got byte? |
| 377 bra comm_download_mode0 ; No, Done. | |
| 378 movff RCREG1,hi | |
| 350 | 379 rcall comm_write_get_byte |
| 0 | 380 btfsc rs232_recieve_overflow ; Got byte? |
| 381 bra comm_download_mode0 ; No, Done. | |
| 382 movff RCREG1,lo | |
| 383 | |
| 384 ; If lo==0, we must precondition hi because there is to many bytes send ! | |
| 385 movf lo,W | |
| 386 bnz $+4 | |
| 387 decf hi,F | |
| 388 | |
|
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
389 movlw 0x40 |
|
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
390 cpfslt up ; Abort when up > 0x3F |
|
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
391 bra comm_download_mode0 ; Abort |
|
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
392 |
|
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
393 ; 6bytes received, send data |
|
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
394 ; needs ext_flash_address:3 start address and up:hi:lo amount |
|
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
395 |
| 0 | 396 call ext_flash_read_block_start |
| 397 movwf TXREG1 | |
| 398 | |
| 399 bra comm_send_range24 ; counter 24bit | |
| 400 comm_send_range24_loop: | |
| 401 call ext_flash_read_block ; Read one byte | |
| 402 movwf TXREG1 ; Start new transmit | |
| 403 comm_send_range24: | |
| 354 | 404 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 405 decfsz lo,F |
| 406 bra comm_send_range24_loop | |
| 407 decf hi,F | |
| 408 movlw 0xFF | |
| 409 cpfseq hi | |
| 410 bra comm_send_range24_loop | |
| 411 decf up,F | |
| 412 movlw 0xFF | |
| 413 cpfseq up | |
| 414 bra comm_send_range24_loop | |
| 415 call ext_flash_read_block_stop | |
| 416 | |
| 417 bra comm_download_mode0 ; Done. | |
| 418 | |
| 419 ;----------------------------------------------------------------------------- | |
| 420 | |
| 421 comm_get_flash_address: | |
| 350 | 422 rcall comm_write_get_byte |
| 0 | 423 btfsc rs232_recieve_overflow ; Got byte? |
| 424 return ; No, return | |
| 425 movff RCREG1,ext_flash_address+2 | |
| 350 | 426 rcall comm_write_get_byte |
| 0 | 427 btfsc rs232_recieve_overflow ; Got byte? |
| 428 return ; No, return | |
| 429 movff RCREG1,ext_flash_address+1 | |
| 350 | 430 rcall comm_write_get_byte |
| 0 | 431 btfsc rs232_recieve_overflow ; Got byte? |
| 432 return ; No, return | |
| 433 movff RCREG1,ext_flash_address+0 | |
| 434 return | |
| 435 | |
| 436 ;----------------------------------------------------------------------------- | |
| 437 | |
| 438 comm_download_mode: | |
| 439 ; Enable comm download mode | |
| 440 WIN_SMALL comm_status2_column, comm_status2_row | |
| 441 STRCPY_TEXT_PRINT tUsbDownloadMode; Download mode enabled | |
| 442 bsf INTCON,GIE ; All interrups on | |
| 354 | 443 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 444 movlw 0xBB ; Command Echo |
| 445 movwf TXREG1 ; Send Answer | |
| 446 comm_download_mode0: | |
| 447 bsf INTCON,GIE ; All interrups on | |
| 354 | 448 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 449 movlw 0x4C ; 4C in service mode |
| 450 btfss comm_service_enabled | |
| 451 movlw 0x4D ; 4D in download mode | |
| 452 movwf TXREG1 ; Send Answer | |
| 453 movlw timeout_service_mode | |
| 454 movwf timeout_counter ; Timeout | |
| 455 bcf switch_right | |
| 456 comm_download_mode1: | |
| 457 bcf onesecupdate | |
| 458 dcfsnz timeout_counter,F | |
| 459 bra comm_service_exit ; Timeout -> Exit | |
| 460 comm_download_mode2: | |
| 350 | 461 rcall comm_write_get_byte ; Check for a byte |
| 0 | 462 btfsc comm_service_enabled |
| 463 btg LEDr ; Blink in Service mode | |
| 464 btfss vusb_in ; USB plugged in? | |
| 465 bra comm_service_exit_nousb ; Disconnected -> Exit | |
| 466 btfsc switch_right ; Abort with right | |
| 467 bra comm_service_exit | |
| 468 btfsc onesecupdate | |
| 469 bra comm_download_mode1 | |
| 470 btfsc rs232_recieve_overflow | |
| 471 bra comm_download_mode2 ; Wait for command byte | |
| 472 | |
| 473 ; command received! | |
| 474 bcf LEDr | |
| 475 movlw 0xFF | |
| 476 cpfseq RCREG1 | |
| 477 bra $+4 | |
| 478 bra comm_service_exit ; exit | |
| 479 movlw "a" | |
| 480 cpfseq RCREG1 | |
| 481 bra $+4 | |
| 482 bra comm_send_headers ; Send all 256 dive headers | |
| 483 movlw "b" | |
| 484 cpfseq RCREG1 | |
| 485 bra $+4 | |
| 486 bra comm_set_time ; Read time and date from the PC and set clock | |
| 487 movlw "c" | |
| 488 cpfseq RCREG1 | |
| 489 bra $+4 | |
| 490 bra comm_set_custom_text ; Send a opt_name_length byte string of custom text. | |
| 378 | 491 movlw "f" ; 0x66 |
| 0 | 492 cpfseq RCREG1 |
| 493 bra $+4 | |
| 494 bra comm_send_dive ; Send header and profile for one dive | |
| 495 movlw "i" | |
| 496 cpfseq RCREG1 | |
| 497 bra $+4 | |
| 498 bra comm_identify ; Send firmware, serial, etc. | |
|
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
499 movlw "j" |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
500 cpfseq RCREG1 |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
501 bra $+4 |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
502 bra comm_hardware_descriptor ; Send hardware descriptor byte |
|
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
503 movlw 0x60 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
504 cpfseq RCREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
505 bra $+4 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
506 bra comm_feature_and_hardware ; Send more detailed informations |
| 0 | 507 movlw "n" |
| 508 cpfseq RCREG1 | |
| 509 bra $+4 | |
| 80 | 510 goto comm_send_string ; Send a 15byte string to the screen |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
511 movlw "m" |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
512 cpfseq RCREG1 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
513 bra $+4 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
514 goto comm_send_compact_headers ; Send all 256 compact headers |
| 0 | 515 movlw "l" |
| 516 cpfseq RCREG1 | |
| 517 bra $+4 | |
| 518 call TFT_dump_screen ; Dump the screen contents | |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
519 movlw "r" |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
520 cpfseq RCREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
521 bra $+4 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
522 bra comm_read_setting ; Read a setting (And send via USB) |
| 80 | 523 movlw "w" |
| 524 cpfseq RCREG1 | |
| 525 bra $+4 | |
| 526 bra comm_write_setting ; Write a setting (Into RAM) | |
| 527 movlw "x" | |
| 528 cpfseq RCREG1 | |
| 529 bra $+4 | |
| 530 bra comm_option_reset_all ; Reset all options to factory default. | |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
531 |
| 0 | 532 |
| 533 btfss comm_service_enabled ; Done for Download mode | |
| 534 bra comm_download_mode0 ; Loop with timeout reset | |
| 535 | |
| 536 movlw 0x20 | |
| 537 cpfseq RCREG1 | |
| 538 bra $+4 | |
| 539 bra comm_send_range ; send hi:lo:temp1 bytes starting from ext_flash_address:3 | |
| 540 movlw 0x22 | |
| 541 cpfseq RCREG1 | |
| 542 bra $+4 | |
| 543 bra comm_reset_logbook_pointers ; Resets all logbook pointers and the logbook (!) | |
| 544 movlw 0x23 | |
| 545 cpfseq RCREG1 | |
| 546 bra $+4 | |
| 547 bra comm_reset_battery_gauge ; Resets battery gauge registers | |
| 548 movlw 0x30 | |
| 549 cpfseq RCREG1 | |
| 550 bra $+4 | |
| 551 bra comm_write_range ; write bytes starting from ext_flash_address:3 (Stop when timeout) | |
| 552 movlw 0x40 | |
| 553 cpfseq RCREG1 | |
| 554 bra $+4 | |
| 555 bra comm_erase_4kb ; erases 4kB block from ext_flash_address:3 (Warning: No confirmation or built-in security here...) | |
| 556 movlw 0x42 | |
| 557 cpfseq RCREG1 | |
| 558 bra $+4 | |
| 559 bra comm_erase_range4kb ; erases range in 4kB steps (Get 3 bytes address and 1byte amount of 4kB blocks) | |
| 560 movlw 0x50 | |
| 561 cpfseq RCREG1 | |
| 562 bra $+4 | |
|
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
563 bra comm_send_firmware ; send firmware to bootloader |
| 147 | 564 ; movlw "t" |
| 565 ; cpfseq RCREG1 | |
| 566 ; bra $+4 | |
| 567 ; goto testloop ; Start raw-data testloop | |
| 0 | 568 movlw 0xC1 |
| 569 cpfseq RCREG1 | |
| 570 bra $+4 | |
| 571 bra comm_service_ll_bootloader ; Start low-level bootloader | |
| 572 bra comm_download_mode0 ; Loop with timeout reset | |
| 573 | |
| 574 ;----------------------------------------------------------------------------- | |
| 575 | |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
576 comm_send_compact_headers: |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
577 movlw "m" ; send echo |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
578 movwf TXREG1 |
|
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
579 ; Send 13 bytes/dive (Compact Header) |
|
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
580 ; 1st: 200009h-200016h |
|
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
581 ; 2nd: 201009h-201016h |
|
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
582 ; 3rd: 202009h-202016h |
|
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
583 ; 100: 264009h-264016h |
|
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
584 ; 256: 2FF009h-2FF016h |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
585 movlw 0x1F |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
586 movwf ext_flash_address+2 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
587 movlw 0xF0 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
588 movwf ext_flash_address+1 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
589 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
590 comm_send_compact_headers2: |
|
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
591 movlw 0x09 |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
592 movwf ext_flash_address+0 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
593 ; Adjust address for next dive |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
594 movlw 0x10 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
595 addwf ext_flash_address+1 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
596 movlw 0x00 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
597 addwfc ext_flash_address+2 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
598 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
599 movlw 0x30 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
600 cpfseq ext_flash_address+2 ; All 256 dive send? |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
601 bra comm_send_compact_headers4 ; No, continue |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
602 bra comm_download_mode0 ; Done. Loop with timeout reset |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
603 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
604 comm_send_compact_headers4: |
|
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
605 movlw .13 |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
606 movwf lo ; Counter |
| 354 | 607 rcall comm_rs232_wait_tx ; Wait for UART |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
608 call ext_flash_read_block_start ; 1st byte |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
609 movwf TXREG1 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
610 bra comm_send_compact_headers3 ; counter 24bit |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
611 comm_send_compact_headers_loop: |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
612 call ext_flash_read_block ; Read one byte |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
613 movwf TXREG1 ; Start new transmit |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
614 comm_send_compact_headers3: |
| 354 | 615 rcall comm_rs232_wait_tx ; Wait for UART |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
616 decfsz lo,F |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
617 bra comm_send_compact_headers_loop |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
618 call ext_flash_read_block_stop |
|
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
619 |
|
356
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
620 ; Offset to total dive counter |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
621 movlw .80 |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
622 movwf ext_flash_address+0 |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
623 call ext_flash_read_block_start ; 1st byte |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
624 movwf TXREG1 |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
625 rcall comm_rs232_wait_tx ; Wait for UART |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
626 call ext_flash_read_block ; 2nd byte |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
627 movwf TXREG1 |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
628 call ext_flash_read_block_stop |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
629 rcall comm_rs232_wait_tx ; Wait for UART |
|
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
630 |
| 391 | 631 ; Offset to Logbook-Profile version |
| 632 movlw .8 | |
| 633 movwf ext_flash_address+0 | |
| 634 call ext_flash_byte_read ; Get byte | |
| 635 movwf TXREG1 | |
| 354 | 636 rcall comm_rs232_wait_tx ; Wait for UART |
|
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
637 bra comm_send_compact_headers2 ; continue |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
638 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
639 |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
640 ;----------------------------------------------------------------------------- |
|
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
641 |
| 0 | 642 comm_send_headers: |
| 643 movlw "a" ; send echo | |
| 644 movwf TXREG1 | |
| 645 ; Send 256 bytes/dive (Header) | |
| 646 ; 1st: 200000h-2000FFh | |
| 647 ; 2nd: 201000h-2010FFh | |
| 648 ; 3rd: 202000h-2020FFh | |
| 649 ; 100: 264000h-2640FFh | |
| 650 ; 256: 2FF000h-2FF0FFh | |
| 651 movlw 0x1F | |
| 652 movwf ext_flash_address+2 | |
| 653 movlw 0xF0 | |
| 654 movwf ext_flash_address+1 | |
| 655 | |
| 656 comm_send_headers2: | |
| 657 movlw 0x00 | |
| 658 movwf ext_flash_address+0 | |
| 659 ; Adjust address for next dive | |
| 660 movlw 0x10 | |
| 661 addwf ext_flash_address+1 | |
| 662 movlw 0x00 | |
| 663 addwfc ext_flash_address+2 | |
| 664 | |
| 665 movlw 0x30 | |
| 666 cpfseq ext_flash_address+2 ; All 256 dive send? | |
| 667 bra comm_send_headers4 ; No, continue | |
| 668 bra comm_download_mode0 ; Done. Loop with timeout reset | |
| 669 | |
| 670 comm_send_headers4: | |
| 671 clrf lo ; Counter | |
| 354 | 672 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 673 call ext_flash_read_block_start ; 1st byte |
| 674 movwf TXREG1 | |
| 675 bra comm_send_headers3 ; counter 24bit | |
| 676 comm_send_headers_loop: | |
| 677 call ext_flash_read_block ; Read one byte | |
| 678 movwf TXREG1 ; Start new transmit | |
| 679 comm_send_headers3: | |
| 354 | 680 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 681 decfsz lo,F |
| 682 bra comm_send_headers_loop | |
| 683 call ext_flash_read_block_stop | |
| 684 bra comm_send_headers2 ; continue | |
| 685 | |
| 686 ;----------------------------------------------------------------------------- | |
| 80 | 687 |
| 688 comm_option_reset_all: ; Reset all options to factory default. | |
| 689 movlw "x" ; send echo | |
| 690 movwf TXREG1 | |
| 691 call option_reset_all | |
| 692 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
| 693 | |
| 694 ;----------------------------------------------------------------------------- | |
| 0 | 695 |
| 350 | 696 comm_write_get_byte: |
| 697 goto rs232_get_byte ; returns... | |
| 698 | |
| 354 | 699 comm_rs232_wait_tx: |
| 700 goto rs232_wait_tx ; returns... | |
| 350 | 701 |
| 0 | 702 comm_set_time: |
| 703 movlw "b" ; send echo | |
| 704 movwf TXREG1 | |
| 705 | |
| 354 | 706 rcall comm_rs232_wait_tx ; wait for UART |
| 350 | 707 rcall comm_write_get_byte |
| 0 | 708 btfsc rs232_recieve_overflow ; Got byte? |
|
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
709 bra comm_download_mode0 ; No, abort |
| 0 | 710 movff RCREG1, hours |
| 711 movlw d'24' | |
| 712 cpfslt hours | |
| 713 clrf hours | |
| 350 | 714 rcall comm_write_get_byte |
| 0 | 715 btfsc rs232_recieve_overflow ; Got byte? |
|
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
716 bra comm_download_mode0 ; No, abort |
| 0 | 717 movff RCREG1, mins |
| 718 movlw d'60' | |
| 719 cpfslt mins | |
| 720 clrf mins | |
| 350 | 721 rcall comm_write_get_byte |
| 0 | 722 btfsc rs232_recieve_overflow ; Got byte? |
|
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
723 bra comm_download_mode0 ; No, abort |
| 0 | 724 movff RCREG1, secs |
| 725 movlw d'60' | |
| 726 cpfslt secs | |
| 727 clrf secs | |
| 350 | 728 rcall comm_write_get_byte |
| 0 | 729 btfsc rs232_recieve_overflow ; Got byte? |
|
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
730 bra comm_download_mode0 ; No, abort |
| 0 | 731 movff RCREG1, month |
| 732 movlw d'13' | |
| 733 cpfslt month | |
| 734 movwf month | |
| 350 | 735 rcall comm_write_get_byte |
| 0 | 736 btfsc rs232_recieve_overflow ; Got byte? |
|
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
737 bra comm_download_mode0 ; No, abort |
|
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
738 call comm_check_day ; Check day |
| 350 | 739 rcall comm_write_get_byte |
| 0 | 740 btfsc rs232_recieve_overflow ; Got byte? |
|
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
741 bra comm_download_mode0 ; No, abort |
| 0 | 742 movff RCREG1, year |
| 743 movlw d'100' | |
| 744 cpfslt year | |
| 745 clrf year | |
| 746 ; All ok, set RTCC | |
| 747 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
| 748 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
| 749 | |
| 750 ;----------------------------------------------------------------------------- | |
| 751 ; Set OSTC3 custom text string (opt_name_length ascii chars). | |
| 752 ; | |
| 753 | |
| 754 comm_set_custom_text: | |
| 755 movlw "c" ; send echo | |
| 756 movwf TXREG1 | |
| 354 | 757 rcall comm_rs232_wait_tx ; wait for UART |
| 0 | 758 lfsr FSR2,opt_name |
| 759 movlw opt_name_length | |
| 760 movwf lo ; counter | |
| 761 comm_set_ctext_loop: | |
| 350 | 762 rcall comm_write_get_byte |
| 0 | 763 btfsc rs232_recieve_overflow ; Got byte? |
| 136 | 764 bra comm_set_ctext_loop_done ; no, abort |
| 7 | 765 movff RCREG1,POSTINC2 ; Store character |
| 0 | 766 decfsz lo,F |
| 767 bra comm_set_ctext_loop | |
| 136 | 768 comm_set_ctext_loop_done: |
| 769 tstfsz lo ; Got opt_name_length bytes? | |
| 770 bra comm_set_ctext_loop_done2 ; no, clear remaining chars | |
| 771 bra comm_download_mode0 ; Done. Loop with timeout reset | |
| 772 comm_set_ctext_loop_done2: | |
| 773 clrf POSTINC2 | |
| 774 decfsz lo,F | |
| 775 bra comm_set_ctext_loop_done2 | |
| 7 | 776 bra comm_download_mode0 ; Done. Loop with timeout reset |
| 0 | 777 |
| 778 ;----------------------------------------------------------------------------- | |
| 779 ; Reply Serial (2 bytes low:high), firmware (major.minor) and custom text. | |
| 780 ; | |
| 781 | |
| 782 comm_identify: | |
| 783 movlw "i" ; send echo | |
| 784 movwf TXREG1 | |
| 354 | 785 rcall comm_rs232_wait_tx ; wait for UART |
| 0 | 786 |
| 787 ;---- Read serial from internal EEPROM address 0000 | |
| 788 clrf EEADRH | |
| 789 clrf EEADR ; Get Serial number LOW | |
| 790 call read_eeprom ; read byte | |
| 791 movff EEDATA,lo | |
| 792 incf EEADR,F ; Get Serial number HIGH | |
| 793 call read_eeprom ; read byte | |
| 794 movff EEDATA,hi | |
| 795 | |
| 796 ;---- Emit serial number | |
| 797 movff lo,TXREG1 | |
| 354 | 798 rcall comm_rs232_wait_tx |
| 0 | 799 movff hi,TXREG1 |
| 354 | 800 rcall comm_rs232_wait_tx |
| 0 | 801 |
| 802 ;---- Emit fiwmware hi.lo | |
| 803 movlw softwareversion_x | |
| 804 movwf TXREG1 | |
| 354 | 805 rcall comm_rs232_wait_tx |
| 0 | 806 movlw softwareversion_y |
| 807 movwf TXREG1 | |
| 354 | 808 rcall comm_rs232_wait_tx |
| 0 | 809 |
| 810 ;---- Emit custom text | |
| 811 movlw opt_name_length | |
| 812 movwf hi | |
| 813 lfsr FSR2,opt_name | |
| 814 | |
| 815 common_identify_loop: | |
| 816 movff POSTINC2,TXREG1 | |
| 354 | 817 rcall comm_rs232_wait_tx |
| 0 | 818 decfsz hi,F |
| 819 bra common_identify_loop | |
| 820 | |
| 821 bra comm_download_mode0 ; Done. | |
| 822 | |
|
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
823 ;----------------------------------------------------------------------------- |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
824 ; Reply hardware descriptor byte |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
825 ; |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
826 |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
827 comm_hardware_descriptor: |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
828 movlw "j" ; send echo |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
829 movwf TXREG1 |
| 354 | 830 rcall comm_rs232_wait_tx ; wait for UART |
|
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
831 movff hardware_flag,TXREG1 |
|
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
832 bra comm_download_mode0 ; Done. |
| 0 | 833 |
|
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
834 comm_feature_and_hardware: |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
835 movlw 0x60 ; send echo |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
836 movwf TXREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
837 rcall comm_rs232_wait_tx ; wait for UART |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
838 movlw 0x00 ; Hardware high byte |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
839 movwf TXREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
840 rcall comm_rs232_wait_tx ; wait for UART |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
841 movff hardware_flag,TXREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
842 rcall comm_rs232_wait_tx ; wait for UART |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
843 movlw 0x00 ; Feature high Byte |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
844 movwf TXREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
845 rcall comm_rs232_wait_tx ; wait for UART |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
846 movlw 0x00 ; Feature low Byte |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
847 movwf TXREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
848 rcall comm_rs232_wait_tx ; wait for UART |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
849 movlw 0x00 ; Model descriptor byte |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
850 movwf TXREG1 |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
851 bra comm_download_mode0 ; Done. |
|
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
852 |
| 0 | 853 ;----------------------------------------------------------------------------- |
| 854 | |
| 855 comm_send_dive: | |
| 378 | 856 movlw "f"; 0x66 ; send echo |
| 0 | 857 movwf TXREG1 |
| 858 | |
| 350 | 859 rcall comm_write_get_byte |
| 0 | 860 btfsc rs232_recieve_overflow ; Got byte? |
| 861 bra comm_download_mode0 ; No, abort! | |
| 862 movff RCREG1,lo ; Store dive number (0-255) | |
| 863 ; First, send the header (again) | |
| 864 ; Set ext_flash_address:3 to TOC entry of this dive | |
| 865 ; 1st: 200000h-200FFFh -> lo=0 | |
| 866 ; 2nd: 201000h-201FFFh -> lo=1 | |
| 867 ; 3rd: 202000h-202FFFh -> lo=2 | |
| 868 ; 256: 2FF000h-2FFFFFh -> lo=255 | |
| 869 clrf ext_flash_address+0 | |
| 870 clrf ext_flash_address+1 | |
| 871 movlw 0x20 | |
| 872 movwf ext_flash_address+2 | |
| 873 movlw .16 | |
| 874 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) | |
| 875 movf PRODL,W | |
| 876 addwf ext_flash_address+1,F | |
| 877 movf PRODH,W | |
| 878 addwfc ext_flash_address+2,F | |
| 879 | |
| 880 incf_ext_flash_address d'2' ; Skip 0xFA, 0xFA | |
| 881 call ext_flash_byte_read_plus ; Read start address of profile | |
| 882 movff temp1,ext_flash_log_pointer+0 | |
| 883 call ext_flash_byte_read_plus ; Read start address of profile | |
| 884 movff temp1,ext_flash_log_pointer+1 | |
| 885 call ext_flash_byte_read_plus ; Read start address of profile | |
| 886 movff temp1,ext_flash_log_pointer+2 | |
| 887 call ext_flash_byte_read_plus ; Read end address of profile | |
| 888 movff temp1,convert_value_temp+0 | |
| 889 call ext_flash_byte_read_plus ; Read end address of profile | |
| 890 movff temp1,convert_value_temp+1 | |
| 891 call ext_flash_byte_read_plus ; Read end address of profile | |
| 892 movff temp1,convert_value_temp+2 | |
| 893 decf_ext_flash_address d'8' ; Back again to first 0xFA in header | |
| 894 | |
| 895 movf ext_flash_log_pointer+0,W | |
| 896 cpfseq convert_value_temp+0 ; Equal? | |
| 897 bra comm_send_dive1 ; No, Send header | |
| 898 | |
| 899 movf ext_flash_log_pointer+1,W | |
| 900 cpfseq convert_value_temp+1 ; Equal? | |
| 901 bra comm_send_dive1 ; No, Send header | |
| 902 | |
| 903 movf ext_flash_log_pointer+2,W | |
| 904 cpfseq convert_value_temp+2 ; Equal? | |
| 905 bra comm_send_dive1 ; No, Send header | |
| 906 | |
| 907 ; Start=End -> Not good, abort | |
| 908 bra comm_download_mode0 ; Done. Loop with timeout reset | |
| 909 | |
| 910 comm_send_dive1: | |
| 911 ; Send header | |
| 912 clrf hi ; Counter | |
| 354 | 913 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 914 call ext_flash_read_block_start ; 1st byte |
| 915 movwf TXREG1 | |
| 916 bra comm_send_dive_header | |
| 917 comm_send_dive_header2: | |
| 918 call ext_flash_read_block ; Read one byte | |
| 919 movwf TXREG1 ; Start new transmit | |
| 920 comm_send_dive_header: | |
| 354 | 921 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 922 decfsz hi,F |
| 923 bra comm_send_dive_header2 | |
| 924 call ext_flash_read_block_stop | |
| 925 | |
| 926 ; Set address for profile | |
| 927 movff ext_flash_log_pointer+0,ext_flash_address+0 | |
| 928 movff ext_flash_log_pointer+1,ext_flash_address+1 | |
| 929 movff ext_flash_log_pointer+2,ext_flash_address+2 | |
| 930 | |
| 931 movlw .6 ; Skip 6byte short header in profile - only for internal use | |
| 932 call incf_ext_flash_address0_0x20 ; increases bytes in ext_flash_address:3 with 0x200000 bank switching | |
| 933 | |
| 934 comm_send_dive_profile: | |
| 935 call ext_flash_byte_read_plus_0x20 ; Read one byte into temp1, takes care of banking at 0x200000 | |
| 354 | 936 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 937 movff temp1,TXREG1 ; Send a byte |
| 938 | |
| 939 ; 24bit compare with end address | |
| 940 movff convert_value_temp+0,WREG | |
| 941 cpfseq ext_flash_address+0 | |
| 942 bra comm_send_dive_profile | |
| 943 movff convert_value_temp+1,WREG | |
| 944 cpfseq ext_flash_address+1 | |
| 945 bra comm_send_dive_profile | |
| 946 movff convert_value_temp+2,WREG | |
| 947 cpfseq ext_flash_address+2 | |
| 948 bra comm_send_dive_profile | |
| 949 | |
| 238 | 950 rcall comm_read_setting_wait ; Wait for UART |
| 0 | 951 bra comm_download_mode0 ; Done. Loop with timeout reset |
| 952 | |
| 953 ;----------------------------------------------------------------------------- | |
| 954 | |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
955 comm_read_setting: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
956 movlw "r" |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
957 movwf TXREG1 |
| 350 | 958 rcall comm_write_get_byte |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
959 btfsc rs232_recieve_overflow ; Got byte? |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
960 bra comm_read_abort ; No, abort! |
| 238 | 961 rcall comm_read_setting_wait ; Wait for UART |
| 962 movlw 0x0F | |
| 963 cpfsgt RCREG1 ; 0x00-0x0F: unused | |
| 964 bra comm_read_abort ; abort! | |
| 965 subwf RCREG1,W ; Subtract unused commands | |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
966 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
967 bra comm_read_gas1 ; RCREG1=0x10 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
968 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
969 bra comm_read_gas2 ; RCREG1=0x11 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
970 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
971 bra comm_read_gas3 ; RCREG1=0x12 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
972 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
973 bra comm_read_gas4 ; RCREG1=0x13 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
974 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
975 bra comm_read_gas5 ; RCREG1=0x14 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
976 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
977 bra comm_read_dil1 ; RCREG1=0x15 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
978 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
979 bra comm_read_dil2 ; RCREG1=0x16 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
980 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
981 bra comm_read_dil3 ; RCREG1=0x17 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
982 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
983 bra comm_read_dil4 ; RCREG1=0x18 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
984 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
985 bra comm_read_dil5 ; RCREG1=0x19 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
986 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
987 bra comm_read_sp1 ; RCREG1=0x1A |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
988 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
989 bra comm_read_sp2 ; RCREG1=0x1B |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
990 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
991 bra comm_read_sp3 ; RCREG1=0x1C |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
992 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
993 bra comm_read_sp4 ; RCREG1=0x1D |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
994 dcfsnz WREG |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
995 bra comm_read_sp5 ; RCREG1=0x1E |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
996 dcfsnz WREG |
| 159 | 997 movff opt_ccr_mode, TXREG1 ; RCREG1=0x1F |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
998 dcfsnz WREG |
| 159 | 999 movff opt_dive_mode, TXREG1 ; RCREG1=0x20 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1000 dcfsnz WREG |
| 159 | 1001 movff char_I_deco_model, TXREG1 ; RCREG1=0x21 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1002 dcfsnz WREG |
| 159 | 1003 movff opt_ppO2_max, TXREG1 ; RCREG1=0x22 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1004 dcfsnz WREG |
| 159 | 1005 movff opt_ppO2_min, TXREG1 ; RCREG1=0x23 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1006 dcfsnz WREG |
| 159 | 1007 movff char_I_extra_time, TXREG1 ; RCREG1=0x24 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1008 dcfsnz WREG |
| 159 | 1009 movff opt_GF_low, TXREG1 ; RCREG1=0x25 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1010 dcfsnz WREG |
| 159 | 1011 movff opt_GF_high, TXREG1 ; RCREG1=0x26 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1012 dcfsnz WREG |
| 159 | 1013 movff opt_aGF_low, TXREG1 ; RCREG1=0x27 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1014 dcfsnz WREG |
| 159 | 1015 movff opt_aGF_high, TXREG1 ; RCREG1=0x28 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1016 dcfsnz WREG |
| 159 | 1017 movff opt_enable_aGF, TXREG1 ; RCREG1=0x29 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1018 dcfsnz WREG |
| 159 | 1019 movff char_I_saturation_multiplier, TXREG1; RCREG1=0x2A |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1020 dcfsnz WREG |
| 159 | 1021 movff char_I_desaturation_multiplier, TXREG1; RCREG1=0x2B |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1022 dcfsnz WREG |
| 159 | 1023 movff opt_last_stop, TXREG1 ; RCREG1=0x2C |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1024 dcfsnz WREG |
| 159 | 1025 movff opt_brightness, TXREG1 ; RCREG1=0x2D |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1026 dcfsnz WREG |
| 159 | 1027 movff opt_units, TXREG1 ; RCREG1=0x2E |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1028 dcfsnz WREG |
| 159 | 1029 movff opt_sampling_rate, TXREG1 ; RCREG1=0x2F |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1030 dcfsnz WREG |
| 159 | 1031 movff opt_salinity, TXREG1 ; RCREG1=0x30 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1032 dcfsnz WREG |
| 159 | 1033 movff opt_dive_color_scheme, TXREG1 ; RCREG1=0x31 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1034 dcfsnz WREG |
| 159 | 1035 movff opt_language, TXREG1 ; RCREG1=0x32 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1036 dcfsnz WREG |
| 159 | 1037 movff opt_dateformat, TXREG1 ; RCREG1=0x33 |
|
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1038 dcfsnz WREG |
| 159 | 1039 movff opt_compass_gain, TXREG1 ; RCREG1=0x34 |
| 110 | 1040 dcfsnz WREG |
| 159 | 1041 movff opt_pressure_adjust, TXREG1 ; RCREG1=0x35 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1042 dcfsnz WREG |
| 159 | 1043 movff opt_enable_safetystop, TXREG1 ; RCREG1=0x36 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1044 dcfsnz WREG |
| 159 | 1045 movff opt_calibration_O2_ratio, TXREG1; RCREG1=0x37 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1046 dcfsnz WREG |
| 159 | 1047 movff opt_sensor_fallback, TXREG1 ; RCREG1=0x38 |
| 1048 dcfsnz WREG | |
| 1049 movff opt_flip_screen, TXREG1 ; RCREG1=0x39 | |
| 223 | 1050 dcfsnz WREG |
| 1051 movff opt_cR_button_left, TXREG1 ; RCREG1=0x3A | |
| 1052 dcfsnz WREG | |
| 1053 movff opt_cR_button_right, TXREG1 ; RCREG1=0x3B | |
|
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1054 dcfsnz WREG |
|
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1055 movff char_I_bottom_usage, TXREG1 ; RCREG1=0x3C |
|
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1056 dcfsnz WREG |
|
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1057 movff char_I_deco_usage, TXREG1 ; RCREG1=0x3D |
|
303
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
299
diff
changeset
|
1058 dcfsnz WREG |
|
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1059 movff opt_modwarning, TXREG1 ; RCREG1=0x3E |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1060 dcfsnz WREG |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1061 movff opt_vsitextv2, TXREG1 ; RCREG1=0x3F |
|
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
1062 dcfsnz WREG |
|
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
1063 movff opt_vsigraph, TXREG1 ; RCREG1=0x40 |
|
333
14b466f66a7f
Extend the Ceiling custom-view with ppO2 and current GF
Janos Kovacs <kovjanos@gmail.com>
parents:
326
diff
changeset
|
1064 dcfsnz WREG |
|
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1065 movff opt_showppo2, TXREG1 ; RCREG1=0x41 |
|
368
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1066 dcfsnz WREG |
|
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1067 movff opt_temperature_adjust, TXREG1 ; RCREG1=0x42 |
|
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1068 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1069 movff opt_safety_stop_length, TXREG1 ; RCREG1=0x43 |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1070 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1071 movff opt_safety_stop_start, TXREG1 ; RCREG1=0x44 |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1072 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1073 movff opt_safety_stop_end, TXREG1 ; RCREG1=0x45 |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1074 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1075 movff opt_safety_stop_reset, TXREG1 ; RCREG1=0x46 |
| 424 | 1076 dcfsnz WREG |
| 1077 clrf TXREG1 ; RCREG1=0x47, ignore conservatism for standard hwOS | |
|
444
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1078 dcfsnz WREG |
|
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1079 movff opt_diveTimeout, TXREG1 ; RCREG1=0x48 |
|
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1080 |
| 424 | 1081 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1082 comm_read_abort: |
| 255 | 1083 comm_read_done: |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1084 bra comm_download_mode0 ; Done. Loop with timeout reset |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1085 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1086 comm_read_setting_wait: |
| 354 | 1087 bra comm_rs232_wait_tx ; Wait for UART (and return!) |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1088 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1089 comm_read_gas1: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1090 movff opt_gas_O2_ratio+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1091 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1092 movff opt_gas_He_ratio+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1093 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1094 movff opt_gas_type+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1095 rcall comm_read_setting_wait ; Wait for UART |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1096 movff opt_OC_bail_gas_change+0,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1097 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1098 comm_read_gas2: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1099 movff opt_gas_O2_ratio+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1100 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1101 movff opt_gas_He_ratio+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1102 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1103 movff opt_gas_type+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1104 rcall comm_read_setting_wait ; Wait for UART |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1105 movff opt_OC_bail_gas_change+1,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1106 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1107 comm_read_gas3: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1108 movff opt_gas_O2_ratio+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1109 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1110 movff opt_gas_He_ratio+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1111 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1112 movff opt_gas_type+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1113 rcall comm_read_setting_wait ; Wait for UART |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1114 movff opt_OC_bail_gas_change+2,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1115 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1116 comm_read_gas4: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1117 movff opt_gas_O2_ratio+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1118 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1119 movff opt_gas_He_ratio+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1120 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1121 movff opt_gas_type+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1122 rcall comm_read_setting_wait ; Wait for UART |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1123 movff opt_OC_bail_gas_change+3,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1124 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1125 comm_read_gas5: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1126 movff opt_gas_O2_ratio+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1127 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1128 movff opt_gas_He_ratio+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1129 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1130 movff opt_gas_type+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1131 rcall comm_read_setting_wait ; Wait for UART |
|
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1132 movff opt_OC_bail_gas_change+4,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1133 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1134 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1135 comm_read_dil1: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1136 movff opt_dil_O2_ratio+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1137 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1138 movff opt_dil_He_ratio+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1139 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1140 movff opt_dil_type+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1141 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1142 movff char_I_dil_change+0,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1143 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1144 comm_read_dil2: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1145 movff opt_dil_O2_ratio+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1146 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1147 movff opt_dil_He_ratio+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1148 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1149 movff opt_dil_type+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1150 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1151 movff char_I_dil_change+1,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1152 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1153 comm_read_dil3: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1154 movff opt_dil_O2_ratio+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1155 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1156 movff opt_dil_He_ratio+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1157 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1158 movff opt_dil_type+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1159 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1160 movff char_I_dil_change+2,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1161 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1162 comm_read_dil4: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1163 movff opt_dil_O2_ratio+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1164 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1165 movff opt_dil_He_ratio+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1166 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1167 movff opt_dil_type+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1168 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1169 movff char_I_dil_change+3,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1170 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1171 comm_read_dil5: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1172 movff opt_dil_O2_ratio+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1173 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1174 movff opt_dil_He_ratio+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1175 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1176 movff opt_dil_type+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1177 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1178 movff char_I_dil_change+4,TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1179 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1180 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1181 comm_read_sp1: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1182 movff char_I_setpoint_cbar+0, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1183 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1184 movff char_I_setpoint_change+0, TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1185 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1186 comm_read_sp2: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1187 movff char_I_setpoint_cbar+1, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1188 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1189 movff char_I_setpoint_change+1, TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1190 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1191 comm_read_sp3: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1192 movff char_I_setpoint_cbar+2, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1193 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1194 movff char_I_setpoint_change+2, TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1195 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1196 comm_read_sp4: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1197 movff char_I_setpoint_cbar+3, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1198 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1199 movff char_I_setpoint_change+3, TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1200 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1201 comm_read_sp5: |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1202 movff char_I_setpoint_cbar+4, TXREG1 |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1203 rcall comm_read_setting_wait ; Wait for UART |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1204 movff char_I_setpoint_change+4, TXREG1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1205 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
| 110 | 1206 |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1207 |
| 80 | 1208 ;----------------------------------------------------------------------------- |
| 238 | 1209 comm_write_gas1: |
| 1210 movff RCREG1,opt_gas_O2_ratio+0 | |
| 1211 rcall comm_write_get_byte | |
| 1212 movff RCREG1,opt_gas_He_ratio+0 | |
| 1213 rcall comm_write_get_byte | |
| 1214 movff RCREG1,opt_gas_type+0 | |
| 1215 rcall comm_write_get_byte | |
| 1216 movff RCREG1,opt_OC_bail_gas_change+0 | |
| 1217 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1218 comm_write_gas2: | |
| 1219 movff RCREG1,opt_gas_O2_ratio+1 | |
| 1220 rcall comm_write_get_byte | |
| 1221 movff RCREG1,opt_gas_He_ratio+1 | |
| 1222 rcall comm_write_get_byte | |
| 1223 movff RCREG1,opt_gas_type+1 | |
| 1224 rcall comm_write_get_byte | |
| 1225 movff RCREG1,opt_OC_bail_gas_change+1 | |
| 1226 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1227 comm_write_gas3: | |
| 1228 movff RCREG1,opt_gas_O2_ratio+2 | |
| 1229 rcall comm_write_get_byte | |
| 1230 movff RCREG1,opt_gas_He_ratio+2 | |
| 1231 rcall comm_write_get_byte | |
| 1232 movff RCREG1,opt_gas_type+2 | |
| 1233 rcall comm_write_get_byte | |
| 1234 movff RCREG1,opt_OC_bail_gas_change+2 | |
| 1235 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1236 comm_write_gas4: | |
| 1237 movff RCREG1,opt_gas_O2_ratio+3 | |
| 1238 rcall comm_write_get_byte | |
| 1239 movff RCREG1,opt_gas_He_ratio+3 | |
| 1240 rcall comm_write_get_byte | |
| 1241 movff RCREG1,opt_gas_type+3 | |
| 1242 rcall comm_write_get_byte | |
| 1243 movff RCREG1,opt_OC_bail_gas_change+3 | |
| 1244 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1245 comm_write_gas5: | |
| 1246 movff RCREG1,opt_gas_O2_ratio+4 | |
| 1247 rcall comm_write_get_byte | |
| 1248 movff RCREG1,opt_gas_He_ratio+4 | |
| 1249 rcall comm_write_get_byte | |
| 1250 movff RCREG1,opt_gas_type+4 | |
| 1251 rcall comm_write_get_byte | |
| 1252 movff RCREG1,opt_OC_bail_gas_change+4 | |
| 1253 bra comm_write_abort ; Done. Loop with timeout reset | |
| 80 | 1254 |
| 1255 | |
| 1256 comm_write_setting: | |
| 1257 movlw "w" | |
| 1258 movwf TXREG1 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1259 rcall comm_write_get_byte ; "Byte 2" |
|
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1260 btfsc rs232_recieve_overflow ; Got byte? |
| 80 | 1261 bra comm_write_abort ; No, abort! |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1262 movff RCREG1,temp1 ; Copy |
|
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1263 rcall comm_write_get_byte ; "Byte 3" |
| 238 | 1264 rcall comm_read_setting_wait ; Wait for UART |
| 1265 movlw 0x0F | |
| 1266 cpfsgt temp1 ; 0x00-0x0F: unused | |
| 1267 bra comm_write_abort ; abort! | |
| 1268 subwf temp1,W ; Subtract unused commands | |
| 80 | 1269 dcfsnz WREG |
| 1270 bra comm_write_gas1 ; RCREG1=0x10 | |
| 1271 dcfsnz WREG | |
| 1272 bra comm_write_gas2 ; RCREG1=0x11 | |
| 1273 dcfsnz WREG | |
| 1274 bra comm_write_gas3 ; RCREG1=0x12 | |
| 1275 dcfsnz WREG | |
| 1276 bra comm_write_gas4 ; RCREG1=0x13 | |
| 1277 dcfsnz WREG | |
| 1278 bra comm_write_gas5 ; RCREG1=0x14 | |
| 1279 dcfsnz WREG | |
| 1280 bra comm_write_dil1 ; RCREG1=0x15 | |
| 1281 dcfsnz WREG | |
| 1282 bra comm_write_dil2 ; RCREG1=0x16 | |
| 1283 dcfsnz WREG | |
| 1284 bra comm_write_dil3 ; RCREG1=0x17 | |
| 1285 dcfsnz WREG | |
| 1286 bra comm_write_dil4 ; RCREG1=0x18 | |
| 1287 dcfsnz WREG | |
| 1288 bra comm_write_dil5 ; RCREG1=0x19 | |
| 1289 dcfsnz WREG | |
| 1290 bra comm_write_sp1 ; RCREG1=0x1A | |
| 1291 dcfsnz WREG | |
| 1292 bra comm_write_sp2 ; RCREG1=0x1B | |
| 1293 dcfsnz WREG | |
| 1294 bra comm_write_sp3 ; RCREG1=0x1C | |
| 1295 dcfsnz WREG | |
| 1296 bra comm_write_sp4 ; RCREG1=0x1D | |
| 1297 dcfsnz WREG | |
| 1298 bra comm_write_sp5 ; RCREG1=0x1E | |
| 1299 dcfsnz WREG | |
| 159 | 1300 movff RCREG1, opt_ccr_mode ; RCREG1=0x1F |
| 80 | 1301 dcfsnz WREG |
| 159 | 1302 movff RCREG1, opt_dive_mode ; RCREG1=0x20 |
| 80 | 1303 dcfsnz WREG |
| 159 | 1304 movff RCREG1, char_I_deco_model ; RCREG1=0x21 |
| 80 | 1305 dcfsnz WREG |
| 159 | 1306 movff RCREG1, opt_ppO2_max ; RCREG1=0x22 |
| 80 | 1307 dcfsnz WREG |
| 159 | 1308 movff RCREG1, opt_ppO2_min ; RCREG1=0x23 |
| 80 | 1309 dcfsnz WREG |
| 159 | 1310 movff RCREG1, char_I_extra_time ; RCREG1=0x24 |
| 80 | 1311 dcfsnz WREG |
| 159 | 1312 movff RCREG1, opt_GF_low ; RCREG1=0x25 |
| 80 | 1313 dcfsnz WREG |
| 159 | 1314 movff RCREG1, opt_GF_high ; RCREG1=0x26 |
| 80 | 1315 dcfsnz WREG |
| 159 | 1316 movff RCREG1, opt_aGF_low ; RCREG1=0x27 |
| 80 | 1317 dcfsnz WREG |
| 159 | 1318 movff RCREG1, opt_aGF_high ; RCREG1=0x28 |
| 80 | 1319 dcfsnz WREG |
| 159 | 1320 movff RCREG1, opt_enable_aGF ; RCREG1=0x29 |
| 80 | 1321 dcfsnz WREG |
| 159 | 1322 movff RCREG1, char_I_saturation_multiplier; RCREG1=0x2A |
| 80 | 1323 dcfsnz WREG |
| 159 | 1324 movff RCREG1, char_I_desaturation_multiplier; RCREG1=0x2B |
| 80 | 1325 dcfsnz WREG |
| 159 | 1326 movff RCREG1, opt_last_stop ; RCREG1=0x2C |
| 80 | 1327 dcfsnz WREG |
| 159 | 1328 movff RCREG1, opt_brightness ; RCREG1=0x2D |
| 80 | 1329 dcfsnz WREG |
| 159 | 1330 movff RCREG1, opt_units ; RCREG1=0x2E |
| 80 | 1331 dcfsnz WREG |
| 159 | 1332 movff RCREG1, opt_sampling_rate ; RCREG1=0x2F |
| 80 | 1333 dcfsnz WREG |
| 159 | 1334 movff RCREG1, opt_salinity ; RCREG1=0x30 |
| 80 | 1335 dcfsnz WREG |
| 159 | 1336 movff RCREG1, opt_dive_color_scheme ; RCREG1=0x31 |
| 80 | 1337 dcfsnz WREG |
| 159 | 1338 movff RCREG1, opt_language ; RCREG1=0x32 |
| 80 | 1339 dcfsnz WREG |
| 159 | 1340 movff RCREG1, opt_dateformat ; RCREG1=0x33 |
|
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1341 dcfsnz WREG |
| 159 | 1342 movff RCREG1, opt_compass_gain ; RCREG1=0x34 |
| 110 | 1343 dcfsnz WREG |
| 159 | 1344 movff RCREG1, opt_pressure_adjust ; RCREG1=0x35 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1345 dcfsnz WREG |
| 159 | 1346 movff RCREG1, opt_enable_safetystop ; RCREG1=0x36 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1347 dcfsnz WREG |
| 159 | 1348 movff RCREG1, opt_calibration_O2_ratio; RCREG1=0x37 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1349 dcfsnz WREG |
| 159 | 1350 movff RCREG1, opt_sensor_fallback ; RCREG1=0x38 |
| 1351 dcfsnz WREG | |
| 1352 movff RCREG1, opt_flip_screen ; RCREG1=0x39 | |
| 223 | 1353 dcfsnz WREG |
| 1354 movff RCREG1, opt_cR_button_left ; RCREG1=0x3A | |
| 1355 dcfsnz WREG | |
| 1356 movff RCREG1, opt_cR_button_right ; RCREG1=0x3B | |
|
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1357 dcfsnz WREG |
|
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1358 movff RCREG1, char_I_bottom_usage ; RCREG1=0x3C |
|
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1359 dcfsnz WREG |
|
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1360 movff RCREG1, char_I_deco_usage ; RCREG1=0x3D |
|
303
9b1b0b32e7d5
Add configuration option to control depth warning blinking
janos_kovacs <kovjanos@gmail.com>
parents:
299
diff
changeset
|
1361 dcfsnz WREG |
|
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1362 movff RCREG1, opt_modwarning ; RCREG1=0x3E |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1363 dcfsnz WREG |
|
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1364 movff RCREG1, opt_vsitextv2 ; RCREG1=0x3F |
|
326
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
1365 dcfsnz WREG |
|
d21b172d5a7a
VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents:
307
diff
changeset
|
1366 movff RCREG1, opt_vsigraph ; RCREG1=0x40 |
|
333
14b466f66a7f
Extend the Ceiling custom-view with ppO2 and current GF
Janos Kovacs <kovjanos@gmail.com>
parents:
326
diff
changeset
|
1367 dcfsnz WREG |
|
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1368 movff RCREG1, opt_showppo2 ; RCREG1=0x41 |
|
368
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1369 dcfsnz WREG |
|
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1370 movff RCREG1, opt_temperature_adjust ; RCREG1=0x42 |
|
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1371 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1372 movff RCREG1, opt_safety_stop_length ; RCREG1=0x43 |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1373 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1374 movff RCREG1, opt_safety_stop_start ; RCREG1=0x44 |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1375 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1376 movff RCREG1, opt_safety_stop_end ; RCREG1=0x45 |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1377 dcfsnz WREG |
|
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1378 movff RCREG1, opt_safety_stop_reset ; RCREG1=0x46 |
| 424 | 1379 dcfsnz WREG |
| 1380 nop ; RCREG1=0x47, ignore conservatism for standard hwOS | |
|
444
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1381 dcfsnz WREG |
|
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1382 movff RCREG1, opt_diveTimeout ; RCREG1=0x48 |
|
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1383 |
| 80 | 1384 |
| 1385 comm_write_abort: | |
|
81
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1386 ; Check Options, gases and diluents |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1387 call option_check_all ; Check all options (and reset if not within their min/max boundaries) |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1388 bsf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1389 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1390 bcf ccr_diluent_setup ; =1: Setting up Diluents ("Gas6-10") |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1391 call gaslist_cleanup_list ; Takes care that only one gas can be first and first has 0m change depth |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1392 call get_first_gas_to_WREG ; Makes sure at least one Gas is "First" |
|
8e13866b5496
add some extra safety checks when settings were altered from the PC software
mh@mh-THINK.localdomain
parents:
80
diff
changeset
|
1393 call get_first_dil_to_WREG ; Makes sure at least one Diluent is "First" |
| 80 | 1394 bra comm_download_mode0 ; Done. Loop with timeout reset |
| 1395 | |
| 1396 comm_write_dil1: | |
| 1397 movff RCREG1,opt_dil_O2_ratio+0 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1398 rcall comm_write_get_byte |
| 80 | 1399 movff RCREG1,opt_dil_He_ratio+0 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1400 rcall comm_write_get_byte |
| 80 | 1401 movff RCREG1,opt_dil_type+0 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1402 rcall comm_write_get_byte |
| 80 | 1403 movff RCREG1,char_I_dil_change+0 |
| 1404 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1405 comm_write_dil2: | |
| 1406 movff RCREG1,opt_dil_O2_ratio+1 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1407 rcall comm_write_get_byte |
| 80 | 1408 movff RCREG1,opt_dil_He_ratio+1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1409 rcall comm_write_get_byte |
| 80 | 1410 movff RCREG1,opt_dil_type+1 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1411 rcall comm_write_get_byte |
| 80 | 1412 movff RCREG1,char_I_dil_change+1 |
| 1413 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1414 comm_write_dil3: | |
| 1415 movff RCREG1,opt_dil_O2_ratio+2 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1416 rcall comm_write_get_byte |
| 80 | 1417 movff RCREG1,opt_dil_He_ratio+2 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1418 rcall comm_write_get_byte |
| 80 | 1419 movff RCREG1,opt_dil_type+2 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1420 rcall comm_write_get_byte |
| 80 | 1421 movff RCREG1,char_I_dil_change+2 |
| 1422 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1423 comm_write_dil4: | |
| 1424 movff RCREG1,opt_dil_O2_ratio+3 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1425 rcall comm_write_get_byte |
| 80 | 1426 movff RCREG1,opt_dil_He_ratio+3 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1427 rcall comm_write_get_byte |
| 80 | 1428 movff RCREG1,opt_dil_type+3 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1429 rcall comm_write_get_byte |
| 80 | 1430 movff RCREG1,char_I_dil_change+3 |
| 1431 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1432 comm_write_dil5: | |
| 1433 movff RCREG1,opt_dil_O2_ratio+4 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1434 rcall comm_write_get_byte |
| 80 | 1435 movff RCREG1,opt_dil_He_ratio+4 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1436 rcall comm_write_get_byte |
| 80 | 1437 movff RCREG1,opt_dil_type+4 |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1438 rcall comm_write_get_byte |
| 80 | 1439 movff RCREG1,char_I_dil_change+4 |
| 1440 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1441 | |
| 1442 comm_write_sp1: | |
| 1443 movff RCREG1,char_I_setpoint_cbar+0 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1444 rcall comm_write_get_byte |
| 80 | 1445 movff RCREG1,char_I_setpoint_change+0 |
| 1446 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1447 comm_write_sp2: | |
| 1448 movff RCREG1,char_I_setpoint_cbar+1 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1449 rcall comm_write_get_byte |
| 80 | 1450 movff RCREG1,char_I_setpoint_change+1 |
| 1451 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1452 comm_write_sp3: | |
| 1453 movff RCREG1,char_I_setpoint_cbar+2 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1454 rcall comm_write_get_byte |
| 80 | 1455 movff RCREG1,char_I_setpoint_change+2 |
| 1456 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1457 comm_write_sp4: | |
| 1458 movff RCREG1,char_I_setpoint_cbar+3 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1459 rcall comm_write_get_byte |
| 80 | 1460 movff RCREG1,char_I_setpoint_change+3 |
| 1461 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1462 comm_write_sp5: | |
| 1463 movff RCREG1,char_I_setpoint_cbar+4 | |
|
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1464 rcall comm_write_get_byte |
| 80 | 1465 movff RCREG1,char_I_setpoint_change+4 |
| 1466 bra comm_write_abort ; Done. Loop with timeout reset | |
| 1467 | |
|
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1468 ;----------------------------------------------------------------------------- |
|
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1469 |
| 0 | 1470 comm_send_string: |
| 1471 movlw "n" ; send echo | |
| 1472 movwf TXREG1 | |
| 354 | 1473 rcall comm_rs232_wait_tx ; Wait for UART |
| 0 | 1474 WIN_SMALL comm_string_column, comm_string_row |
| 1475 movlw .16 | |
| 1476 movwf lo ; counter | |
| 1477 comm_send_string_loop: | |
| 350 | 1478 rcall comm_write_get_byte |
| 0 | 1479 btfsc rs232_recieve_overflow ; Got byte? |
| 1480 bra comm_send_string_abort ; No, abort! | |
| 1481 movff RCREG1,POSTINC2 ; Store character | |
| 1482 decfsz lo,F | |
| 1483 bra comm_send_string_loop | |
| 1484 comm_send_string_abort: | |
| 1485 STRCAT_PRINT "" ; Show the text | |
| 80 | 1486 goto comm_download_mode0 ; Done. Loop with timeout reset |
| 0 | 1487 |
| 1488 ;----------------------------------------------------------------------------- | |
| 1489 | |
| 1490 comm_check_day: | |
| 1491 movff RCREG1, day | |
| 1492 movff month,lo ; new month | |
| 1493 dcfsnz lo,F | |
| 1494 movlw .31 | |
| 1495 dcfsnz lo,F | |
| 1496 movlw .28 | |
| 1497 dcfsnz lo,F | |
| 1498 movlw .31 | |
| 1499 dcfsnz lo,F | |
| 1500 movlw .30 | |
| 1501 dcfsnz lo,F | |
| 1502 movlw .31 | |
| 1503 dcfsnz lo,F | |
| 1504 movlw .30 | |
| 1505 dcfsnz lo,F | |
| 1506 movlw .31 | |
| 1507 dcfsnz lo,F | |
| 1508 movlw .31 | |
| 1509 dcfsnz lo,F | |
| 1510 movlw .30 | |
| 1511 dcfsnz lo,F | |
| 1512 movlw .31 | |
| 1513 dcfsnz lo,F | |
| 1514 movlw .30 | |
| 1515 dcfsnz lo,F | |
| 1516 movlw .31 | |
| 1517 cpfsgt day ; day ok? | |
| 1518 return ; OK | |
| 1519 movlw .1 ; not OK, set to 1st | |
| 1520 movwf day | |
| 1521 return | |
| 1522 | |
| 1523 ;---------------------------------------------------------------------------- | |
| 1524 END |
