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