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