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