Mercurial > public > hwos_code
annotate src/comm.asm @ 483:afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
author | heinrichsweikamp |
---|---|
date | Mon, 20 Feb 2017 11:56:10 +0100 |
parents | 237afdfb4918 |
children | 4e6f5c36f4cc |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
3 ; File comm.asm | |
4 ; | |
5 ; RS232 via USB | |
6 ; | |
7 ; Copyright (c) 2012, JD Gascuel, HeinrichsWeikamp, all right reserved. | |
8 ;============================================================================= | |
9 ; HISTORY | |
10 ; 2011-08-22 : [mH] Creation | |
11 ; 2012-02-11 : [jDG] Added "c" set custom text, and "i" identify. | |
12 | |
275 | 13 #include "hwos.inc" |
0 | 14 #include "eeprom_rs232.inc" |
15 #include "tft.inc" | |
16 #include "wait.inc" | |
17 #include "strings.inc" | |
18 #include "convert.inc" | |
19 #include "external_flash.inc" | |
20 #include "tft_outputs.inc" | |
21 #include "surfmode.inc" | |
22 #include "rtc.inc" | |
23 #include "adc_lightsensor.inc" | |
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
24 #include "shared_definitions.h" |
0 | 25 |
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 | |
110 bra comm_mode2b ; Startbyte for service mode found | |
111 comm_mode2a: | |
112 movlw 0xBB ; start byte=0xBB? | |
113 cpfseq RCREG1 | |
393 | 114 bra comm_mode2c |
0 | 115 bra comm_download_mode ; Startbyte for download mode found |
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 | |
127 bra comm_mode2 ; Cycle | |
128 | |
0 | 129 comm_mode2b: |
130 ; Startbyte found | |
354 | 131 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 132 movlw 0x4B |
133 movwf TXREG1 ; Send Answer | |
134 ; Now, check comm command | |
135 | |
350 | 136 rcall comm_write_get_byte ; first byte |
354 | 137 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 138 movff RCREG1,TXREG1 ; Echo |
139 movlw UPPER comm_service_key | |
140 cpfseq RCREG1 | |
141 bra comm_mode1 ; Wrong -> Restart | |
350 | 142 rcall comm_write_get_byte ; second byte |
354 | 143 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 144 movff RCREG1,TXREG1 ; Echo |
145 movlw HIGH (comm_service_key & 0xFFFF) | |
146 cpfseq RCREG1 | |
147 bra comm_mode1 ; Wrong -> Restart | |
350 | 148 rcall comm_write_get_byte ; third byte |
354 | 149 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 150 movff RCREG1,TXREG1 ; Echo |
151 movlw LOW comm_service_key | |
152 cpfseq RCREG1 | |
153 bra comm_mode1 ; Wrong -> Restart | |
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: | |
354 | 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: | |
205 movlw 0x50 ; send echo | |
206 movwf TXREG1 | |
354 | 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 | |
213 movlw 0x55 ; 5'ft byte checksum. | |
214 movwf hi | |
215 | |
216 comm_send_firmware_loop: | |
350 | 217 rcall comm_write_get_byte |
0 | 218 btfsc rs232_recieve_overflow ; Got byte? |
219 bra comm_send_firmware_abort ; No, abort! | |
220 movf RCREG1,W | |
221 movwf POSTINC2 ; Store checksum byte. | |
222 xorwf hi,F ; Also xor into checksum | |
223 rlncf hi,F ; And rotate it. | |
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 | |
231 movlw 0x4C ; send OK | |
232 movwf TXREG1 | |
354 | 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. | |
162
95d05cc14736
NEW: Safe tissue data, date and time during firmware update
heinrichsweikamp
parents:
159
diff
changeset
|
237 call vault_decodata_into_eeprom ; Store last deco data (And Time/Date) into EEPROM |
0 | 238 goto 0x1FDF0 ; And pray... |
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 | |
247 movlw 0xFF ; send ABORTED byte. | |
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: | |
276 movlw 0x42 ; send echo | |
277 movwf TXREG1 | |
354 | 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 | |
319 comm_write_range: ; Get 3 bytes start address | |
320 movlw 0x30 ; send echo | |
321 movwf TXREG1 | |
354 | 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? |
420 | 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...) |
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
336 call ext_flash_byte_write_comms ; write one byte |
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
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 | |
343 comm_send_range: ; Get 3 bytes start address and 3 bytes amount | |
344 movlw 0x20 ; send echo | |
345 movwf TXREG1 | |
354 | 346 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 347 |
348 bcf INTCON,GIE ; All interrups off! | |
349 | |
350 rcall comm_get_flash_address ; Get three bytes address or return | |
351 btfsc rs232_recieve_overflow ; Got Data? | |
352 bra comm_download_mode0 ; No, Done. | |
353 | |
350 | 354 rcall comm_write_get_byte |
0 | 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 |
0 | 359 btfsc rs232_recieve_overflow ; Got byte? |
360 bra comm_download_mode0 ; No, Done. | |
361 movff RCREG1,hi | |
350 | 362 rcall comm_write_get_byte |
0 | 363 btfsc rs232_recieve_overflow ; Got byte? |
364 bra comm_download_mode0 ; No, Done. | |
365 movff RCREG1,lo | |
366 | |
367 ; If lo==0, we must precondition hi because there is to many bytes send ! | |
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 | |
382 bra comm_send_range24 ; counter 24bit | |
383 comm_send_range24_loop: | |
384 call ext_flash_read_block ; Read one byte | |
385 movwf TXREG1 ; Start new transmit | |
386 comm_send_range24: | |
354 | 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 | |
354 | 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 | |
354 | 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: | |
350 | 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 | |
454 bra comm_download_mode2 ; Wait for command byte | |
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 | |
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: |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
560 movlw "m" ; send echo |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
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 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
583 cpfseq ext_flash_address+2 ; All 256 dive send? |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
584 bra comm_send_compact_headers4 ; No, continue |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
585 bra comm_download_mode0 ; Done. Loop with timeout reset |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
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 |
354 | 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: |
354 | 598 rcall comm_rs232_wait_tx ; Wait for UART |
346
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
599 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 |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
612 rcall comm_rs232_wait_tx ; Wait for UART |
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 | |
617 call ext_flash_byte_read ; Get byte | |
618 movwf TXREG1 | |
354 | 619 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
|
620 bra comm_send_compact_headers2 ; continue |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
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: |
626 movlw "a" ; send echo | |
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: | |
640 movlw 0x00 | |
641 movwf ext_flash_address+0 | |
642 ; Adjust address for next dive | |
643 movlw 0x10 | |
644 addwf ext_flash_address+1 | |
645 movlw 0x00 | |
646 addwfc ext_flash_address+2 | |
647 | |
648 movlw 0x30 | |
649 cpfseq ext_flash_address+2 ; All 256 dive send? | |
650 bra comm_send_headers4 ; No, continue | |
651 bra comm_download_mode0 ; Done. Loop with timeout reset | |
652 | |
653 comm_send_headers4: | |
654 clrf lo ; Counter | |
354 | 655 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 656 call ext_flash_read_block_start ; 1st byte |
657 movwf TXREG1 | |
658 bra comm_send_headers3 ; counter 24bit | |
659 comm_send_headers_loop: | |
660 call ext_flash_read_block ; Read one byte | |
661 movwf TXREG1 ; Start new transmit | |
662 comm_send_headers3: | |
354 | 663 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 664 decfsz lo,F |
665 bra comm_send_headers_loop | |
666 call ext_flash_read_block_stop | |
667 bra comm_send_headers2 ; continue | |
668 | |
669 ;----------------------------------------------------------------------------- | |
80 | 670 |
671 comm_option_reset_all: ; Reset all options to factory default. | |
672 movlw "x" ; send echo | |
673 movwf TXREG1 | |
674 call option_reset_all | |
675 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
676 | |
677 ;----------------------------------------------------------------------------- | |
0 | 678 |
350 | 679 comm_write_get_byte: |
680 goto rs232_get_byte ; returns... | |
681 | |
354 | 682 comm_rs232_wait_tx: |
683 goto rs232_wait_tx ; returns... | |
350 | 684 |
0 | 685 comm_set_time: |
686 movlw "b" ; send echo | |
687 movwf TXREG1 | |
688 | |
354 | 689 rcall comm_rs232_wait_tx ; wait for UART |
350 | 690 rcall comm_write_get_byte |
0 | 691 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
692 bra comm_download_mode0 ; No, abort |
0 | 693 movff RCREG1, hours |
694 movlw d'24' | |
695 cpfslt hours | |
696 clrf hours | |
350 | 697 rcall comm_write_get_byte |
0 | 698 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
699 bra comm_download_mode0 ; No, abort |
0 | 700 movff RCREG1, mins |
701 movlw d'60' | |
702 cpfslt mins | |
703 clrf mins | |
350 | 704 rcall comm_write_get_byte |
0 | 705 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
706 bra comm_download_mode0 ; No, abort |
0 | 707 movff RCREG1, secs |
708 movlw d'60' | |
709 cpfslt secs | |
710 clrf secs | |
350 | 711 rcall comm_write_get_byte |
0 | 712 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
713 bra comm_download_mode0 ; No, abort |
0 | 714 movff RCREG1, month |
715 movlw d'13' | |
716 cpfslt month | |
717 movwf month | |
350 | 718 rcall comm_write_get_byte |
0 | 719 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
720 bra comm_download_mode0 ; No, abort |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
721 call comm_check_day ; Check day |
350 | 722 rcall comm_write_get_byte |
0 | 723 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
724 bra comm_download_mode0 ; No, abort |
0 | 725 movff RCREG1, year |
726 movlw d'100' | |
727 cpfslt year | |
728 clrf year | |
729 ; All ok, set RTCC | |
730 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
731 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
732 | |
733 ;----------------------------------------------------------------------------- | |
734 ; Set OSTC3 custom text string (opt_name_length ascii chars). | |
735 ; | |
736 | |
737 comm_set_custom_text: | |
738 movlw "c" ; send echo | |
739 movwf TXREG1 | |
354 | 740 rcall comm_rs232_wait_tx ; wait for UART |
0 | 741 lfsr FSR2,opt_name |
742 movlw opt_name_length | |
743 movwf lo ; counter | |
744 comm_set_ctext_loop: | |
350 | 745 rcall comm_write_get_byte |
0 | 746 btfsc rs232_recieve_overflow ; Got byte? |
136 | 747 bra comm_set_ctext_loop_done ; no, abort |
7 | 748 movff RCREG1,POSTINC2 ; Store character |
0 | 749 decfsz lo,F |
750 bra comm_set_ctext_loop | |
136 | 751 comm_set_ctext_loop_done: |
752 tstfsz lo ; Got opt_name_length bytes? | |
753 bra comm_set_ctext_loop_done2 ; no, clear remaining chars | |
754 bra comm_download_mode0 ; Done. Loop with timeout reset | |
755 comm_set_ctext_loop_done2: | |
756 clrf POSTINC2 | |
757 decfsz lo,F | |
758 bra comm_set_ctext_loop_done2 | |
7 | 759 bra comm_download_mode0 ; Done. Loop with timeout reset |
0 | 760 |
761 ;----------------------------------------------------------------------------- | |
762 ; Reply Serial (2 bytes low:high), firmware (major.minor) and custom text. | |
763 ; | |
764 | |
765 comm_identify: | |
766 movlw "i" ; send echo | |
767 movwf TXREG1 | |
354 | 768 rcall comm_rs232_wait_tx ; wait for UART |
0 | 769 |
770 ;---- Read serial from internal EEPROM address 0000 | |
771 clrf EEADRH | |
772 clrf EEADR ; Get Serial number LOW | |
773 call read_eeprom ; read byte | |
774 movff EEDATA,lo | |
775 incf EEADR,F ; Get Serial number HIGH | |
776 call read_eeprom ; read byte | |
777 movff EEDATA,hi | |
778 | |
779 ;---- Emit serial number | |
780 movff lo,TXREG1 | |
354 | 781 rcall comm_rs232_wait_tx |
0 | 782 movff hi,TXREG1 |
354 | 783 rcall comm_rs232_wait_tx |
0 | 784 |
785 ;---- Emit fiwmware hi.lo | |
786 movlw softwareversion_x | |
787 movwf TXREG1 | |
354 | 788 rcall comm_rs232_wait_tx |
0 | 789 movlw softwareversion_y |
790 movwf TXREG1 | |
354 | 791 rcall comm_rs232_wait_tx |
0 | 792 |
793 ;---- Emit custom text | |
794 movlw opt_name_length | |
795 movwf hi | |
796 lfsr FSR2,opt_name | |
797 | |
798 common_identify_loop: | |
799 movff POSTINC2,TXREG1 | |
354 | 800 rcall comm_rs232_wait_tx |
0 | 801 decfsz hi,F |
802 bra common_identify_loop | |
803 | |
804 bra comm_download_mode0 ; Done. | |
805 | |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
806 ;----------------------------------------------------------------------------- |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
807 ; Reply hardware descriptor byte |
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 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
810 comm_hardware_descriptor: |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
811 movlw "j" ; send echo |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
812 movwf TXREG1 |
354 | 813 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
|
814 movff hardware_flag,TXREG1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
815 bra comm_download_mode0 ; Done. |
0 | 816 |
441
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
817 comm_feature_and_hardware: |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
818 movlw 0x60 ; send echo |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
819 movwf TXREG1 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
820 rcall comm_rs232_wait_tx ; wait for UART |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
821 movlw 0x00 ; Hardware high byte |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
822 movwf TXREG1 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
823 rcall comm_rs232_wait_tx ; wait for UART |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
824 movff hardware_flag,TXREG1 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
825 rcall comm_rs232_wait_tx ; wait for UART |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
826 movlw 0x00 ; Feature high Byte |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
827 movwf TXREG1 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
828 rcall comm_rs232_wait_tx ; wait for UART |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
829 movlw 0x00 ; Feature low Byte |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
830 movwf TXREG1 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
831 rcall comm_rs232_wait_tx ; wait for UART |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
832 movlw 0x00 ; Model descriptor byte |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
833 movwf TXREG1 |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
834 bra comm_download_mode0 ; Done. |
360acdcda0d7
+BUGFIX: Compatibility with "hwOS Config" fixed
heinrichsweikamp
parents:
426
diff
changeset
|
835 |
0 | 836 ;----------------------------------------------------------------------------- |
837 | |
838 comm_send_dive: | |
378 | 839 movlw "f"; 0x66 ; send echo |
0 | 840 movwf TXREG1 |
841 | |
350 | 842 rcall comm_write_get_byte |
0 | 843 btfsc rs232_recieve_overflow ; Got byte? |
844 bra comm_download_mode0 ; No, abort! | |
845 movff RCREG1,lo ; Store dive number (0-255) | |
846 ; First, send the header (again) | |
847 ; Set ext_flash_address:3 to TOC entry of this dive | |
848 ; 1st: 200000h-200FFFh -> lo=0 | |
849 ; 2nd: 201000h-201FFFh -> lo=1 | |
850 ; 3rd: 202000h-202FFFh -> lo=2 | |
851 ; 256: 2FF000h-2FFFFFh -> lo=255 | |
852 clrf ext_flash_address+0 | |
853 clrf ext_flash_address+1 | |
854 movlw 0x20 | |
855 movwf ext_flash_address+2 | |
856 movlw .16 | |
857 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) | |
858 movf PRODL,W | |
859 addwf ext_flash_address+1,F | |
860 movf PRODH,W | |
861 addwfc ext_flash_address+2,F | |
862 | |
863 incf_ext_flash_address d'2' ; Skip 0xFA, 0xFA | |
864 call ext_flash_byte_read_plus ; Read start address of profile | |
865 movff temp1,ext_flash_log_pointer+0 | |
866 call ext_flash_byte_read_plus ; Read start address of profile | |
867 movff temp1,ext_flash_log_pointer+1 | |
868 call ext_flash_byte_read_plus ; Read start address of profile | |
869 movff temp1,ext_flash_log_pointer+2 | |
870 call ext_flash_byte_read_plus ; Read end address of profile | |
871 movff temp1,convert_value_temp+0 | |
872 call ext_flash_byte_read_plus ; Read end address of profile | |
873 movff temp1,convert_value_temp+1 | |
874 call ext_flash_byte_read_plus ; Read end address of profile | |
875 movff temp1,convert_value_temp+2 | |
876 decf_ext_flash_address d'8' ; Back again to first 0xFA in header | |
877 | |
878 movf ext_flash_log_pointer+0,W | |
879 cpfseq convert_value_temp+0 ; Equal? | |
880 bra comm_send_dive1 ; No, Send header | |
881 | |
882 movf ext_flash_log_pointer+1,W | |
883 cpfseq convert_value_temp+1 ; Equal? | |
884 bra comm_send_dive1 ; No, Send header | |
885 | |
886 movf ext_flash_log_pointer+2,W | |
887 cpfseq convert_value_temp+2 ; Equal? | |
888 bra comm_send_dive1 ; No, Send header | |
889 | |
890 ; Start=End -> Not good, abort | |
891 bra comm_download_mode0 ; Done. Loop with timeout reset | |
892 | |
893 comm_send_dive1: | |
894 ; Send header | |
895 clrf hi ; Counter | |
354 | 896 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 897 call ext_flash_read_block_start ; 1st byte |
898 movwf TXREG1 | |
899 bra comm_send_dive_header | |
900 comm_send_dive_header2: | |
901 call ext_flash_read_block ; Read one byte | |
902 movwf TXREG1 ; Start new transmit | |
903 comm_send_dive_header: | |
354 | 904 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 905 decfsz hi,F |
906 bra comm_send_dive_header2 | |
907 call ext_flash_read_block_stop | |
908 | |
909 ; Set address for profile | |
910 movff ext_flash_log_pointer+0,ext_flash_address+0 | |
911 movff ext_flash_log_pointer+1,ext_flash_address+1 | |
912 movff ext_flash_log_pointer+2,ext_flash_address+2 | |
913 | |
914 movlw .6 ; Skip 6byte short header in profile - only for internal use | |
915 call incf_ext_flash_address0_0x20 ; increases bytes in ext_flash_address:3 with 0x200000 bank switching | |
916 | |
917 comm_send_dive_profile: | |
918 call ext_flash_byte_read_plus_0x20 ; Read one byte into temp1, takes care of banking at 0x200000 | |
354 | 919 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 920 movff temp1,TXREG1 ; Send a byte |
921 | |
922 ; 24bit compare with end address | |
923 movff convert_value_temp+0,WREG | |
924 cpfseq ext_flash_address+0 | |
925 bra comm_send_dive_profile | |
926 movff convert_value_temp+1,WREG | |
927 cpfseq ext_flash_address+1 | |
928 bra comm_send_dive_profile | |
929 movff convert_value_temp+2,WREG | |
930 cpfseq ext_flash_address+2 | |
931 bra comm_send_dive_profile | |
932 | |
238 | 933 rcall comm_read_setting_wait ; Wait for UART |
0 | 934 bra comm_download_mode0 ; Done. Loop with timeout reset |
935 | |
936 ;----------------------------------------------------------------------------- | |
937 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
938 comm_read_setting: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
939 movlw "r" |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
940 movwf TXREG1 |
350 | 941 rcall comm_write_get_byte |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
942 btfsc rs232_recieve_overflow ; Got byte? |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
943 bra comm_read_abort ; No, abort! |
238 | 944 rcall comm_read_setting_wait ; Wait for UART |
945 movlw 0x0F | |
946 cpfsgt RCREG1 ; 0x00-0x0F: unused | |
947 bra comm_read_abort ; abort! | |
948 subwf RCREG1,W ; Subtract unused commands | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
949 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
950 bra comm_read_gas1 ; RCREG1=0x10 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
951 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
952 bra comm_read_gas2 ; RCREG1=0x11 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
953 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
954 bra comm_read_gas3 ; RCREG1=0x12 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
955 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
956 bra comm_read_gas4 ; RCREG1=0x13 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
957 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
958 bra comm_read_gas5 ; RCREG1=0x14 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
959 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
960 bra comm_read_dil1 ; RCREG1=0x15 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
961 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
962 bra comm_read_dil2 ; RCREG1=0x16 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
963 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
964 bra comm_read_dil3 ; RCREG1=0x17 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
965 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
966 bra comm_read_dil4 ; RCREG1=0x18 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
967 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
968 bra comm_read_dil5 ; RCREG1=0x19 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
969 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
970 bra comm_read_sp1 ; RCREG1=0x1A |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
971 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
972 bra comm_read_sp2 ; RCREG1=0x1B |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
973 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
974 bra comm_read_sp3 ; RCREG1=0x1C |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
975 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
976 bra comm_read_sp4 ; RCREG1=0x1D |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
977 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
978 bra comm_read_sp5 ; RCREG1=0x1E |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
979 dcfsnz WREG |
159 | 980 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
|
981 dcfsnz WREG |
159 | 982 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
|
983 dcfsnz WREG |
159 | 984 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
|
985 dcfsnz WREG |
159 | 986 movff opt_ppO2_max, TXREG1 ; RCREG1=0x22 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
987 dcfsnz WREG |
159 | 988 movff opt_ppO2_min, TXREG1 ; RCREG1=0x23 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
989 dcfsnz WREG |
159 | 990 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
|
991 dcfsnz WREG |
159 | 992 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
|
993 dcfsnz WREG |
159 | 994 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
|
995 dcfsnz WREG |
159 | 996 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
|
997 dcfsnz WREG |
159 | 998 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
|
999 dcfsnz WREG |
159 | 1000 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
|
1001 dcfsnz WREG |
159 | 1002 movff char_I_saturation_multiplier, TXREG1; RCREG1=0x2A |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1003 dcfsnz WREG |
159 | 1004 movff char_I_desaturation_multiplier, TXREG1; RCREG1=0x2B |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1005 dcfsnz WREG |
159 | 1006 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
|
1007 dcfsnz WREG |
159 | 1008 movff opt_brightness, TXREG1 ; RCREG1=0x2D |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1009 dcfsnz WREG |
159 | 1010 movff opt_units, TXREG1 ; RCREG1=0x2E |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1011 dcfsnz WREG |
159 | 1012 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
|
1013 dcfsnz WREG |
159 | 1014 movff opt_salinity, TXREG1 ; RCREG1=0x30 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1015 dcfsnz WREG |
159 | 1016 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
|
1017 dcfsnz WREG |
159 | 1018 movff opt_language, TXREG1 ; RCREG1=0x32 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1019 dcfsnz WREG |
159 | 1020 movff opt_dateformat, TXREG1 ; RCREG1=0x33 |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1021 dcfsnz WREG |
159 | 1022 movff opt_compass_gain, TXREG1 ; RCREG1=0x34 |
110 | 1023 dcfsnz WREG |
159 | 1024 movff opt_pressure_adjust, TXREG1 ; RCREG1=0x35 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1025 dcfsnz WREG |
159 | 1026 movff opt_enable_safetystop, TXREG1 ; RCREG1=0x36 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1027 dcfsnz WREG |
159 | 1028 movff opt_calibration_O2_ratio, TXREG1; RCREG1=0x37 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1029 dcfsnz WREG |
159 | 1030 movff opt_sensor_fallback, TXREG1 ; RCREG1=0x38 |
1031 dcfsnz WREG | |
1032 movff opt_flip_screen, TXREG1 ; RCREG1=0x39 | |
223 | 1033 dcfsnz WREG |
1034 movff opt_cR_button_left, TXREG1 ; RCREG1=0x3A | |
1035 dcfsnz WREG | |
1036 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
|
1037 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1038 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
|
1039 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1040 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
|
1041 dcfsnz WREG |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1042 movff opt_modwarning, TXREG1 ; RCREG1=0x3E |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1043 dcfsnz WREG |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1044 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
|
1045 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
|
1046 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
|
1047 dcfsnz WREG |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1048 movff opt_showppo2, TXREG1 ; RCREG1=0x41 |
368
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1049 dcfsnz WREG |
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1050 movff opt_temperature_adjust, TXREG1 ; RCREG1=0x42 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1051 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1052 movff opt_safety_stop_length, TXREG1 ; RCREG1=0x43 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1053 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1054 movff opt_safety_stop_start, TXREG1 ; RCREG1=0x44 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1055 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1056 movff opt_safety_stop_end, TXREG1 ; RCREG1=0x45 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1057 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1058 movff opt_safety_stop_reset, TXREG1 ; RCREG1=0x46 |
424 | 1059 dcfsnz WREG |
1060 clrf TXREG1 ; RCREG1=0x47, ignore conservatism for standard hwOS | |
444
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1061 dcfsnz WREG |
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1062 movff opt_diveTimeout, TXREG1 ; RCREG1=0x48 |
475 | 1063 dcfsnz WREG |
1064 movff button_polarity, TXREG1 ; RCREG1=0x49 | |
483
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1065 dcfsnz WREG |
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1066 movff opt_PSCR_drop, TXREG1 ; RCREG1=0x4A |
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1067 dcfsnz WREG |
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1068 movff opt_PSCR_lungratio, TXREG1 ; RCREG1=0x4B |
444
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1069 |
424 | 1070 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1071 comm_read_abort: |
255 | 1072 comm_read_done: |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1073 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
|
1074 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1075 comm_read_setting_wait: |
354 | 1076 bra comm_rs232_wait_tx ; Wait for UART (and return!) |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1077 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1078 comm_read_gas1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1079 movff opt_gas_O2_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1080 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
|
1081 movff opt_gas_He_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1082 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1083 movff opt_gas_type+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1084 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1085 movff opt_OC_bail_gas_change+0,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1086 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
|
1087 comm_read_gas2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1088 movff opt_gas_O2_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1089 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
|
1090 movff opt_gas_He_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1091 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1092 movff opt_gas_type+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1093 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1094 movff opt_OC_bail_gas_change+1,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1095 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
|
1096 comm_read_gas3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1097 movff opt_gas_O2_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1098 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
|
1099 movff opt_gas_He_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1100 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1101 movff opt_gas_type+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1102 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1103 movff opt_OC_bail_gas_change+2,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1104 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
|
1105 comm_read_gas4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1106 movff opt_gas_O2_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1107 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
|
1108 movff opt_gas_He_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1109 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1110 movff opt_gas_type+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1111 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1112 movff opt_OC_bail_gas_change+3,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1113 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
|
1114 comm_read_gas5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1115 movff opt_gas_O2_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1116 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
|
1117 movff opt_gas_He_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1118 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1119 movff opt_gas_type+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1120 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1121 movff opt_OC_bail_gas_change+4,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1122 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
|
1123 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1124 comm_read_dil1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1125 movff opt_dil_O2_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_dil_He_ratio+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 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1129 movff opt_dil_type+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1130 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1131 movff char_I_dil_change+0,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1132 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
|
1133 comm_read_dil2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1134 movff opt_dil_O2_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_dil_He_ratio+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 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1138 movff opt_dil_type+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1139 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1140 movff char_I_dil_change+1,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1141 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
|
1142 comm_read_dil3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1143 movff opt_dil_O2_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_dil_He_ratio+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 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1147 movff opt_dil_type+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1148 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1149 movff char_I_dil_change+2,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1150 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1151 comm_read_dil4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1152 movff opt_dil_O2_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_dil_He_ratio+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 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1156 movff opt_dil_type+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1157 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1158 movff char_I_dil_change+3,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1159 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
|
1160 comm_read_dil5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1161 movff opt_dil_O2_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_dil_He_ratio+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 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1165 movff opt_dil_type+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1166 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1167 movff char_I_dil_change+4,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1168 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
|
1169 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1170 comm_read_sp1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1171 movff char_I_setpoint_cbar+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 char_I_setpoint_change+0, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1174 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
|
1175 comm_read_sp2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1176 movff char_I_setpoint_cbar+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1177 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1178 movff char_I_setpoint_change+1, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1179 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1180 comm_read_sp3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1181 movff char_I_setpoint_cbar+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1182 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
|
1183 movff char_I_setpoint_change+2, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1184 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
|
1185 comm_read_sp4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1186 movff char_I_setpoint_cbar+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1187 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
|
1188 movff char_I_setpoint_change+3, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1189 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
|
1190 comm_read_sp5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1191 movff char_I_setpoint_cbar+4, 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_setpoint_change+4, 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 |
110 | 1195 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1196 |
80 | 1197 ;----------------------------------------------------------------------------- |
238 | 1198 comm_write_gas1: |
1199 movff RCREG1,opt_gas_O2_ratio+0 | |
1200 rcall comm_write_get_byte | |
1201 movff RCREG1,opt_gas_He_ratio+0 | |
1202 rcall comm_write_get_byte | |
1203 movff RCREG1,opt_gas_type+0 | |
1204 rcall comm_write_get_byte | |
1205 movff RCREG1,opt_OC_bail_gas_change+0 | |
1206 bra comm_write_abort ; Done. Loop with timeout reset | |
1207 comm_write_gas2: | |
1208 movff RCREG1,opt_gas_O2_ratio+1 | |
1209 rcall comm_write_get_byte | |
1210 movff RCREG1,opt_gas_He_ratio+1 | |
1211 rcall comm_write_get_byte | |
1212 movff RCREG1,opt_gas_type+1 | |
1213 rcall comm_write_get_byte | |
1214 movff RCREG1,opt_OC_bail_gas_change+1 | |
1215 bra comm_write_abort ; Done. Loop with timeout reset | |
1216 comm_write_gas3: | |
1217 movff RCREG1,opt_gas_O2_ratio+2 | |
1218 rcall comm_write_get_byte | |
1219 movff RCREG1,opt_gas_He_ratio+2 | |
1220 rcall comm_write_get_byte | |
1221 movff RCREG1,opt_gas_type+2 | |
1222 rcall comm_write_get_byte | |
1223 movff RCREG1,opt_OC_bail_gas_change+2 | |
1224 bra comm_write_abort ; Done. Loop with timeout reset | |
1225 comm_write_gas4: | |
1226 movff RCREG1,opt_gas_O2_ratio+3 | |
1227 rcall comm_write_get_byte | |
1228 movff RCREG1,opt_gas_He_ratio+3 | |
1229 rcall comm_write_get_byte | |
1230 movff RCREG1,opt_gas_type+3 | |
1231 rcall comm_write_get_byte | |
1232 movff RCREG1,opt_OC_bail_gas_change+3 | |
1233 bra comm_write_abort ; Done. Loop with timeout reset | |
1234 comm_write_gas5: | |
1235 movff RCREG1,opt_gas_O2_ratio+4 | |
1236 rcall comm_write_get_byte | |
1237 movff RCREG1,opt_gas_He_ratio+4 | |
1238 rcall comm_write_get_byte | |
1239 movff RCREG1,opt_gas_type+4 | |
1240 rcall comm_write_get_byte | |
1241 movff RCREG1,opt_OC_bail_gas_change+4 | |
1242 bra comm_write_abort ; Done. Loop with timeout reset | |
80 | 1243 |
1244 | |
1245 comm_write_setting: | |
1246 movlw "w" | |
1247 movwf TXREG1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1248 rcall comm_write_get_byte ; "Byte 2" |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1249 btfsc rs232_recieve_overflow ; Got byte? |
80 | 1250 bra comm_write_abort ; No, abort! |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1251 movff RCREG1,temp1 ; Copy |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1252 rcall comm_write_get_byte ; "Byte 3" |
238 | 1253 rcall comm_read_setting_wait ; Wait for UART |
1254 movlw 0x0F | |
1255 cpfsgt temp1 ; 0x00-0x0F: unused | |
1256 bra comm_write_abort ; abort! | |
1257 subwf temp1,W ; Subtract unused commands | |
80 | 1258 dcfsnz WREG |
1259 bra comm_write_gas1 ; RCREG1=0x10 | |
1260 dcfsnz WREG | |
1261 bra comm_write_gas2 ; RCREG1=0x11 | |
1262 dcfsnz WREG | |
1263 bra comm_write_gas3 ; RCREG1=0x12 | |
1264 dcfsnz WREG | |
1265 bra comm_write_gas4 ; RCREG1=0x13 | |
1266 dcfsnz WREG | |
1267 bra comm_write_gas5 ; RCREG1=0x14 | |
1268 dcfsnz WREG | |
1269 bra comm_write_dil1 ; RCREG1=0x15 | |
1270 dcfsnz WREG | |
1271 bra comm_write_dil2 ; RCREG1=0x16 | |
1272 dcfsnz WREG | |
1273 bra comm_write_dil3 ; RCREG1=0x17 | |
1274 dcfsnz WREG | |
1275 bra comm_write_dil4 ; RCREG1=0x18 | |
1276 dcfsnz WREG | |
1277 bra comm_write_dil5 ; RCREG1=0x19 | |
1278 dcfsnz WREG | |
1279 bra comm_write_sp1 ; RCREG1=0x1A | |
1280 dcfsnz WREG | |
1281 bra comm_write_sp2 ; RCREG1=0x1B | |
1282 dcfsnz WREG | |
1283 bra comm_write_sp3 ; RCREG1=0x1C | |
1284 dcfsnz WREG | |
1285 bra comm_write_sp4 ; RCREG1=0x1D | |
1286 dcfsnz WREG | |
1287 bra comm_write_sp5 ; RCREG1=0x1E | |
1288 dcfsnz WREG | |
159 | 1289 movff RCREG1, opt_ccr_mode ; RCREG1=0x1F |
80 | 1290 dcfsnz WREG |
159 | 1291 movff RCREG1, opt_dive_mode ; RCREG1=0x20 |
80 | 1292 dcfsnz WREG |
159 | 1293 movff RCREG1, char_I_deco_model ; RCREG1=0x21 |
80 | 1294 dcfsnz WREG |
159 | 1295 movff RCREG1, opt_ppO2_max ; RCREG1=0x22 |
80 | 1296 dcfsnz WREG |
159 | 1297 movff RCREG1, opt_ppO2_min ; RCREG1=0x23 |
80 | 1298 dcfsnz WREG |
159 | 1299 movff RCREG1, char_I_extra_time ; RCREG1=0x24 |
80 | 1300 dcfsnz WREG |
159 | 1301 movff RCREG1, opt_GF_low ; RCREG1=0x25 |
80 | 1302 dcfsnz WREG |
159 | 1303 movff RCREG1, opt_GF_high ; RCREG1=0x26 |
80 | 1304 dcfsnz WREG |
159 | 1305 movff RCREG1, opt_aGF_low ; RCREG1=0x27 |
80 | 1306 dcfsnz WREG |
159 | 1307 movff RCREG1, opt_aGF_high ; RCREG1=0x28 |
80 | 1308 dcfsnz WREG |
159 | 1309 movff RCREG1, opt_enable_aGF ; RCREG1=0x29 |
80 | 1310 dcfsnz WREG |
159 | 1311 movff RCREG1, char_I_saturation_multiplier; RCREG1=0x2A |
80 | 1312 dcfsnz WREG |
159 | 1313 movff RCREG1, char_I_desaturation_multiplier; RCREG1=0x2B |
80 | 1314 dcfsnz WREG |
159 | 1315 movff RCREG1, opt_last_stop ; RCREG1=0x2C |
80 | 1316 dcfsnz WREG |
159 | 1317 movff RCREG1, opt_brightness ; RCREG1=0x2D |
80 | 1318 dcfsnz WREG |
159 | 1319 movff RCREG1, opt_units ; RCREG1=0x2E |
80 | 1320 dcfsnz WREG |
159 | 1321 movff RCREG1, opt_sampling_rate ; RCREG1=0x2F |
80 | 1322 dcfsnz WREG |
159 | 1323 movff RCREG1, opt_salinity ; RCREG1=0x30 |
80 | 1324 dcfsnz WREG |
159 | 1325 movff RCREG1, opt_dive_color_scheme ; RCREG1=0x31 |
80 | 1326 dcfsnz WREG |
159 | 1327 movff RCREG1, opt_language ; RCREG1=0x32 |
80 | 1328 dcfsnz WREG |
159 | 1329 movff RCREG1, opt_dateformat ; RCREG1=0x33 |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1330 dcfsnz WREG |
159 | 1331 movff RCREG1, opt_compass_gain ; RCREG1=0x34 |
110 | 1332 dcfsnz WREG |
159 | 1333 movff RCREG1, opt_pressure_adjust ; RCREG1=0x35 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1334 dcfsnz WREG |
159 | 1335 movff RCREG1, opt_enable_safetystop ; RCREG1=0x36 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1336 dcfsnz WREG |
159 | 1337 movff RCREG1, opt_calibration_O2_ratio; RCREG1=0x37 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1338 dcfsnz WREG |
159 | 1339 movff RCREG1, opt_sensor_fallback ; RCREG1=0x38 |
1340 dcfsnz WREG | |
1341 movff RCREG1, opt_flip_screen ; RCREG1=0x39 | |
223 | 1342 dcfsnz WREG |
1343 movff RCREG1, opt_cR_button_left ; RCREG1=0x3A | |
1344 dcfsnz WREG | |
1345 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
|
1346 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1347 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
|
1348 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1349 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
|
1350 dcfsnz WREG |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1351 movff RCREG1, opt_modwarning ; RCREG1=0x3E |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1352 dcfsnz WREG |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1353 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
|
1354 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
|
1355 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
|
1356 dcfsnz WREG |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1357 movff RCREG1, opt_showppo2 ; RCREG1=0x41 |
368
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1358 dcfsnz WREG |
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1359 movff RCREG1, opt_temperature_adjust ; RCREG1=0x42 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1360 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1361 movff RCREG1, opt_safety_stop_length ; RCREG1=0x43 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1362 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1363 movff RCREG1, opt_safety_stop_start ; RCREG1=0x44 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1364 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1365 movff RCREG1, opt_safety_stop_end ; RCREG1=0x45 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1366 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1367 movff RCREG1, opt_safety_stop_reset ; RCREG1=0x46 |
424 | 1368 dcfsnz WREG |
1369 nop ; RCREG1=0x47, ignore conservatism for standard hwOS | |
444
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1370 dcfsnz WREG |
d93d75ae01bf
Adjustable timeout for Divemode (Config 0x48)
heinrichsweikamp
parents:
441
diff
changeset
|
1371 movff RCREG1, opt_diveTimeout ; RCREG1=0x48 |
475 | 1372 dcfsnz WREG |
1373 bra comm_write_button_polarity ; RCREG1=0x49 | |
483
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1374 dcfsnz WREG |
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1375 movff RCREG1, opt_PSCR_drop ; RCREG1=0x4A |
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1376 dcfsnz WREG |
afa7b66a6a84
Make opt_PSCR_drop and opt_PSCR_lungratio PC configurable
heinrichsweikamp
parents:
475
diff
changeset
|
1377 movff RCREG1, opt_PSCR_lungratio ; RCREG1=0x4B |
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1378 |
80 | 1379 |
1380 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
|
1381 ; 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
|
1382 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
|
1383 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
|
1384 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
|
1385 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
|
1386 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
|
1387 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
|
1388 call get_first_dil_to_WREG ; Makes sure at least one Diluent is "First" |
80 | 1389 bra comm_download_mode0 ; Done. Loop with timeout reset |
1390 | |
1391 comm_write_dil1: | |
1392 movff RCREG1,opt_dil_O2_ratio+0 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1393 rcall comm_write_get_byte |
80 | 1394 movff RCREG1,opt_dil_He_ratio+0 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1395 rcall comm_write_get_byte |
80 | 1396 movff RCREG1,opt_dil_type+0 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1397 rcall comm_write_get_byte |
80 | 1398 movff RCREG1,char_I_dil_change+0 |
1399 bra comm_write_abort ; Done. Loop with timeout reset | |
1400 comm_write_dil2: | |
1401 movff RCREG1,opt_dil_O2_ratio+1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1402 rcall comm_write_get_byte |
80 | 1403 movff RCREG1,opt_dil_He_ratio+1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1404 rcall comm_write_get_byte |
80 | 1405 movff RCREG1,opt_dil_type+1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1406 rcall comm_write_get_byte |
80 | 1407 movff RCREG1,char_I_dil_change+1 |
1408 bra comm_write_abort ; Done. Loop with timeout reset | |
1409 comm_write_dil3: | |
1410 movff RCREG1,opt_dil_O2_ratio+2 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1411 rcall comm_write_get_byte |
80 | 1412 movff RCREG1,opt_dil_He_ratio+2 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1413 rcall comm_write_get_byte |
80 | 1414 movff RCREG1,opt_dil_type+2 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1415 rcall comm_write_get_byte |
80 | 1416 movff RCREG1,char_I_dil_change+2 |
1417 bra comm_write_abort ; Done. Loop with timeout reset | |
1418 comm_write_dil4: | |
1419 movff RCREG1,opt_dil_O2_ratio+3 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1420 rcall comm_write_get_byte |
80 | 1421 movff RCREG1,opt_dil_He_ratio+3 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1422 rcall comm_write_get_byte |
80 | 1423 movff RCREG1,opt_dil_type+3 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1424 rcall comm_write_get_byte |
80 | 1425 movff RCREG1,char_I_dil_change+3 |
1426 bra comm_write_abort ; Done. Loop with timeout reset | |
1427 comm_write_dil5: | |
1428 movff RCREG1,opt_dil_O2_ratio+4 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1429 rcall comm_write_get_byte |
80 | 1430 movff RCREG1,opt_dil_He_ratio+4 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1431 rcall comm_write_get_byte |
80 | 1432 movff RCREG1,opt_dil_type+4 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1433 rcall comm_write_get_byte |
80 | 1434 movff RCREG1,char_I_dil_change+4 |
1435 bra comm_write_abort ; Done. Loop with timeout reset | |
1436 | |
1437 comm_write_sp1: | |
1438 movff RCREG1,char_I_setpoint_cbar+0 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1439 rcall comm_write_get_byte |
80 | 1440 movff RCREG1,char_I_setpoint_change+0 |
1441 bra comm_write_abort ; Done. Loop with timeout reset | |
1442 comm_write_sp2: | |
1443 movff RCREG1,char_I_setpoint_cbar+1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1444 rcall comm_write_get_byte |
80 | 1445 movff RCREG1,char_I_setpoint_change+1 |
1446 bra comm_write_abort ; Done. Loop with timeout reset | |
1447 comm_write_sp3: | |
1448 movff RCREG1,char_I_setpoint_cbar+2 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1449 rcall comm_write_get_byte |
80 | 1450 movff RCREG1,char_I_setpoint_change+2 |
1451 bra comm_write_abort ; Done. Loop with timeout reset | |
1452 comm_write_sp4: | |
1453 movff RCREG1,char_I_setpoint_cbar+3 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1454 rcall comm_write_get_byte |
80 | 1455 movff RCREG1,char_I_setpoint_change+3 |
1456 bra comm_write_abort ; Done. Loop with timeout reset | |
1457 comm_write_sp5: | |
1458 movff RCREG1,char_I_setpoint_cbar+4 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1459 rcall comm_write_get_byte |
80 | 1460 movff RCREG1,char_I_setpoint_change+4 |
1461 bra comm_write_abort ; Done. Loop with timeout reset | |
1462 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1463 ;----------------------------------------------------------------------------- |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1464 |
0 | 1465 comm_send_string: |
1466 movlw "n" ; send echo | |
1467 movwf TXREG1 | |
354 | 1468 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 1469 WIN_SMALL comm_string_column, comm_string_row |
1470 movlw .16 | |
1471 movwf lo ; counter | |
1472 comm_send_string_loop: | |
350 | 1473 rcall comm_write_get_byte |
0 | 1474 btfsc rs232_recieve_overflow ; Got byte? |
1475 bra comm_send_string_abort ; No, abort! | |
1476 movff RCREG1,POSTINC2 ; Store character | |
1477 decfsz lo,F | |
1478 bra comm_send_string_loop | |
1479 comm_send_string_abort: | |
1480 STRCAT_PRINT "" ; Show the text | |
80 | 1481 goto comm_download_mode0 ; Done. Loop with timeout reset |
0 | 1482 |
1483 ;----------------------------------------------------------------------------- | |
1484 | |
1485 comm_check_day: | |
1486 movff RCREG1, day | |
1487 movff month,lo ; new month | |
1488 dcfsnz lo,F | |
1489 movlw .31 | |
1490 dcfsnz lo,F | |
1491 movlw .28 | |
1492 dcfsnz lo,F | |
1493 movlw .31 | |
1494 dcfsnz lo,F | |
1495 movlw .30 | |
1496 dcfsnz lo,F | |
1497 movlw .31 | |
1498 dcfsnz lo,F | |
1499 movlw .30 | |
1500 dcfsnz lo,F | |
1501 movlw .31 | |
1502 dcfsnz lo,F | |
1503 movlw .31 | |
1504 dcfsnz lo,F | |
1505 movlw .30 | |
1506 dcfsnz lo,F | |
1507 movlw .31 | |
1508 dcfsnz lo,F | |
1509 movlw .30 | |
1510 dcfsnz lo,F | |
1511 movlw .31 | |
1512 cpfsgt day ; day ok? | |
1513 return ; OK | |
1514 movlw .1 ; not OK, set to 1st | |
1515 movwf day | |
1516 return | |
1517 | |
475 | 1518 comm_write_button_polarity: |
1519 ; Store RCREG1 into EEPROM .897 | |
1520 movlw LOW .897 | |
1521 movwf EEADR | |
1522 movlw HIGH .897 | |
1523 movwf EEADRH | |
1524 movff RCREG1,EEDATA | |
1525 movff EEDATA,button_polarity ; 0xFF (Both normal), 0x00 (Both inverted), 0x01 (Left inverted only), 0x02 (Right inverted only) | |
1526 call write_eeprom ; EEDATA into EEPROM@EEADR | |
1527 clrf EEADRH ; Reset EEADRH | |
1528 goto comm_download_mode0 ; Done. Loop with timeout reset | |
1529 | |
0 | 1530 ;---------------------------------------------------------------------------- |
1531 END |