Mercurial > public > hwos_code
annotate src/comm.asm @ 346:cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
author | heinrichsweikamp |
---|---|
date | Tue, 21 Jul 2015 12:08:01 +0200 |
parents | 508d7fb98b34 |
children | 7e5772df60cd |
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 |
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
|
506 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
|
507 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
|
508 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
|
509 goto comm_send_compact_headers ; Send all 256 compact headers |
0 | 510 movlw "l" |
511 cpfseq RCREG1 | |
512 bra $+4 | |
513 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
|
514 movlw "r" |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
515 cpfseq RCREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
516 bra $+4 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
517 bra comm_read_setting ; Read a setting (And send via USB) |
80 | 518 movlw "w" |
519 cpfseq RCREG1 | |
520 bra $+4 | |
521 bra comm_write_setting ; Write a setting (Into RAM) | |
522 movlw "x" | |
523 cpfseq RCREG1 | |
524 bra $+4 | |
525 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
|
526 |
0 | 527 |
528 btfss comm_service_enabled ; Done for Download mode | |
529 bra comm_download_mode0 ; Loop with timeout reset | |
530 | |
531 movlw 0x20 | |
532 cpfseq RCREG1 | |
533 bra $+4 | |
534 bra comm_send_range ; send hi:lo:temp1 bytes starting from ext_flash_address:3 | |
535 movlw 0x22 | |
536 cpfseq RCREG1 | |
537 bra $+4 | |
538 bra comm_reset_logbook_pointers ; Resets all logbook pointers and the logbook (!) | |
539 movlw 0x23 | |
540 cpfseq RCREG1 | |
541 bra $+4 | |
542 bra comm_reset_battery_gauge ; Resets battery gauge registers | |
543 movlw 0x30 | |
544 cpfseq RCREG1 | |
545 bra $+4 | |
546 bra comm_write_range ; write bytes starting from ext_flash_address:3 (Stop when timeout) | |
547 movlw 0x40 | |
548 cpfseq RCREG1 | |
549 bra $+4 | |
550 bra comm_erase_4kb ; erases 4kB block from ext_flash_address:3 (Warning: No confirmation or built-in security here...) | |
551 movlw 0x42 | |
552 cpfseq RCREG1 | |
553 bra $+4 | |
554 bra comm_erase_range4kb ; erases range in 4kB steps (Get 3 bytes address and 1byte amount of 4kB blocks) | |
555 movlw 0x50 | |
556 cpfseq RCREG1 | |
557 bra $+4 | |
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
558 bra comm_send_firmware ; send firmware to bootloader |
147 | 559 ; movlw "t" |
560 ; cpfseq RCREG1 | |
561 ; bra $+4 | |
562 ; goto testloop ; Start raw-data testloop | |
0 | 563 movlw 0xC1 |
564 cpfseq RCREG1 | |
565 bra $+4 | |
566 bra comm_service_ll_bootloader ; Start low-level bootloader | |
567 bra comm_download_mode0 ; Loop with timeout reset | |
568 | |
569 ;----------------------------------------------------------------------------- | |
570 | |
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
|
571 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
|
572 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
|
573 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
|
574 ; Send 16 bytes/dive (Compact Header) |
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 ; 1st: 20000Ch-20001Ch |
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 ; 2nd: 20100Ch-20101Ch |
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 ; 3rd: 20200Ch-20201Ch |
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 ; 100: 26400Ch-26401Ch |
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 ; 256: 2FF00Ch-2FF01Ch |
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 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
|
581 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
|
582 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
|
583 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
|
584 |
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 comm_send_compact_headers2: |
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 movlw 0x0C |
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 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
|
588 ; 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
|
589 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
|
590 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
|
591 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
|
592 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
|
593 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
594 movlw 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
|
595 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
|
596 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
|
597 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
|
598 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
599 comm_send_compact_headers4: |
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 movlw .10 |
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 movwf lo ; Counter |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
602 call rs232_wait_tx ; Wait for UART |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
603 call ext_flash_read_block_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
|
604 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
|
605 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
|
606 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
|
607 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
|
608 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
|
609 comm_send_compact_headers3: |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
610 call rs232_wait_tx ; Wait for UART |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
611 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
|
612 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
|
613 call ext_flash_read_block_stop |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
614 movlw .6 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
615 movwf lo ; Counter |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
616 comm_send_compact_headers5: |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
617 movlw 0xFF |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
618 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
|
619 call rs232_wait_tx ; Wait for UART |
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 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
|
621 bra comm_send_compact_headers5 |
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 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
|
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 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
625 ;----------------------------------------------------------------------------- |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
626 |
0 | 627 comm_send_headers: |
628 movlw "a" ; send echo | |
629 movwf TXREG1 | |
630 ; Send 256 bytes/dive (Header) | |
631 ; 1st: 200000h-2000FFh | |
632 ; 2nd: 201000h-2010FFh | |
633 ; 3rd: 202000h-2020FFh | |
634 ; 100: 264000h-2640FFh | |
635 ; 256: 2FF000h-2FF0FFh | |
636 movlw 0x1F | |
637 movwf ext_flash_address+2 | |
638 movlw 0xF0 | |
639 movwf ext_flash_address+1 | |
640 | |
641 comm_send_headers2: | |
642 movlw 0x00 | |
643 movwf ext_flash_address+0 | |
644 ; Adjust address for next dive | |
645 movlw 0x10 | |
646 addwf ext_flash_address+1 | |
647 movlw 0x00 | |
648 addwfc ext_flash_address+2 | |
649 | |
650 movlw 0x30 | |
651 cpfseq ext_flash_address+2 ; All 256 dive send? | |
652 bra comm_send_headers4 ; No, continue | |
653 bra comm_download_mode0 ; Done. Loop with timeout reset | |
654 | |
655 comm_send_headers4: | |
656 clrf lo ; Counter | |
657 call rs232_wait_tx ; Wait for UART | |
658 call ext_flash_read_block_start ; 1st byte | |
659 movwf TXREG1 | |
660 bra comm_send_headers3 ; counter 24bit | |
661 comm_send_headers_loop: | |
662 call ext_flash_read_block ; Read one byte | |
663 movwf TXREG1 ; Start new transmit | |
664 comm_send_headers3: | |
665 call rs232_wait_tx ; Wait for UART | |
666 decfsz lo,F | |
667 bra comm_send_headers_loop | |
668 call ext_flash_read_block_stop | |
669 bra comm_send_headers2 ; continue | |
670 | |
671 ;----------------------------------------------------------------------------- | |
80 | 672 |
673 comm_option_reset_all: ; Reset all options to factory default. | |
674 movlw "x" ; send echo | |
675 movwf TXREG1 | |
676 call option_reset_all | |
677 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
678 | |
679 ;----------------------------------------------------------------------------- | |
0 | 680 |
681 comm_set_time: | |
682 movlw "b" ; send echo | |
683 movwf TXREG1 | |
684 | |
685 call rs232_wait_tx ; wait for UART | |
686 call rs232_get_byte | |
687 btfsc rs232_recieve_overflow ; Got byte? | |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
688 bra comm_download_mode0 ; No, abort |
0 | 689 movff RCREG1, hours |
690 movlw d'24' | |
691 cpfslt hours | |
692 clrf hours | |
693 call rs232_get_byte | |
694 btfsc rs232_recieve_overflow ; Got byte? | |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
695 bra comm_download_mode0 ; No, abort |
0 | 696 movff RCREG1, mins |
697 movlw d'60' | |
698 cpfslt mins | |
699 clrf mins | |
700 call rs232_get_byte | |
701 btfsc rs232_recieve_overflow ; Got byte? | |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
702 bra comm_download_mode0 ; No, abort |
0 | 703 movff RCREG1, secs |
704 movlw d'60' | |
705 cpfslt secs | |
706 clrf secs | |
707 call rs232_get_byte | |
708 btfsc rs232_recieve_overflow ; Got byte? | |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
709 bra comm_download_mode0 ; No, abort |
0 | 710 movff RCREG1, month |
711 movlw d'13' | |
712 cpfslt month | |
713 movwf month | |
714 call rs232_get_byte | |
715 btfsc rs232_recieve_overflow ; Got byte? | |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
716 bra comm_download_mode0 ; No, abort |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
717 call comm_check_day ; Check day |
0 | 718 call rs232_get_byte |
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 |
0 | 721 movff RCREG1, year |
722 movlw d'100' | |
723 cpfslt year | |
724 clrf year | |
725 ; All ok, set RTCC | |
726 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
727 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
728 | |
729 ;----------------------------------------------------------------------------- | |
730 ; Set OSTC3 custom text string (opt_name_length ascii chars). | |
731 ; | |
732 | |
733 comm_set_custom_text: | |
734 movlw "c" ; send echo | |
735 movwf TXREG1 | |
736 call rs232_wait_tx ; wait for UART | |
737 lfsr FSR2,opt_name | |
738 movlw opt_name_length | |
739 movwf lo ; counter | |
740 comm_set_ctext_loop: | |
741 call rs232_get_byte | |
742 btfsc rs232_recieve_overflow ; Got byte? | |
136 | 743 bra comm_set_ctext_loop_done ; no, abort |
7 | 744 movff RCREG1,POSTINC2 ; Store character |
0 | 745 decfsz lo,F |
746 bra comm_set_ctext_loop | |
136 | 747 comm_set_ctext_loop_done: |
748 tstfsz lo ; Got opt_name_length bytes? | |
749 bra comm_set_ctext_loop_done2 ; no, clear remaining chars | |
750 bra comm_download_mode0 ; Done. Loop with timeout reset | |
751 comm_set_ctext_loop_done2: | |
752 clrf POSTINC2 | |
753 decfsz lo,F | |
754 bra comm_set_ctext_loop_done2 | |
7 | 755 bra comm_download_mode0 ; Done. Loop with timeout reset |
0 | 756 |
757 ;----------------------------------------------------------------------------- | |
758 ; Reply Serial (2 bytes low:high), firmware (major.minor) and custom text. | |
759 ; | |
760 | |
761 comm_identify: | |
762 movlw "i" ; send echo | |
763 movwf TXREG1 | |
764 call rs232_wait_tx ; wait for UART | |
765 | |
766 ;---- Read serial from internal EEPROM address 0000 | |
767 clrf EEADRH | |
768 clrf EEADR ; Get Serial number LOW | |
769 call read_eeprom ; read byte | |
770 movff EEDATA,lo | |
771 incf EEADR,F ; Get Serial number HIGH | |
772 call read_eeprom ; read byte | |
773 movff EEDATA,hi | |
774 | |
775 ;---- Emit serial number | |
776 movff lo,TXREG1 | |
777 call rs232_wait_tx | |
778 movff hi,TXREG1 | |
779 call rs232_wait_tx | |
780 | |
781 ;---- Emit fiwmware hi.lo | |
782 movlw softwareversion_x | |
783 movwf TXREG1 | |
784 call rs232_wait_tx | |
785 movlw softwareversion_y | |
786 movwf TXREG1 | |
787 call rs232_wait_tx | |
788 | |
789 ;---- Emit custom text | |
790 movlw opt_name_length | |
791 movwf hi | |
792 lfsr FSR2,opt_name | |
793 | |
794 common_identify_loop: | |
795 movff POSTINC2,TXREG1 | |
796 call rs232_wait_tx | |
797 decfsz hi,F | |
798 bra common_identify_loop | |
799 | |
800 bra comm_download_mode0 ; Done. | |
801 | |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
802 ;----------------------------------------------------------------------------- |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
803 ; Reply hardware descriptor byte |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
804 ; |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
805 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
806 comm_hardware_descriptor: |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
807 movlw "j" ; send echo |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
808 movwf TXREG1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
809 call rs232_wait_tx ; wait for UART |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
810 movff hardware_flag,TXREG1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
811 bra comm_download_mode0 ; Done. |
0 | 812 |
813 ;----------------------------------------------------------------------------- | |
814 | |
815 comm_send_dive: | |
816 movlw "f" ; send echo | |
817 movwf TXREG1 | |
818 | |
819 call rs232_get_byte | |
820 btfsc rs232_recieve_overflow ; Got byte? | |
821 bra comm_download_mode0 ; No, abort! | |
822 movff RCREG1,lo ; Store dive number (0-255) | |
823 ; First, send the header (again) | |
824 ; Set ext_flash_address:3 to TOC entry of this dive | |
825 ; 1st: 200000h-200FFFh -> lo=0 | |
826 ; 2nd: 201000h-201FFFh -> lo=1 | |
827 ; 3rd: 202000h-202FFFh -> lo=2 | |
828 ; 256: 2FF000h-2FFFFFh -> lo=255 | |
829 clrf ext_flash_address+0 | |
830 clrf ext_flash_address+1 | |
831 movlw 0x20 | |
832 movwf ext_flash_address+2 | |
833 movlw .16 | |
834 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) | |
835 movf PRODL,W | |
836 addwf ext_flash_address+1,F | |
837 movf PRODH,W | |
838 addwfc ext_flash_address+2,F | |
839 | |
840 incf_ext_flash_address d'2' ; Skip 0xFA, 0xFA | |
841 call ext_flash_byte_read_plus ; Read start address of profile | |
842 movff temp1,ext_flash_log_pointer+0 | |
843 call ext_flash_byte_read_plus ; Read start address of profile | |
844 movff temp1,ext_flash_log_pointer+1 | |
845 call ext_flash_byte_read_plus ; Read start address of profile | |
846 movff temp1,ext_flash_log_pointer+2 | |
847 call ext_flash_byte_read_plus ; Read end address of profile | |
848 movff temp1,convert_value_temp+0 | |
849 call ext_flash_byte_read_plus ; Read end address of profile | |
850 movff temp1,convert_value_temp+1 | |
851 call ext_flash_byte_read_plus ; Read end address of profile | |
852 movff temp1,convert_value_temp+2 | |
853 decf_ext_flash_address d'8' ; Back again to first 0xFA in header | |
854 | |
855 movf ext_flash_log_pointer+0,W | |
856 cpfseq convert_value_temp+0 ; Equal? | |
857 bra comm_send_dive1 ; No, Send header | |
858 | |
859 movf ext_flash_log_pointer+1,W | |
860 cpfseq convert_value_temp+1 ; Equal? | |
861 bra comm_send_dive1 ; No, Send header | |
862 | |
863 movf ext_flash_log_pointer+2,W | |
864 cpfseq convert_value_temp+2 ; Equal? | |
865 bra comm_send_dive1 ; No, Send header | |
866 | |
867 ; Start=End -> Not good, abort | |
868 bra comm_download_mode0 ; Done. Loop with timeout reset | |
869 | |
870 comm_send_dive1: | |
871 ; Send header | |
872 clrf hi ; Counter | |
873 call rs232_wait_tx ; Wait for UART | |
874 call ext_flash_read_block_start ; 1st byte | |
875 movwf TXREG1 | |
876 bra comm_send_dive_header | |
877 comm_send_dive_header2: | |
878 call ext_flash_read_block ; Read one byte | |
879 movwf TXREG1 ; Start new transmit | |
880 comm_send_dive_header: | |
881 call rs232_wait_tx ; Wait for UART | |
882 decfsz hi,F | |
883 bra comm_send_dive_header2 | |
884 call ext_flash_read_block_stop | |
885 | |
886 ; Set address for profile | |
887 movff ext_flash_log_pointer+0,ext_flash_address+0 | |
888 movff ext_flash_log_pointer+1,ext_flash_address+1 | |
889 movff ext_flash_log_pointer+2,ext_flash_address+2 | |
890 | |
891 movlw .6 ; Skip 6byte short header in profile - only for internal use | |
892 call incf_ext_flash_address0_0x20 ; increases bytes in ext_flash_address:3 with 0x200000 bank switching | |
893 | |
894 comm_send_dive_profile: | |
895 call ext_flash_byte_read_plus_0x20 ; Read one byte into temp1, takes care of banking at 0x200000 | |
896 call rs232_wait_tx ; Wait for UART | |
897 movff temp1,TXREG1 ; Send a byte | |
898 | |
899 ; 24bit compare with end address | |
900 movff convert_value_temp+0,WREG | |
901 cpfseq ext_flash_address+0 | |
902 bra comm_send_dive_profile | |
903 movff convert_value_temp+1,WREG | |
904 cpfseq ext_flash_address+1 | |
905 bra comm_send_dive_profile | |
906 movff convert_value_temp+2,WREG | |
907 cpfseq ext_flash_address+2 | |
908 bra comm_send_dive_profile | |
909 | |
238 | 910 rcall comm_read_setting_wait ; Wait for UART |
0 | 911 bra comm_download_mode0 ; Done. Loop with timeout reset |
912 | |
913 ;----------------------------------------------------------------------------- | |
914 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
915 comm_read_setting: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
916 movlw "r" |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
917 movwf TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
918 call rs232_get_byte |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
919 btfsc rs232_recieve_overflow ; Got byte? |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
920 bra comm_read_abort ; No, abort! |
238 | 921 rcall comm_read_setting_wait ; Wait for UART |
922 movlw 0x0F | |
923 cpfsgt RCREG1 ; 0x00-0x0F: unused | |
924 bra comm_read_abort ; abort! | |
925 subwf RCREG1,W ; Subtract unused commands | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
926 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
927 bra comm_read_gas1 ; RCREG1=0x10 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
928 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
929 bra comm_read_gas2 ; RCREG1=0x11 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
930 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
931 bra comm_read_gas3 ; RCREG1=0x12 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
932 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
933 bra comm_read_gas4 ; RCREG1=0x13 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
934 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
935 bra comm_read_gas5 ; RCREG1=0x14 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
936 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
937 bra comm_read_dil1 ; RCREG1=0x15 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
938 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
939 bra comm_read_dil2 ; RCREG1=0x16 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
940 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
941 bra comm_read_dil3 ; RCREG1=0x17 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
942 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
943 bra comm_read_dil4 ; RCREG1=0x18 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
944 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
945 bra comm_read_dil5 ; RCREG1=0x19 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
946 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
947 bra comm_read_sp1 ; RCREG1=0x1A |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
948 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
949 bra comm_read_sp2 ; RCREG1=0x1B |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
950 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
951 bra comm_read_sp3 ; RCREG1=0x1C |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
952 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
953 bra comm_read_sp4 ; RCREG1=0x1D |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
954 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
955 bra comm_read_sp5 ; RCREG1=0x1E |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
956 dcfsnz WREG |
159 | 957 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
|
958 dcfsnz WREG |
159 | 959 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
|
960 dcfsnz WREG |
159 | 961 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
|
962 dcfsnz WREG |
159 | 963 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
|
964 dcfsnz WREG |
159 | 965 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
|
966 dcfsnz WREG |
159 | 967 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
|
968 dcfsnz WREG |
159 | 969 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
|
970 dcfsnz WREG |
159 | 971 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
|
972 dcfsnz WREG |
159 | 973 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
|
974 dcfsnz WREG |
159 | 975 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
|
976 dcfsnz WREG |
159 | 977 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
|
978 dcfsnz WREG |
159 | 979 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
|
980 dcfsnz WREG |
159 | 981 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
|
982 dcfsnz WREG |
159 | 983 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
|
984 dcfsnz WREG |
159 | 985 movff opt_brightness, TXREG1 ; RCREG1=0x2D |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
986 dcfsnz WREG |
159 | 987 movff opt_units, TXREG1 ; RCREG1=0x2E |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
988 dcfsnz WREG |
159 | 989 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
|
990 dcfsnz WREG |
159 | 991 movff opt_salinity, TXREG1 ; RCREG1=0x30 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
992 dcfsnz WREG |
159 | 993 movff opt_dive_color_scheme, TXREG1 ; RCREG1=0x31 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
994 dcfsnz WREG |
159 | 995 movff opt_language, TXREG1 ; RCREG1=0x32 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
996 dcfsnz WREG |
159 | 997 movff opt_dateformat, TXREG1 ; RCREG1=0x33 |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
998 dcfsnz WREG |
159 | 999 movff opt_compass_gain, TXREG1 ; RCREG1=0x34 |
110 | 1000 dcfsnz WREG |
159 | 1001 movff opt_pressure_adjust, TXREG1 ; RCREG1=0x35 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1002 dcfsnz WREG |
159 | 1003 movff opt_enable_safetystop, TXREG1 ; RCREG1=0x36 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1004 dcfsnz WREG |
159 | 1005 movff opt_calibration_O2_ratio, TXREG1; RCREG1=0x37 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1006 dcfsnz WREG |
159 | 1007 movff opt_sensor_fallback, TXREG1 ; RCREG1=0x38 |
1008 dcfsnz WREG | |
1009 movff opt_flip_screen, TXREG1 ; RCREG1=0x39 | |
223 | 1010 dcfsnz WREG |
1011 movff opt_cR_button_left, TXREG1 ; RCREG1=0x3A | |
1012 dcfsnz WREG | |
1013 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
|
1014 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1015 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
|
1016 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1017 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
|
1018 dcfsnz WREG |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1019 movff opt_modwarning, TXREG1 ; RCREG1=0x3E |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1020 dcfsnz WREG |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1021 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
|
1022 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
|
1023 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
|
1024 dcfsnz WREG |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1025 movff opt_showppo2, TXREG1 ; RCREG1=0x41 |
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1026 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1027 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1028 comm_read_abort: |
255 | 1029 comm_read_done: |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1030 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
|
1031 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1032 comm_read_setting_wait: |
255 | 1033 goto rs232_wait_tx ; Wait for UART (and return!) |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1034 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1035 comm_read_gas1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1036 movff opt_gas_O2_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1037 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
|
1038 movff opt_gas_He_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1039 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
|
1040 movff opt_gas_type+0, 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 |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1042 movff opt_OC_bail_gas_change+0,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1043 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
|
1044 comm_read_gas2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1045 movff opt_gas_O2_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1046 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1047 movff opt_gas_He_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1048 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1049 movff opt_gas_type+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1050 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1051 movff opt_OC_bail_gas_change+1,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1052 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1053 comm_read_gas3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1054 movff opt_gas_O2_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1055 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1056 movff opt_gas_He_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1057 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1058 movff opt_gas_type+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1059 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1060 movff opt_OC_bail_gas_change+2,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1061 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1062 comm_read_gas4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1063 movff opt_gas_O2_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1064 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1065 movff opt_gas_He_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1066 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1067 movff opt_gas_type+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1068 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1069 movff opt_OC_bail_gas_change+3,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1070 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1071 comm_read_gas5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1072 movff opt_gas_O2_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1073 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1074 movff opt_gas_He_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1075 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1076 movff opt_gas_type+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1077 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1078 movff opt_OC_bail_gas_change+4,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1079 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1080 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1081 comm_read_dil1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1082 movff opt_dil_O2_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1083 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
|
1084 movff opt_dil_He_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1085 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
|
1086 movff opt_dil_type+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1087 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
|
1088 movff char_I_dil_change+0,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1089 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
|
1090 comm_read_dil2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1091 movff opt_dil_O2_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1092 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1093 movff opt_dil_He_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1094 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1095 movff opt_dil_type+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1096 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1097 movff char_I_dil_change+1,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1098 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1099 comm_read_dil3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1100 movff opt_dil_O2_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1101 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1102 movff opt_dil_He_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1103 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1104 movff opt_dil_type+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1105 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1106 movff char_I_dil_change+2,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1107 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1108 comm_read_dil4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1109 movff opt_dil_O2_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1110 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1111 movff opt_dil_He_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1112 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1113 movff opt_dil_type+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1114 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1115 movff char_I_dil_change+3,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1116 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1117 comm_read_dil5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1118 movff opt_dil_O2_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1119 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1120 movff opt_dil_He_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1121 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1122 movff opt_dil_type+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1123 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1124 movff char_I_dil_change+4,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1125 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1126 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1127 comm_read_sp1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1128 movff char_I_setpoint_cbar+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1129 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1130 movff char_I_setpoint_change+0, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1131 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
|
1132 comm_read_sp2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1133 movff char_I_setpoint_cbar+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1134 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
|
1135 movff char_I_setpoint_change+1, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1136 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
|
1137 comm_read_sp3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1138 movff char_I_setpoint_cbar+2, 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_setpoint_change+2, 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_sp4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1143 movff char_I_setpoint_cbar+3, 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 char_I_setpoint_change+3, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1146 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
|
1147 comm_read_sp5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1148 movff char_I_setpoint_cbar+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1149 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
|
1150 movff char_I_setpoint_change+4, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1151 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
110 | 1152 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1153 |
80 | 1154 ;----------------------------------------------------------------------------- |
238 | 1155 comm_write_gas1: |
1156 movff RCREG1,opt_gas_O2_ratio+0 | |
1157 rcall comm_write_get_byte | |
1158 movff RCREG1,opt_gas_He_ratio+0 | |
1159 rcall comm_write_get_byte | |
1160 movff RCREG1,opt_gas_type+0 | |
1161 rcall comm_write_get_byte | |
1162 movff RCREG1,opt_OC_bail_gas_change+0 | |
1163 bra comm_write_abort ; Done. Loop with timeout reset | |
1164 comm_write_gas2: | |
1165 movff RCREG1,opt_gas_O2_ratio+1 | |
1166 rcall comm_write_get_byte | |
1167 movff RCREG1,opt_gas_He_ratio+1 | |
1168 rcall comm_write_get_byte | |
1169 movff RCREG1,opt_gas_type+1 | |
1170 rcall comm_write_get_byte | |
1171 movff RCREG1,opt_OC_bail_gas_change+1 | |
1172 bra comm_write_abort ; Done. Loop with timeout reset | |
1173 comm_write_gas3: | |
1174 movff RCREG1,opt_gas_O2_ratio+2 | |
1175 rcall comm_write_get_byte | |
1176 movff RCREG1,opt_gas_He_ratio+2 | |
1177 rcall comm_write_get_byte | |
1178 movff RCREG1,opt_gas_type+2 | |
1179 rcall comm_write_get_byte | |
1180 movff RCREG1,opt_OC_bail_gas_change+2 | |
1181 bra comm_write_abort ; Done. Loop with timeout reset | |
1182 comm_write_gas4: | |
1183 movff RCREG1,opt_gas_O2_ratio+3 | |
1184 rcall comm_write_get_byte | |
1185 movff RCREG1,opt_gas_He_ratio+3 | |
1186 rcall comm_write_get_byte | |
1187 movff RCREG1,opt_gas_type+3 | |
1188 rcall comm_write_get_byte | |
1189 movff RCREG1,opt_OC_bail_gas_change+3 | |
1190 bra comm_write_abort ; Done. Loop with timeout reset | |
1191 comm_write_gas5: | |
1192 movff RCREG1,opt_gas_O2_ratio+4 | |
1193 rcall comm_write_get_byte | |
1194 movff RCREG1,opt_gas_He_ratio+4 | |
1195 rcall comm_write_get_byte | |
1196 movff RCREG1,opt_gas_type+4 | |
1197 rcall comm_write_get_byte | |
1198 movff RCREG1,opt_OC_bail_gas_change+4 | |
1199 bra comm_write_abort ; Done. Loop with timeout reset | |
80 | 1200 |
1201 | |
1202 comm_write_setting: | |
1203 movlw "w" | |
1204 movwf TXREG1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1205 rcall comm_write_get_byte ; "Byte 2" |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1206 btfsc rs232_recieve_overflow ; Got byte? |
80 | 1207 bra comm_write_abort ; No, abort! |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1208 movff RCREG1,temp1 ; Copy |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1209 rcall comm_write_get_byte ; "Byte 3" |
238 | 1210 rcall comm_read_setting_wait ; Wait for UART |
1211 movlw 0x0F | |
1212 cpfsgt temp1 ; 0x00-0x0F: unused | |
1213 bra comm_write_abort ; abort! | |
1214 subwf temp1,W ; Subtract unused commands | |
80 | 1215 dcfsnz WREG |
1216 bra comm_write_gas1 ; RCREG1=0x10 | |
1217 dcfsnz WREG | |
1218 bra comm_write_gas2 ; RCREG1=0x11 | |
1219 dcfsnz WREG | |
1220 bra comm_write_gas3 ; RCREG1=0x12 | |
1221 dcfsnz WREG | |
1222 bra comm_write_gas4 ; RCREG1=0x13 | |
1223 dcfsnz WREG | |
1224 bra comm_write_gas5 ; RCREG1=0x14 | |
1225 dcfsnz WREG | |
1226 bra comm_write_dil1 ; RCREG1=0x15 | |
1227 dcfsnz WREG | |
1228 bra comm_write_dil2 ; RCREG1=0x16 | |
1229 dcfsnz WREG | |
1230 bra comm_write_dil3 ; RCREG1=0x17 | |
1231 dcfsnz WREG | |
1232 bra comm_write_dil4 ; RCREG1=0x18 | |
1233 dcfsnz WREG | |
1234 bra comm_write_dil5 ; RCREG1=0x19 | |
1235 dcfsnz WREG | |
1236 bra comm_write_sp1 ; RCREG1=0x1A | |
1237 dcfsnz WREG | |
1238 bra comm_write_sp2 ; RCREG1=0x1B | |
1239 dcfsnz WREG | |
1240 bra comm_write_sp3 ; RCREG1=0x1C | |
1241 dcfsnz WREG | |
1242 bra comm_write_sp4 ; RCREG1=0x1D | |
1243 dcfsnz WREG | |
1244 bra comm_write_sp5 ; RCREG1=0x1E | |
1245 dcfsnz WREG | |
159 | 1246 movff RCREG1, opt_ccr_mode ; RCREG1=0x1F |
80 | 1247 dcfsnz WREG |
159 | 1248 movff RCREG1, opt_dive_mode ; RCREG1=0x20 |
80 | 1249 dcfsnz WREG |
159 | 1250 movff RCREG1, char_I_deco_model ; RCREG1=0x21 |
80 | 1251 dcfsnz WREG |
159 | 1252 movff RCREG1, opt_ppO2_max ; RCREG1=0x22 |
80 | 1253 dcfsnz WREG |
159 | 1254 movff RCREG1, opt_ppO2_min ; RCREG1=0x23 |
80 | 1255 dcfsnz WREG |
159 | 1256 movff RCREG1, char_I_extra_time ; RCREG1=0x24 |
80 | 1257 dcfsnz WREG |
159 | 1258 movff RCREG1, opt_GF_low ; RCREG1=0x25 |
80 | 1259 dcfsnz WREG |
159 | 1260 movff RCREG1, opt_GF_high ; RCREG1=0x26 |
80 | 1261 dcfsnz WREG |
159 | 1262 movff RCREG1, opt_aGF_low ; RCREG1=0x27 |
80 | 1263 dcfsnz WREG |
159 | 1264 movff RCREG1, opt_aGF_high ; RCREG1=0x28 |
80 | 1265 dcfsnz WREG |
159 | 1266 movff RCREG1, opt_enable_aGF ; RCREG1=0x29 |
80 | 1267 dcfsnz WREG |
159 | 1268 movff RCREG1, char_I_saturation_multiplier; RCREG1=0x2A |
80 | 1269 dcfsnz WREG |
159 | 1270 movff RCREG1, char_I_desaturation_multiplier; RCREG1=0x2B |
80 | 1271 dcfsnz WREG |
159 | 1272 movff RCREG1, opt_last_stop ; RCREG1=0x2C |
80 | 1273 dcfsnz WREG |
159 | 1274 movff RCREG1, opt_brightness ; RCREG1=0x2D |
80 | 1275 dcfsnz WREG |
159 | 1276 movff RCREG1, opt_units ; RCREG1=0x2E |
80 | 1277 dcfsnz WREG |
159 | 1278 movff RCREG1, opt_sampling_rate ; RCREG1=0x2F |
80 | 1279 dcfsnz WREG |
159 | 1280 movff RCREG1, opt_salinity ; RCREG1=0x30 |
80 | 1281 dcfsnz WREG |
159 | 1282 movff RCREG1, opt_dive_color_scheme ; RCREG1=0x31 |
80 | 1283 dcfsnz WREG |
159 | 1284 movff RCREG1, opt_language ; RCREG1=0x32 |
80 | 1285 dcfsnz WREG |
159 | 1286 movff RCREG1, opt_dateformat ; RCREG1=0x33 |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1287 dcfsnz WREG |
159 | 1288 movff RCREG1, opt_compass_gain ; RCREG1=0x34 |
110 | 1289 dcfsnz WREG |
159 | 1290 movff RCREG1, opt_pressure_adjust ; RCREG1=0x35 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1291 dcfsnz WREG |
159 | 1292 movff RCREG1, opt_enable_safetystop ; RCREG1=0x36 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1293 dcfsnz WREG |
159 | 1294 movff RCREG1, opt_calibration_O2_ratio; RCREG1=0x37 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1295 dcfsnz WREG |
159 | 1296 movff RCREG1, opt_sensor_fallback ; RCREG1=0x38 |
1297 dcfsnz WREG | |
1298 movff RCREG1, opt_flip_screen ; RCREG1=0x39 | |
223 | 1299 dcfsnz WREG |
1300 movff RCREG1, opt_cR_button_left ; RCREG1=0x3A | |
1301 dcfsnz WREG | |
1302 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
|
1303 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1304 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
|
1305 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1306 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
|
1307 dcfsnz WREG |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1308 movff RCREG1, opt_modwarning ; RCREG1=0x3E |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1309 dcfsnz WREG |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1310 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
|
1311 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
|
1312 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
|
1313 dcfsnz WREG |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1314 movff RCREG1, opt_showppo2 ; RCREG1=0x41 |
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1315 |
80 | 1316 |
1317 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
|
1318 ; 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
|
1319 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
|
1320 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
|
1321 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
|
1322 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
|
1323 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
|
1324 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
|
1325 call get_first_dil_to_WREG ; Makes sure at least one Diluent is "First" |
80 | 1326 bra comm_download_mode0 ; Done. Loop with timeout reset |
1327 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1328 comm_write_get_byte: |
80 | 1329 call rs232_get_byte |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1330 return |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1331 |
80 | 1332 comm_write_dil1: |
1333 movff RCREG1,opt_dil_O2_ratio+0 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1334 rcall comm_write_get_byte |
80 | 1335 movff RCREG1,opt_dil_He_ratio+0 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1336 rcall comm_write_get_byte |
80 | 1337 movff RCREG1,opt_dil_type+0 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1338 rcall comm_write_get_byte |
80 | 1339 movff RCREG1,char_I_dil_change+0 |
1340 bra comm_write_abort ; Done. Loop with timeout reset | |
1341 comm_write_dil2: | |
1342 movff RCREG1,opt_dil_O2_ratio+1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1343 rcall comm_write_get_byte |
80 | 1344 movff RCREG1,opt_dil_He_ratio+1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1345 rcall comm_write_get_byte |
80 | 1346 movff RCREG1,opt_dil_type+1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1347 rcall comm_write_get_byte |
80 | 1348 movff RCREG1,char_I_dil_change+1 |
1349 bra comm_write_abort ; Done. Loop with timeout reset | |
1350 comm_write_dil3: | |
1351 movff RCREG1,opt_dil_O2_ratio+2 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1352 rcall comm_write_get_byte |
80 | 1353 movff RCREG1,opt_dil_He_ratio+2 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1354 rcall comm_write_get_byte |
80 | 1355 movff RCREG1,opt_dil_type+2 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1356 rcall comm_write_get_byte |
80 | 1357 movff RCREG1,char_I_dil_change+2 |
1358 bra comm_write_abort ; Done. Loop with timeout reset | |
1359 comm_write_dil4: | |
1360 movff RCREG1,opt_dil_O2_ratio+3 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1361 rcall comm_write_get_byte |
80 | 1362 movff RCREG1,opt_dil_He_ratio+3 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1363 rcall comm_write_get_byte |
80 | 1364 movff RCREG1,opt_dil_type+3 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1365 rcall comm_write_get_byte |
80 | 1366 movff RCREG1,char_I_dil_change+3 |
1367 bra comm_write_abort ; Done. Loop with timeout reset | |
1368 comm_write_dil5: | |
1369 movff RCREG1,opt_dil_O2_ratio+4 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1370 rcall comm_write_get_byte |
80 | 1371 movff RCREG1,opt_dil_He_ratio+4 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1372 rcall comm_write_get_byte |
80 | 1373 movff RCREG1,opt_dil_type+4 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1374 rcall comm_write_get_byte |
80 | 1375 movff RCREG1,char_I_dil_change+4 |
1376 bra comm_write_abort ; Done. Loop with timeout reset | |
1377 | |
1378 comm_write_sp1: | |
1379 movff RCREG1,char_I_setpoint_cbar+0 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1380 rcall comm_write_get_byte |
80 | 1381 movff RCREG1,char_I_setpoint_change+0 |
1382 bra comm_write_abort ; Done. Loop with timeout reset | |
1383 comm_write_sp2: | |
1384 movff RCREG1,char_I_setpoint_cbar+1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1385 rcall comm_write_get_byte |
80 | 1386 movff RCREG1,char_I_setpoint_change+1 |
1387 bra comm_write_abort ; Done. Loop with timeout reset | |
1388 comm_write_sp3: | |
1389 movff RCREG1,char_I_setpoint_cbar+2 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1390 rcall comm_write_get_byte |
80 | 1391 movff RCREG1,char_I_setpoint_change+2 |
1392 bra comm_write_abort ; Done. Loop with timeout reset | |
1393 comm_write_sp4: | |
1394 movff RCREG1,char_I_setpoint_cbar+3 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1395 rcall comm_write_get_byte |
80 | 1396 movff RCREG1,char_I_setpoint_change+3 |
1397 bra comm_write_abort ; Done. Loop with timeout reset | |
1398 comm_write_sp5: | |
1399 movff RCREG1,char_I_setpoint_cbar+4 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1400 rcall comm_write_get_byte |
80 | 1401 movff RCREG1,char_I_setpoint_change+4 |
1402 bra comm_write_abort ; Done. Loop with timeout reset | |
1403 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1404 ;----------------------------------------------------------------------------- |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1405 |
0 | 1406 comm_send_string: |
1407 movlw "n" ; send echo | |
1408 movwf TXREG1 | |
1409 call rs232_wait_tx ; Wait for UART | |
1410 WIN_SMALL comm_string_column, comm_string_row | |
1411 movlw .16 | |
1412 movwf lo ; counter | |
1413 comm_send_string_loop: | |
1414 call rs232_get_byte | |
1415 btfsc rs232_recieve_overflow ; Got byte? | |
1416 bra comm_send_string_abort ; No, abort! | |
1417 movff RCREG1,POSTINC2 ; Store character | |
1418 decfsz lo,F | |
1419 bra comm_send_string_loop | |
1420 comm_send_string_abort: | |
1421 STRCAT_PRINT "" ; Show the text | |
80 | 1422 goto comm_download_mode0 ; Done. Loop with timeout reset |
0 | 1423 |
1424 ;----------------------------------------------------------------------------- | |
1425 | |
1426 comm_check_day: | |
1427 movff RCREG1, day | |
1428 movff month,lo ; new month | |
1429 dcfsnz lo,F | |
1430 movlw .31 | |
1431 dcfsnz lo,F | |
1432 movlw .28 | |
1433 dcfsnz lo,F | |
1434 movlw .31 | |
1435 dcfsnz lo,F | |
1436 movlw .30 | |
1437 dcfsnz lo,F | |
1438 movlw .31 | |
1439 dcfsnz lo,F | |
1440 movlw .30 | |
1441 dcfsnz lo,F | |
1442 movlw .31 | |
1443 dcfsnz lo,F | |
1444 movlw .31 | |
1445 dcfsnz lo,F | |
1446 movlw .30 | |
1447 dcfsnz lo,F | |
1448 movlw .31 | |
1449 dcfsnz lo,F | |
1450 movlw .30 | |
1451 dcfsnz lo,F | |
1452 movlw .31 | |
1453 cpfsgt day ; day ok? | |
1454 return ; OK | |
1455 movlw .1 ; not OK, set to 1st | |
1456 movwf day | |
1457 return | |
1458 | |
1459 ;---------------------------------------------------------------------------- | |
1460 END |