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