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