Mercurial > public > hwos_code
annotate src/comm.asm @ 427:ceb1b7329dce
add code for new compass chip
author | heinrichsweikamp |
---|---|
date | Tue, 14 Jun 2016 13:02:17 +0200 |
parents | 8f8151bb53bb |
children | 360acdcda0d7 |
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 |
426 | 30 #DEFINE timeout_comm_pre_mode .240 ; Pre-loop |
0 | 31 #DEFINE timeout_comm_mode .120 ; Download mode |
32 #DEFINE timeout_service_mode .120 ; Service mode | |
33 | |
34 #DEFINE comm_title_row .0 | |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
35 #DEFINE comm_title_column_usb .50 |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
36 #DEFINE comm_title_column_ble .25 |
0 | 37 |
38 #DEFINE comm_string_row .30 | |
39 #DEFINE comm_string_column .40 | |
40 | |
41 | |
42 #DEFINE comm_status1_row .70 | |
43 #DEFINE comm_status1_column .10 | |
44 #DEFINE comm_status2_row .100 | |
45 #DEFINE comm_status2_column comm_status1_column | |
46 #DEFINE comm_status3_row .130 | |
47 #DEFINE comm_status3_column comm_status1_column | |
48 | |
49 #DEFINE comm_warning_row .160 | |
50 #DEFINE comm_warning_column .65 | |
51 | |
52 comm code | |
53 | |
54 ; test for comm | |
218 | 55 global comm_mode, comm_mode0 |
0 | 56 comm_mode: |
113 | 57 WAITMS d'1' |
58 btfss vusb_in ; USB plugged in? | |
59 return ; No, it was only a glitch | |
60 WAITMS d'1' | |
61 btfss vusb_in ; USB plugged in? | |
62 return ; No, it was only a glitch | |
218 | 63 comm_mode0: |
0 | 64 call TFT_ClearScreen |
65 WIN_COLOR color_greenish | |
269
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
66 btfsc ble_available ; ble available |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
67 bra comm_mode0_ble |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
68 WIN_SMALL comm_title_column_usb, comm_title_row |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
69 STRCPY_TEXT_PRINT tUsbTitle ; USB Mode |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
70 bra comm_mode0_common |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
71 comm_mode0_ble: |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
72 WIN_SMALL comm_title_column_ble, comm_title_row |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
73 STRCPY_TEXT_PRINT tBleTitle ; BLE Mode |
1207cf9a9408
adjust menu for different hardware versions
heinrichsweikamp
parents:
255
diff
changeset
|
74 comm_mode0_common: |
0 | 75 call TFT_standard_color |
76 WIN_TOP .10 | |
77 WIN_LEFT .1 | |
78 movlw 0xDE | |
79 movwf TBLPTRL | |
80 movlw 0xEE | |
81 movwf TBLPTRH | |
82 movlw 0x01 | |
83 movwf TBLPTRU | |
251
3fec179a6220
some cleanup, temporaly disable dive_warning.inc
heinrichsweikamp
parents:
245
diff
changeset
|
84 extern color_image |
0 | 85 call color_image ; Show usb logo |
86 WIN_SMALL comm_status1_column, comm_status1_row | |
87 STRCPY_TEXT_PRINT tUsbStarting ; Starting... | |
88 call TFT_serial ; Show serial and firmware version | |
89 bcf enable_screen_dumps ; =1: Ignore vin_usb, wait for "l" command (Screen dump) | |
90 bcf switch_right | |
91 bcf comm_service_enabled | |
92 bsf menubit | |
93 bcf battery_removed_in_usb ; =1: The battery has been removed in USB | |
94 movlw timeout_comm_pre_mode | |
95 movwf timeout_counter | |
96 WIN_SMALL comm_status1_column+.80, comm_status1_row | |
97 STRCPY_TEXT_PRINT tUsbStartDone ; Done... | |
98 call enable_rs232 ; Also sets to speed_normal ... | |
99 comm_mode1: | |
100 bcf onesecupdate | |
101 bcf LEDr | |
102 dcfsnz timeout_counter,F | |
103 bra comm_service_exit ; Timeout -> Exit | |
104 comm_mode2: | |
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 | |
420 | 307 |
308 ; Got 4bytes: 3bytes address and 1 bytes (lo) amount of 4kB blocks | |
0 | 309 |
310 comm_erase_range4kb1: | |
311 call ext_flash_erase4kB ; Erase block! | |
312 | |
313 movlw 0x10 | |
314 addwf ext_flash_address+1,F | |
315 movlw .0 | |
316 addwfc ext_flash_address+2,F ; Increase address by .4096, or 0x1000 | |
317 decfsz lo,F | |
318 bra comm_erase_range4kb1 ; Loop until lo=zero | |
319 | |
320 bra comm_download_mode0 ; Done (Sends the 4C OK too). | |
321 | |
322 ;----------------------------------------------------------------------------- | |
323 | |
324 comm_erase_4kb: ; Get 3 bytes start address | |
325 bcf INTCON,GIE ; All interrups off! | |
326 | |
327 rcall comm_get_flash_address ; Get three bytes address or return | |
328 btfsc rs232_recieve_overflow ; Got Data? | |
329 bra comm_download_mode0 ; No, Done. | |
330 | |
331 call ext_flash_erase4kB ; Erase one block | |
332 bra comm_download_mode0 ; Done. | |
333 | |
334 ;----------------------------------------------------------------------------- | |
335 | |
336 comm_write_range: ; Get 3 bytes start address | |
337 movlw 0x30 ; send echo | |
338 movwf TXREG1 | |
354 | 339 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 340 |
341 bcf INTCON,GIE ; All interrups off! | |
342 | |
343 rcall comm_get_flash_address ; Get three bytes address or return | |
344 btfsc rs232_recieve_overflow ; Got Data? | |
345 bra comm_download_mode0 ; No, Done. | |
346 | |
347 comm_write_range_loop: | |
350 | 348 rcall comm_write_get_byte |
0 | 349 btfsc rs232_recieve_overflow ; Got byte? |
420 | 350 bra comm_download_mode0 ; No, Done (and send OK byte too). |
0 | 351 movf RCREG1,W |
423
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
352 ; bsf NCTS ; Hold Bluetooth Chip (Requires PC/Android/iOS side to use flow control...) |
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
353 call ext_flash_byte_write_comms ; write one byte |
ccaaac45b61a
_another_ timing fix for firmware updates (2.07 was not published yet anyway)
heinrichsweikamp
parents:
420
diff
changeset
|
354 ; bcf NCTS ; Release Bluetooth Chip (Requires PC/Android/iOS side to use flow control...) |
0 | 355 call incf_ext_flash_address_p1 ; increase address+1 |
420 | 356 bra comm_write_range_loop |
0 | 357 |
358 ;----------------------------------------------------------------------------- | |
359 | |
360 comm_send_range: ; Get 3 bytes start address and 3 bytes amount | |
361 movlw 0x20 ; send echo | |
362 movwf TXREG1 | |
354 | 363 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 364 |
365 bcf INTCON,GIE ; All interrups off! | |
366 | |
367 rcall comm_get_flash_address ; Get three bytes address or return | |
368 btfsc rs232_recieve_overflow ; Got Data? | |
369 bra comm_download_mode0 ; No, Done. | |
370 | |
350 | 371 rcall comm_write_get_byte |
0 | 372 btfsc rs232_recieve_overflow ; Got byte? |
373 bra comm_download_mode0 ; No, Done. | |
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
374 movff RCREG1,up |
350 | 375 rcall comm_write_get_byte |
0 | 376 btfsc rs232_recieve_overflow ; Got byte? |
377 bra comm_download_mode0 ; No, Done. | |
378 movff RCREG1,hi | |
350 | 379 rcall comm_write_get_byte |
0 | 380 btfsc rs232_recieve_overflow ; Got byte? |
381 bra comm_download_mode0 ; No, Done. | |
382 movff RCREG1,lo | |
383 | |
384 ; If lo==0, we must precondition hi because there is to many bytes send ! | |
385 movf lo,W | |
386 bnz $+4 | |
387 decf hi,F | |
388 | |
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
389 movlw 0x40 |
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
390 cpfslt up ; Abort when up > 0x3F |
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
391 bra comm_download_mode0 ; Abort |
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
392 |
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
393 ; 6bytes received, send data |
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
394 ; 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
|
395 |
0 | 396 call ext_flash_read_block_start |
397 movwf TXREG1 | |
398 | |
399 bra comm_send_range24 ; counter 24bit | |
400 comm_send_range24_loop: | |
401 call ext_flash_read_block ; Read one byte | |
402 movwf TXREG1 ; Start new transmit | |
403 comm_send_range24: | |
354 | 404 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 405 decfsz lo,F |
406 bra comm_send_range24_loop | |
407 decf hi,F | |
408 movlw 0xFF | |
409 cpfseq hi | |
410 bra comm_send_range24_loop | |
411 decf up,F | |
412 movlw 0xFF | |
413 cpfseq up | |
414 bra comm_send_range24_loop | |
415 call ext_flash_read_block_stop | |
416 | |
417 bra comm_download_mode0 ; Done. | |
418 | |
419 ;----------------------------------------------------------------------------- | |
420 | |
421 comm_get_flash_address: | |
350 | 422 rcall comm_write_get_byte |
0 | 423 btfsc rs232_recieve_overflow ; Got byte? |
424 return ; No, return | |
425 movff RCREG1,ext_flash_address+2 | |
350 | 426 rcall comm_write_get_byte |
0 | 427 btfsc rs232_recieve_overflow ; Got byte? |
428 return ; No, return | |
429 movff RCREG1,ext_flash_address+1 | |
350 | 430 rcall comm_write_get_byte |
0 | 431 btfsc rs232_recieve_overflow ; Got byte? |
432 return ; No, return | |
433 movff RCREG1,ext_flash_address+0 | |
434 return | |
435 | |
436 ;----------------------------------------------------------------------------- | |
437 | |
438 comm_download_mode: | |
439 ; Enable comm download mode | |
440 WIN_SMALL comm_status2_column, comm_status2_row | |
441 STRCPY_TEXT_PRINT tUsbDownloadMode; Download mode enabled | |
442 bsf INTCON,GIE ; All interrups on | |
354 | 443 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 444 movlw 0xBB ; Command Echo |
445 movwf TXREG1 ; Send Answer | |
446 comm_download_mode0: | |
447 bsf INTCON,GIE ; All interrups on | |
354 | 448 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 449 movlw 0x4C ; 4C in service mode |
450 btfss comm_service_enabled | |
451 movlw 0x4D ; 4D in download mode | |
452 movwf TXREG1 ; Send Answer | |
453 movlw timeout_service_mode | |
454 movwf timeout_counter ; Timeout | |
455 bcf switch_right | |
456 comm_download_mode1: | |
457 bcf onesecupdate | |
458 dcfsnz timeout_counter,F | |
459 bra comm_service_exit ; Timeout -> Exit | |
460 comm_download_mode2: | |
350 | 461 rcall comm_write_get_byte ; Check for a byte |
0 | 462 btfsc comm_service_enabled |
463 btg LEDr ; Blink in Service mode | |
464 btfss vusb_in ; USB plugged in? | |
465 bra comm_service_exit_nousb ; Disconnected -> Exit | |
466 btfsc switch_right ; Abort with right | |
467 bra comm_service_exit | |
468 btfsc onesecupdate | |
469 bra comm_download_mode1 | |
470 btfsc rs232_recieve_overflow | |
471 bra comm_download_mode2 ; Wait for command byte | |
472 | |
473 ; command received! | |
474 bcf LEDr | |
475 movlw 0xFF | |
476 cpfseq RCREG1 | |
477 bra $+4 | |
478 bra comm_service_exit ; exit | |
479 movlw "a" | |
480 cpfseq RCREG1 | |
481 bra $+4 | |
482 bra comm_send_headers ; Send all 256 dive headers | |
483 movlw "b" | |
484 cpfseq RCREG1 | |
485 bra $+4 | |
486 bra comm_set_time ; Read time and date from the PC and set clock | |
487 movlw "c" | |
488 cpfseq RCREG1 | |
489 bra $+4 | |
490 bra comm_set_custom_text ; Send a opt_name_length byte string of custom text. | |
378 | 491 movlw "f" ; 0x66 |
0 | 492 cpfseq RCREG1 |
493 bra $+4 | |
494 bra comm_send_dive ; Send header and profile for one dive | |
495 movlw "i" | |
496 cpfseq RCREG1 | |
497 bra $+4 | |
498 bra comm_identify ; Send firmware, serial, etc. | |
235
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
499 movlw "j" |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
500 cpfseq RCREG1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
501 bra $+4 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
502 bra comm_hardware_descriptor ; Send hardware descriptor byte |
0 | 503 movlw "n" |
504 cpfseq RCREG1 | |
505 bra $+4 | |
80 | 506 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
|
507 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
|
508 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
|
509 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
|
510 goto comm_send_compact_headers ; Send all 256 compact headers |
0 | 511 movlw "l" |
512 cpfseq RCREG1 | |
513 bra $+4 | |
514 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
|
515 movlw "r" |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
516 cpfseq RCREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
517 bra $+4 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
518 bra comm_read_setting ; Read a setting (And send via USB) |
80 | 519 movlw "w" |
520 cpfseq RCREG1 | |
521 bra $+4 | |
522 bra comm_write_setting ; Write a setting (Into RAM) | |
523 movlw "x" | |
524 cpfseq RCREG1 | |
525 bra $+4 | |
526 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
|
527 |
0 | 528 |
529 btfss comm_service_enabled ; Done for Download mode | |
530 bra comm_download_mode0 ; Loop with timeout reset | |
531 | |
532 movlw 0x20 | |
533 cpfseq RCREG1 | |
534 bra $+4 | |
535 bra comm_send_range ; send hi:lo:temp1 bytes starting from ext_flash_address:3 | |
536 movlw 0x22 | |
537 cpfseq RCREG1 | |
538 bra $+4 | |
539 bra comm_reset_logbook_pointers ; Resets all logbook pointers and the logbook (!) | |
540 movlw 0x23 | |
541 cpfseq RCREG1 | |
542 bra $+4 | |
543 bra comm_reset_battery_gauge ; Resets battery gauge registers | |
544 movlw 0x30 | |
545 cpfseq RCREG1 | |
546 bra $+4 | |
547 bra comm_write_range ; write bytes starting from ext_flash_address:3 (Stop when timeout) | |
548 movlw 0x40 | |
549 cpfseq RCREG1 | |
550 bra $+4 | |
551 bra comm_erase_4kb ; erases 4kB block from ext_flash_address:3 (Warning: No confirmation or built-in security here...) | |
552 movlw 0x42 | |
553 cpfseq RCREG1 | |
554 bra $+4 | |
555 bra comm_erase_range4kb ; erases range in 4kB steps (Get 3 bytes address and 1byte amount of 4kB blocks) | |
556 movlw 0x50 | |
557 cpfseq RCREG1 | |
558 bra $+4 | |
273
12ee30cbced9
CHANGE: Automatically abort connection fail after 2mins (Bluetooth only)
heinrichsweikamp
parents:
269
diff
changeset
|
559 bra comm_send_firmware ; send firmware to bootloader |
147 | 560 ; movlw "t" |
561 ; cpfseq RCREG1 | |
562 ; bra $+4 | |
563 ; goto testloop ; Start raw-data testloop | |
0 | 564 movlw 0xC1 |
565 cpfseq RCREG1 | |
566 bra $+4 | |
567 bra comm_service_ll_bootloader ; Start low-level bootloader | |
568 bra comm_download_mode0 ; Loop with timeout reset | |
569 | |
570 ;----------------------------------------------------------------------------- | |
571 | |
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
|
572 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
|
573 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
|
574 movwf TXREG1 |
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
575 ; Send 13 bytes/dive (Compact Header) |
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
576 ; 1st: 200009h-200016h |
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
577 ; 2nd: 201009h-201016h |
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
578 ; 3rd: 202009h-202016h |
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
579 ; 100: 264009h-264016h |
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
580 ; 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
|
581 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
|
582 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
|
583 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
|
584 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
|
585 |
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 comm_send_compact_headers2: |
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
587 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
|
588 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
|
589 ; 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
|
590 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
|
591 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
|
592 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
|
593 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
|
594 |
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 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
|
596 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
|
597 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
|
598 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
|
599 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
600 comm_send_compact_headers4: |
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
601 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
|
602 movwf lo ; Counter |
354 | 603 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
|
604 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
|
605 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
|
606 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
|
607 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
|
608 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
|
609 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
|
610 comm_send_compact_headers3: |
354 | 611 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
|
612 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
|
613 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
|
614 call ext_flash_read_block_stop |
347
7e5772df60cd
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
346
diff
changeset
|
615 |
356
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
616 ; Offset to total dive counter |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
617 movlw .80 |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
618 movwf ext_flash_address+0 |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
619 call ext_flash_read_block_start ; 1st 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 rcall comm_rs232_wait_tx ; Wait for UART |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
622 call ext_flash_read_block ; 2nd byte |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
623 movwf TXREG1 |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
624 call ext_flash_read_block_stop |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
625 rcall comm_rs232_wait_tx ; Wait for UART |
fcf3ae0fee6a
Changed content for new 0x6F command (Get compact headers)
heinrichsweikamp
parents:
354
diff
changeset
|
626 |
391 | 627 ; Offset to Logbook-Profile version |
628 movlw .8 | |
629 movwf ext_flash_address+0 | |
630 call ext_flash_byte_read ; Get byte | |
631 movwf TXREG1 | |
354 | 632 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
|
633 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
|
634 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
635 |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
636 ;----------------------------------------------------------------------------- |
cf9ce6053dee
New option to download "Compact Headers". Improved BLE support (OSTC 2 and OSTC 3+), updated OSTC interface documentation
heinrichsweikamp
parents:
337
diff
changeset
|
637 |
0 | 638 comm_send_headers: |
639 movlw "a" ; send echo | |
640 movwf TXREG1 | |
641 ; Send 256 bytes/dive (Header) | |
642 ; 1st: 200000h-2000FFh | |
643 ; 2nd: 201000h-2010FFh | |
644 ; 3rd: 202000h-2020FFh | |
645 ; 100: 264000h-2640FFh | |
646 ; 256: 2FF000h-2FF0FFh | |
647 movlw 0x1F | |
648 movwf ext_flash_address+2 | |
649 movlw 0xF0 | |
650 movwf ext_flash_address+1 | |
651 | |
652 comm_send_headers2: | |
653 movlw 0x00 | |
654 movwf ext_flash_address+0 | |
655 ; Adjust address for next dive | |
656 movlw 0x10 | |
657 addwf ext_flash_address+1 | |
658 movlw 0x00 | |
659 addwfc ext_flash_address+2 | |
660 | |
661 movlw 0x30 | |
662 cpfseq ext_flash_address+2 ; All 256 dive send? | |
663 bra comm_send_headers4 ; No, continue | |
664 bra comm_download_mode0 ; Done. Loop with timeout reset | |
665 | |
666 comm_send_headers4: | |
667 clrf lo ; Counter | |
354 | 668 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 669 call ext_flash_read_block_start ; 1st byte |
670 movwf TXREG1 | |
671 bra comm_send_headers3 ; counter 24bit | |
672 comm_send_headers_loop: | |
673 call ext_flash_read_block ; Read one byte | |
674 movwf TXREG1 ; Start new transmit | |
675 comm_send_headers3: | |
354 | 676 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 677 decfsz lo,F |
678 bra comm_send_headers_loop | |
679 call ext_flash_read_block_stop | |
680 bra comm_send_headers2 ; continue | |
681 | |
682 ;----------------------------------------------------------------------------- | |
80 | 683 |
684 comm_option_reset_all: ; Reset all options to factory default. | |
685 movlw "x" ; send echo | |
686 movwf TXREG1 | |
687 call option_reset_all | |
688 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
689 | |
690 ;----------------------------------------------------------------------------- | |
0 | 691 |
350 | 692 comm_write_get_byte: |
693 goto rs232_get_byte ; returns... | |
694 | |
354 | 695 comm_rs232_wait_tx: |
696 goto rs232_wait_tx ; returns... | |
350 | 697 |
0 | 698 comm_set_time: |
699 movlw "b" ; send echo | |
700 movwf TXREG1 | |
701 | |
354 | 702 rcall comm_rs232_wait_tx ; wait for UART |
350 | 703 rcall comm_write_get_byte |
0 | 704 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
705 bra comm_download_mode0 ; No, abort |
0 | 706 movff RCREG1, hours |
707 movlw d'24' | |
708 cpfslt hours | |
709 clrf hours | |
350 | 710 rcall comm_write_get_byte |
0 | 711 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
712 bra comm_download_mode0 ; No, abort |
0 | 713 movff RCREG1, mins |
714 movlw d'60' | |
715 cpfslt mins | |
716 clrf mins | |
350 | 717 rcall comm_write_get_byte |
0 | 718 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
719 bra comm_download_mode0 ; No, abort |
0 | 720 movff RCREG1, secs |
721 movlw d'60' | |
722 cpfslt secs | |
723 clrf secs | |
350 | 724 rcall comm_write_get_byte |
0 | 725 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
726 bra comm_download_mode0 ; No, abort |
0 | 727 movff RCREG1, month |
728 movlw d'13' | |
729 cpfslt month | |
730 movwf month | |
350 | 731 rcall comm_write_get_byte |
0 | 732 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
733 bra comm_download_mode0 ; No, abort |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
734 call comm_check_day ; Check day |
350 | 735 rcall comm_write_get_byte |
0 | 736 btfsc rs232_recieve_overflow ; Got byte? |
128
bd74161c4292
catch timeout during set time/date command
heinrichsweikamp
parents:
124
diff
changeset
|
737 bra comm_download_mode0 ; No, abort |
0 | 738 movff RCREG1, year |
739 movlw d'100' | |
740 cpfslt year | |
741 clrf year | |
742 ; All ok, set RTCC | |
743 call rtc_set_rtc ; writes mins,sec,hours,day,month and year to rtc module | |
744 bra comm_download_mode0 ; Done. back to loop with timeout reset | |
745 | |
746 ;----------------------------------------------------------------------------- | |
747 ; Set OSTC3 custom text string (opt_name_length ascii chars). | |
748 ; | |
749 | |
750 comm_set_custom_text: | |
751 movlw "c" ; send echo | |
752 movwf TXREG1 | |
354 | 753 rcall comm_rs232_wait_tx ; wait for UART |
0 | 754 lfsr FSR2,opt_name |
755 movlw opt_name_length | |
756 movwf lo ; counter | |
757 comm_set_ctext_loop: | |
350 | 758 rcall comm_write_get_byte |
0 | 759 btfsc rs232_recieve_overflow ; Got byte? |
136 | 760 bra comm_set_ctext_loop_done ; no, abort |
7 | 761 movff RCREG1,POSTINC2 ; Store character |
0 | 762 decfsz lo,F |
763 bra comm_set_ctext_loop | |
136 | 764 comm_set_ctext_loop_done: |
765 tstfsz lo ; Got opt_name_length bytes? | |
766 bra comm_set_ctext_loop_done2 ; no, clear remaining chars | |
767 bra comm_download_mode0 ; Done. Loop with timeout reset | |
768 comm_set_ctext_loop_done2: | |
769 clrf POSTINC2 | |
770 decfsz lo,F | |
771 bra comm_set_ctext_loop_done2 | |
7 | 772 bra comm_download_mode0 ; Done. Loop with timeout reset |
0 | 773 |
774 ;----------------------------------------------------------------------------- | |
775 ; Reply Serial (2 bytes low:high), firmware (major.minor) and custom text. | |
776 ; | |
777 | |
778 comm_identify: | |
779 movlw "i" ; send echo | |
780 movwf TXREG1 | |
354 | 781 rcall comm_rs232_wait_tx ; wait for UART |
0 | 782 |
783 ;---- Read serial from internal EEPROM address 0000 | |
784 clrf EEADRH | |
785 clrf EEADR ; Get Serial number LOW | |
786 call read_eeprom ; read byte | |
787 movff EEDATA,lo | |
788 incf EEADR,F ; Get Serial number HIGH | |
789 call read_eeprom ; read byte | |
790 movff EEDATA,hi | |
791 | |
792 ;---- Emit serial number | |
793 movff lo,TXREG1 | |
354 | 794 rcall comm_rs232_wait_tx |
0 | 795 movff hi,TXREG1 |
354 | 796 rcall comm_rs232_wait_tx |
0 | 797 |
798 ;---- Emit fiwmware hi.lo | |
799 movlw softwareversion_x | |
800 movwf TXREG1 | |
354 | 801 rcall comm_rs232_wait_tx |
0 | 802 movlw softwareversion_y |
803 movwf TXREG1 | |
354 | 804 rcall comm_rs232_wait_tx |
0 | 805 |
806 ;---- Emit custom text | |
807 movlw opt_name_length | |
808 movwf hi | |
809 lfsr FSR2,opt_name | |
810 | |
811 common_identify_loop: | |
812 movff POSTINC2,TXREG1 | |
354 | 813 rcall comm_rs232_wait_tx |
0 | 814 decfsz hi,F |
815 bra common_identify_loop | |
816 | |
817 bra comm_download_mode0 ; Done. | |
818 | |
235
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 ; Reply hardware descriptor byte |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
821 ; |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
822 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
823 comm_hardware_descriptor: |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
824 movlw "j" ; send echo |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
825 movwf TXREG1 |
354 | 826 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
|
827 movff hardware_flag,TXREG1 |
23311219dacc
under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents:
223
diff
changeset
|
828 bra comm_download_mode0 ; Done. |
0 | 829 |
830 ;----------------------------------------------------------------------------- | |
831 | |
832 comm_send_dive: | |
378 | 833 movlw "f"; 0x66 ; send echo |
0 | 834 movwf TXREG1 |
835 | |
350 | 836 rcall comm_write_get_byte |
0 | 837 btfsc rs232_recieve_overflow ; Got byte? |
838 bra comm_download_mode0 ; No, abort! | |
839 movff RCREG1,lo ; Store dive number (0-255) | |
840 ; First, send the header (again) | |
841 ; Set ext_flash_address:3 to TOC entry of this dive | |
842 ; 1st: 200000h-200FFFh -> lo=0 | |
843 ; 2nd: 201000h-201FFFh -> lo=1 | |
844 ; 3rd: 202000h-202FFFh -> lo=2 | |
845 ; 256: 2FF000h-2FFFFFh -> lo=255 | |
846 clrf ext_flash_address+0 | |
847 clrf ext_flash_address+1 | |
848 movlw 0x20 | |
849 movwf ext_flash_address+2 | |
850 movlw .16 | |
851 mulwf lo ; lo*16 = offset to 0x2000 (up:hi) | |
852 movf PRODL,W | |
853 addwf ext_flash_address+1,F | |
854 movf PRODH,W | |
855 addwfc ext_flash_address+2,F | |
856 | |
857 incf_ext_flash_address d'2' ; Skip 0xFA, 0xFA | |
858 call ext_flash_byte_read_plus ; Read start address of profile | |
859 movff temp1,ext_flash_log_pointer+0 | |
860 call ext_flash_byte_read_plus ; Read start address of profile | |
861 movff temp1,ext_flash_log_pointer+1 | |
862 call ext_flash_byte_read_plus ; Read start address of profile | |
863 movff temp1,ext_flash_log_pointer+2 | |
864 call ext_flash_byte_read_plus ; Read end address of profile | |
865 movff temp1,convert_value_temp+0 | |
866 call ext_flash_byte_read_plus ; Read end address of profile | |
867 movff temp1,convert_value_temp+1 | |
868 call ext_flash_byte_read_plus ; Read end address of profile | |
869 movff temp1,convert_value_temp+2 | |
870 decf_ext_flash_address d'8' ; Back again to first 0xFA in header | |
871 | |
872 movf ext_flash_log_pointer+0,W | |
873 cpfseq convert_value_temp+0 ; Equal? | |
874 bra comm_send_dive1 ; No, Send header | |
875 | |
876 movf ext_flash_log_pointer+1,W | |
877 cpfseq convert_value_temp+1 ; Equal? | |
878 bra comm_send_dive1 ; No, Send header | |
879 | |
880 movf ext_flash_log_pointer+2,W | |
881 cpfseq convert_value_temp+2 ; Equal? | |
882 bra comm_send_dive1 ; No, Send header | |
883 | |
884 ; Start=End -> Not good, abort | |
885 bra comm_download_mode0 ; Done. Loop with timeout reset | |
886 | |
887 comm_send_dive1: | |
888 ; Send header | |
889 clrf hi ; Counter | |
354 | 890 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 891 call ext_flash_read_block_start ; 1st byte |
892 movwf TXREG1 | |
893 bra comm_send_dive_header | |
894 comm_send_dive_header2: | |
895 call ext_flash_read_block ; Read one byte | |
896 movwf TXREG1 ; Start new transmit | |
897 comm_send_dive_header: | |
354 | 898 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 899 decfsz hi,F |
900 bra comm_send_dive_header2 | |
901 call ext_flash_read_block_stop | |
902 | |
903 ; Set address for profile | |
904 movff ext_flash_log_pointer+0,ext_flash_address+0 | |
905 movff ext_flash_log_pointer+1,ext_flash_address+1 | |
906 movff ext_flash_log_pointer+2,ext_flash_address+2 | |
907 | |
908 movlw .6 ; Skip 6byte short header in profile - only for internal use | |
909 call incf_ext_flash_address0_0x20 ; increases bytes in ext_flash_address:3 with 0x200000 bank switching | |
910 | |
911 comm_send_dive_profile: | |
912 call ext_flash_byte_read_plus_0x20 ; Read one byte into temp1, takes care of banking at 0x200000 | |
354 | 913 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 914 movff temp1,TXREG1 ; Send a byte |
915 | |
916 ; 24bit compare with end address | |
917 movff convert_value_temp+0,WREG | |
918 cpfseq ext_flash_address+0 | |
919 bra comm_send_dive_profile | |
920 movff convert_value_temp+1,WREG | |
921 cpfseq ext_flash_address+1 | |
922 bra comm_send_dive_profile | |
923 movff convert_value_temp+2,WREG | |
924 cpfseq ext_flash_address+2 | |
925 bra comm_send_dive_profile | |
926 | |
238 | 927 rcall comm_read_setting_wait ; Wait for UART |
0 | 928 bra comm_download_mode0 ; Done. Loop with timeout reset |
929 | |
930 ;----------------------------------------------------------------------------- | |
931 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
932 comm_read_setting: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
933 movlw "r" |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
934 movwf TXREG1 |
350 | 935 rcall comm_write_get_byte |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
936 btfsc rs232_recieve_overflow ; Got byte? |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
937 bra comm_read_abort ; No, abort! |
238 | 938 rcall comm_read_setting_wait ; Wait for UART |
939 movlw 0x0F | |
940 cpfsgt RCREG1 ; 0x00-0x0F: unused | |
941 bra comm_read_abort ; abort! | |
942 subwf RCREG1,W ; Subtract unused commands | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
943 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
944 bra comm_read_gas1 ; RCREG1=0x10 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
945 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
946 bra comm_read_gas2 ; RCREG1=0x11 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
947 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
948 bra comm_read_gas3 ; RCREG1=0x12 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
949 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
950 bra comm_read_gas4 ; RCREG1=0x13 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
951 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
952 bra comm_read_gas5 ; RCREG1=0x14 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
953 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
954 bra comm_read_dil1 ; RCREG1=0x15 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
955 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
956 bra comm_read_dil2 ; RCREG1=0x16 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
957 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
958 bra comm_read_dil3 ; RCREG1=0x17 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
959 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
960 bra comm_read_dil4 ; RCREG1=0x18 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
961 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
962 bra comm_read_dil5 ; RCREG1=0x19 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
963 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
964 bra comm_read_sp1 ; RCREG1=0x1A |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
965 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
966 bra comm_read_sp2 ; RCREG1=0x1B |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
967 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
968 bra comm_read_sp3 ; RCREG1=0x1C |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
969 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
970 bra comm_read_sp4 ; RCREG1=0x1D |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
971 dcfsnz WREG |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
972 bra comm_read_sp5 ; RCREG1=0x1E |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
973 dcfsnz WREG |
159 | 974 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
|
975 dcfsnz WREG |
159 | 976 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
|
977 dcfsnz WREG |
159 | 978 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
|
979 dcfsnz WREG |
159 | 980 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
|
981 dcfsnz WREG |
159 | 982 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
|
983 dcfsnz WREG |
159 | 984 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
|
985 dcfsnz WREG |
159 | 986 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
|
987 dcfsnz WREG |
159 | 988 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
|
989 dcfsnz WREG |
159 | 990 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
|
991 dcfsnz WREG |
159 | 992 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
|
993 dcfsnz WREG |
159 | 994 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
|
995 dcfsnz WREG |
159 | 996 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
|
997 dcfsnz WREG |
159 | 998 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
|
999 dcfsnz WREG |
159 | 1000 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
|
1001 dcfsnz WREG |
159 | 1002 movff opt_brightness, TXREG1 ; RCREG1=0x2D |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1003 dcfsnz WREG |
159 | 1004 movff opt_units, TXREG1 ; RCREG1=0x2E |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1005 dcfsnz WREG |
159 | 1006 movff opt_sampling_rate, TXREG1 ; RCREG1=0x2F |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1007 dcfsnz WREG |
159 | 1008 movff opt_salinity, TXREG1 ; RCREG1=0x30 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1009 dcfsnz WREG |
159 | 1010 movff opt_dive_color_scheme, TXREG1 ; RCREG1=0x31 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1011 dcfsnz WREG |
159 | 1012 movff opt_language, TXREG1 ; RCREG1=0x32 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1013 dcfsnz WREG |
159 | 1014 movff opt_dateformat, TXREG1 ; RCREG1=0x33 |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1015 dcfsnz WREG |
159 | 1016 movff opt_compass_gain, TXREG1 ; RCREG1=0x34 |
110 | 1017 dcfsnz WREG |
159 | 1018 movff opt_pressure_adjust, TXREG1 ; RCREG1=0x35 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1019 dcfsnz WREG |
159 | 1020 movff opt_enable_safetystop, TXREG1 ; RCREG1=0x36 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1021 dcfsnz WREG |
159 | 1022 movff opt_calibration_O2_ratio, TXREG1; RCREG1=0x37 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1023 dcfsnz WREG |
159 | 1024 movff opt_sensor_fallback, TXREG1 ; RCREG1=0x38 |
1025 dcfsnz WREG | |
1026 movff opt_flip_screen, TXREG1 ; RCREG1=0x39 | |
223 | 1027 dcfsnz WREG |
1028 movff opt_cR_button_left, TXREG1 ; RCREG1=0x3A | |
1029 dcfsnz WREG | |
1030 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
|
1031 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1032 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
|
1033 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1034 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
|
1035 dcfsnz WREG |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1036 movff opt_modwarning, TXREG1 ; RCREG1=0x3E |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1037 dcfsnz WREG |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1038 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
|
1039 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
|
1040 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
|
1041 dcfsnz WREG |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1042 movff opt_showppo2, TXREG1 ; RCREG1=0x41 |
368
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1043 dcfsnz WREG |
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1044 movff opt_temperature_adjust, TXREG1 ; RCREG1=0x42 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1045 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1046 movff opt_safety_stop_length, TXREG1 ; RCREG1=0x43 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1047 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1048 movff opt_safety_stop_start, TXREG1 ; RCREG1=0x44 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1049 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1050 movff opt_safety_stop_end, TXREG1 ; RCREG1=0x45 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1051 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1052 movff opt_safety_stop_reset, TXREG1 ; RCREG1=0x46 |
424 | 1053 dcfsnz WREG |
1054 clrf TXREG1 ; RCREG1=0x47, ignore conservatism for standard hwOS | |
1055 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1056 comm_read_abort: |
255 | 1057 comm_read_done: |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1058 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
|
1059 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1060 comm_read_setting_wait: |
354 | 1061 bra comm_rs232_wait_tx ; Wait for UART (and return!) |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1062 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1063 comm_read_gas1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1064 movff opt_gas_O2_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1065 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
|
1066 movff opt_gas_He_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1067 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
|
1068 movff opt_gas_type+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1069 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1070 movff opt_OC_bail_gas_change+0,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1071 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1072 comm_read_gas2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1073 movff opt_gas_O2_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1074 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1075 movff opt_gas_He_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1076 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
|
1077 movff opt_gas_type+1, 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 |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1079 movff opt_OC_bail_gas_change+1,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1080 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
|
1081 comm_read_gas3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1082 movff opt_gas_O2_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1083 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1084 movff opt_gas_He_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1085 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1086 movff opt_gas_type+2, 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 |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1088 movff opt_OC_bail_gas_change+2,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1089 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1090 comm_read_gas4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1091 movff opt_gas_O2_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1092 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1093 movff opt_gas_He_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1094 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1095 movff opt_gas_type+3, 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 |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1097 movff opt_OC_bail_gas_change+3,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1098 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1099 comm_read_gas5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1100 movff opt_gas_O2_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1101 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1102 movff opt_gas_He_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1103 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1104 movff opt_gas_type+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1105 rcall comm_read_setting_wait ; Wait for UART |
97
53a99a2dc6a1
CHANGE: Always compute bailout plan based on all active gases
heinrichsweikamp
parents:
92
diff
changeset
|
1106 movff opt_OC_bail_gas_change+4,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1107 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1108 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1109 comm_read_dil1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1110 movff opt_dil_O2_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1111 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1112 movff opt_dil_He_ratio+0, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1113 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
|
1114 movff opt_dil_type+0, 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 char_I_dil_change+0,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1117 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
|
1118 comm_read_dil2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1119 movff opt_dil_O2_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1120 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1121 movff opt_dil_He_ratio+1, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1122 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
|
1123 movff opt_dil_type+1, 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 char_I_dil_change+1,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1126 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
|
1127 comm_read_dil3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1128 movff opt_dil_O2_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1129 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1130 movff opt_dil_He_ratio+2, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1131 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
|
1132 movff opt_dil_type+2, 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 char_I_dil_change+2,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1135 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
|
1136 comm_read_dil4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1137 movff opt_dil_O2_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1138 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
|
1139 movff opt_dil_He_ratio+3, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1140 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
|
1141 movff opt_dil_type+3, 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 char_I_dil_change+3,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1144 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
|
1145 comm_read_dil5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1146 movff opt_dil_O2_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1147 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
|
1148 movff opt_dil_He_ratio+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1149 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1150 movff opt_dil_type+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1151 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
|
1152 movff char_I_dil_change+4,TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1153 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
|
1154 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1155 comm_read_sp1: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1156 movff char_I_setpoint_cbar+0, 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+0, 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_sp2: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1161 movff char_I_setpoint_cbar+1, 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+1, 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_sp3: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1166 movff char_I_setpoint_cbar+2, 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+2, 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_sp4: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1171 movff char_I_setpoint_cbar+3, 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+3, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1174 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1175 comm_read_sp5: |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1176 movff char_I_setpoint_cbar+4, TXREG1 |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1177 rcall comm_read_setting_wait ; Wait for UART |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1178 movff char_I_setpoint_change+4, TXREG1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1179 bra comm_read_done ; Done. Wait for UART and loop with timeout reset |
110 | 1180 |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1181 |
80 | 1182 ;----------------------------------------------------------------------------- |
238 | 1183 comm_write_gas1: |
1184 movff RCREG1,opt_gas_O2_ratio+0 | |
1185 rcall comm_write_get_byte | |
1186 movff RCREG1,opt_gas_He_ratio+0 | |
1187 rcall comm_write_get_byte | |
1188 movff RCREG1,opt_gas_type+0 | |
1189 rcall comm_write_get_byte | |
1190 movff RCREG1,opt_OC_bail_gas_change+0 | |
1191 bra comm_write_abort ; Done. Loop with timeout reset | |
1192 comm_write_gas2: | |
1193 movff RCREG1,opt_gas_O2_ratio+1 | |
1194 rcall comm_write_get_byte | |
1195 movff RCREG1,opt_gas_He_ratio+1 | |
1196 rcall comm_write_get_byte | |
1197 movff RCREG1,opt_gas_type+1 | |
1198 rcall comm_write_get_byte | |
1199 movff RCREG1,opt_OC_bail_gas_change+1 | |
1200 bra comm_write_abort ; Done. Loop with timeout reset | |
1201 comm_write_gas3: | |
1202 movff RCREG1,opt_gas_O2_ratio+2 | |
1203 rcall comm_write_get_byte | |
1204 movff RCREG1,opt_gas_He_ratio+2 | |
1205 rcall comm_write_get_byte | |
1206 movff RCREG1,opt_gas_type+2 | |
1207 rcall comm_write_get_byte | |
1208 movff RCREG1,opt_OC_bail_gas_change+2 | |
1209 bra comm_write_abort ; Done. Loop with timeout reset | |
1210 comm_write_gas4: | |
1211 movff RCREG1,opt_gas_O2_ratio+3 | |
1212 rcall comm_write_get_byte | |
1213 movff RCREG1,opt_gas_He_ratio+3 | |
1214 rcall comm_write_get_byte | |
1215 movff RCREG1,opt_gas_type+3 | |
1216 rcall comm_write_get_byte | |
1217 movff RCREG1,opt_OC_bail_gas_change+3 | |
1218 bra comm_write_abort ; Done. Loop with timeout reset | |
1219 comm_write_gas5: | |
1220 movff RCREG1,opt_gas_O2_ratio+4 | |
1221 rcall comm_write_get_byte | |
1222 movff RCREG1,opt_gas_He_ratio+4 | |
1223 rcall comm_write_get_byte | |
1224 movff RCREG1,opt_gas_type+4 | |
1225 rcall comm_write_get_byte | |
1226 movff RCREG1,opt_OC_bail_gas_change+4 | |
1227 bra comm_write_abort ; Done. Loop with timeout reset | |
80 | 1228 |
1229 | |
1230 comm_write_setting: | |
1231 movlw "w" | |
1232 movwf TXREG1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1233 rcall comm_write_get_byte ; "Byte 2" |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1234 btfsc rs232_recieve_overflow ; Got byte? |
80 | 1235 bra comm_write_abort ; No, abort! |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1236 movff RCREG1,temp1 ; Copy |
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1237 rcall comm_write_get_byte ; "Byte 3" |
238 | 1238 rcall comm_read_setting_wait ; Wait for UART |
1239 movlw 0x0F | |
1240 cpfsgt temp1 ; 0x00-0x0F: unused | |
1241 bra comm_write_abort ; abort! | |
1242 subwf temp1,W ; Subtract unused commands | |
80 | 1243 dcfsnz WREG |
1244 bra comm_write_gas1 ; RCREG1=0x10 | |
1245 dcfsnz WREG | |
1246 bra comm_write_gas2 ; RCREG1=0x11 | |
1247 dcfsnz WREG | |
1248 bra comm_write_gas3 ; RCREG1=0x12 | |
1249 dcfsnz WREG | |
1250 bra comm_write_gas4 ; RCREG1=0x13 | |
1251 dcfsnz WREG | |
1252 bra comm_write_gas5 ; RCREG1=0x14 | |
1253 dcfsnz WREG | |
1254 bra comm_write_dil1 ; RCREG1=0x15 | |
1255 dcfsnz WREG | |
1256 bra comm_write_dil2 ; RCREG1=0x16 | |
1257 dcfsnz WREG | |
1258 bra comm_write_dil3 ; RCREG1=0x17 | |
1259 dcfsnz WREG | |
1260 bra comm_write_dil4 ; RCREG1=0x18 | |
1261 dcfsnz WREG | |
1262 bra comm_write_dil5 ; RCREG1=0x19 | |
1263 dcfsnz WREG | |
1264 bra comm_write_sp1 ; RCREG1=0x1A | |
1265 dcfsnz WREG | |
1266 bra comm_write_sp2 ; RCREG1=0x1B | |
1267 dcfsnz WREG | |
1268 bra comm_write_sp3 ; RCREG1=0x1C | |
1269 dcfsnz WREG | |
1270 bra comm_write_sp4 ; RCREG1=0x1D | |
1271 dcfsnz WREG | |
1272 bra comm_write_sp5 ; RCREG1=0x1E | |
1273 dcfsnz WREG | |
159 | 1274 movff RCREG1, opt_ccr_mode ; RCREG1=0x1F |
80 | 1275 dcfsnz WREG |
159 | 1276 movff RCREG1, opt_dive_mode ; RCREG1=0x20 |
80 | 1277 dcfsnz WREG |
159 | 1278 movff RCREG1, char_I_deco_model ; RCREG1=0x21 |
80 | 1279 dcfsnz WREG |
159 | 1280 movff RCREG1, opt_ppO2_max ; RCREG1=0x22 |
80 | 1281 dcfsnz WREG |
159 | 1282 movff RCREG1, opt_ppO2_min ; RCREG1=0x23 |
80 | 1283 dcfsnz WREG |
159 | 1284 movff RCREG1, char_I_extra_time ; RCREG1=0x24 |
80 | 1285 dcfsnz WREG |
159 | 1286 movff RCREG1, opt_GF_low ; RCREG1=0x25 |
80 | 1287 dcfsnz WREG |
159 | 1288 movff RCREG1, opt_GF_high ; RCREG1=0x26 |
80 | 1289 dcfsnz WREG |
159 | 1290 movff RCREG1, opt_aGF_low ; RCREG1=0x27 |
80 | 1291 dcfsnz WREG |
159 | 1292 movff RCREG1, opt_aGF_high ; RCREG1=0x28 |
80 | 1293 dcfsnz WREG |
159 | 1294 movff RCREG1, opt_enable_aGF ; RCREG1=0x29 |
80 | 1295 dcfsnz WREG |
159 | 1296 movff RCREG1, char_I_saturation_multiplier; RCREG1=0x2A |
80 | 1297 dcfsnz WREG |
159 | 1298 movff RCREG1, char_I_desaturation_multiplier; RCREG1=0x2B |
80 | 1299 dcfsnz WREG |
159 | 1300 movff RCREG1, opt_last_stop ; RCREG1=0x2C |
80 | 1301 dcfsnz WREG |
159 | 1302 movff RCREG1, opt_brightness ; RCREG1=0x2D |
80 | 1303 dcfsnz WREG |
159 | 1304 movff RCREG1, opt_units ; RCREG1=0x2E |
80 | 1305 dcfsnz WREG |
159 | 1306 movff RCREG1, opt_sampling_rate ; RCREG1=0x2F |
80 | 1307 dcfsnz WREG |
159 | 1308 movff RCREG1, opt_salinity ; RCREG1=0x30 |
80 | 1309 dcfsnz WREG |
159 | 1310 movff RCREG1, opt_dive_color_scheme ; RCREG1=0x31 |
80 | 1311 dcfsnz WREG |
159 | 1312 movff RCREG1, opt_language ; RCREG1=0x32 |
80 | 1313 dcfsnz WREG |
159 | 1314 movff RCREG1, opt_dateformat ; RCREG1=0x33 |
92
7ca1105751c7
add sensor calibration option (PC only), some cleanup
heinrichsweikamp
parents:
81
diff
changeset
|
1315 dcfsnz WREG |
159 | 1316 movff RCREG1, opt_compass_gain ; RCREG1=0x34 |
110 | 1317 dcfsnz WREG |
159 | 1318 movff RCREG1, opt_pressure_adjust ; RCREG1=0x35 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1319 dcfsnz WREG |
159 | 1320 movff RCREG1, opt_enable_safetystop ; RCREG1=0x36 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1321 dcfsnz WREG |
159 | 1322 movff RCREG1, opt_calibration_O2_ratio; RCREG1=0x37 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1323 dcfsnz WREG |
159 | 1324 movff RCREG1, opt_sensor_fallback ; RCREG1=0x38 |
1325 dcfsnz WREG | |
1326 movff RCREG1, opt_flip_screen ; RCREG1=0x39 | |
223 | 1327 dcfsnz WREG |
1328 movff RCREG1, opt_cR_button_left ; RCREG1=0x3A | |
1329 dcfsnz WREG | |
1330 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
|
1331 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1332 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
|
1333 dcfsnz WREG |
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1334 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
|
1335 dcfsnz WREG |
307
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1336 movff RCREG1, opt_modwarning ; RCREG1=0x3E |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1337 dcfsnz WREG |
14719662fb95
Merged Screen layout work #4 into VSItextv2
Janos Kovacs <kovjanos@gmail.com>
parents:
303
diff
changeset
|
1338 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
|
1339 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
|
1340 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
|
1341 dcfsnz WREG |
337
508d7fb98b34
cleanup menu, add "Auto SP" option (Not working yet), minor layout change in compass menu
heinrichsweikamp
parents:
335
diff
changeset
|
1342 movff RCREG1, opt_showppo2 ; RCREG1=0x41 |
368
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1343 dcfsnz WREG |
57e349960ef4
Additional temperature calibration via PC interface
heinrichsweikamp
parents:
356
diff
changeset
|
1344 movff RCREG1, opt_temperature_adjust ; RCREG1=0x42 |
399
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1345 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1346 movff RCREG1, opt_safety_stop_length ; RCREG1=0x43 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1347 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1348 movff RCREG1, opt_safety_stop_start ; RCREG1=0x44 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1349 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1350 movff RCREG1, opt_safety_stop_end ; RCREG1=0x45 |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1351 dcfsnz WREG |
db25f2028074
CHANGE: New segmented speed graph in divemode
heinrichsweikamp
parents:
396
diff
changeset
|
1352 movff RCREG1, opt_safety_stop_reset ; RCREG1=0x46 |
424 | 1353 dcfsnz WREG |
1354 nop ; RCREG1=0x47, ignore conservatism for standard hwOS | |
299
6c4800af27ac
Make char_I_bottom_usage and char_I_deco_usage configurable from PC
heinrichsweikamp
parents:
275
diff
changeset
|
1355 |
80 | 1356 |
1357 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
|
1358 ; 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
|
1359 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
|
1360 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
|
1361 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
|
1362 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
|
1363 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
|
1364 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
|
1365 call get_first_dil_to_WREG ; Makes sure at least one Diluent is "First" |
80 | 1366 bra comm_download_mode0 ; Done. Loop with timeout reset |
1367 | |
1368 comm_write_dil1: | |
1369 movff RCREG1,opt_dil_O2_ratio+0 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1370 rcall comm_write_get_byte |
80 | 1371 movff RCREG1,opt_dil_He_ratio+0 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1372 rcall comm_write_get_byte |
80 | 1373 movff RCREG1,opt_dil_type+0 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1374 rcall comm_write_get_byte |
80 | 1375 movff RCREG1,char_I_dil_change+0 |
1376 bra comm_write_abort ; Done. Loop with timeout reset | |
1377 comm_write_dil2: | |
1378 movff RCREG1,opt_dil_O2_ratio+1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1379 rcall comm_write_get_byte |
80 | 1380 movff RCREG1,opt_dil_He_ratio+1 |
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_type+1 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1383 rcall comm_write_get_byte |
80 | 1384 movff RCREG1,char_I_dil_change+1 |
1385 bra comm_write_abort ; Done. Loop with timeout reset | |
1386 comm_write_dil3: | |
1387 movff RCREG1,opt_dil_O2_ratio+2 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1388 rcall comm_write_get_byte |
80 | 1389 movff RCREG1,opt_dil_He_ratio+2 |
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_type+2 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1392 rcall comm_write_get_byte |
80 | 1393 movff RCREG1,char_I_dil_change+2 |
1394 bra comm_write_abort ; Done. Loop with timeout reset | |
1395 comm_write_dil4: | |
1396 movff RCREG1,opt_dil_O2_ratio+3 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1397 rcall comm_write_get_byte |
80 | 1398 movff RCREG1,opt_dil_He_ratio+3 |
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_type+3 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1401 rcall comm_write_get_byte |
80 | 1402 movff RCREG1,char_I_dil_change+3 |
1403 bra comm_write_abort ; Done. Loop with timeout reset | |
1404 comm_write_dil5: | |
1405 movff RCREG1,opt_dil_O2_ratio+4 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1406 rcall comm_write_get_byte |
80 | 1407 movff RCREG1,opt_dil_He_ratio+4 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1408 rcall comm_write_get_byte |
80 | 1409 movff RCREG1,opt_dil_type+4 |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1410 rcall comm_write_get_byte |
80 | 1411 movff RCREG1,char_I_dil_change+4 |
1412 bra comm_write_abort ; Done. Loop with timeout reset | |
1413 | |
1414 comm_write_sp1: | |
1415 movff RCREG1,char_I_setpoint_cbar+0 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1416 rcall comm_write_get_byte |
80 | 1417 movff RCREG1,char_I_setpoint_change+0 |
1418 bra comm_write_abort ; Done. Loop with timeout reset | |
1419 comm_write_sp2: | |
1420 movff RCREG1,char_I_setpoint_cbar+1 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1421 rcall comm_write_get_byte |
80 | 1422 movff RCREG1,char_I_setpoint_change+1 |
1423 bra comm_write_abort ; Done. Loop with timeout reset | |
1424 comm_write_sp3: | |
1425 movff RCREG1,char_I_setpoint_cbar+2 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1426 rcall comm_write_get_byte |
80 | 1427 movff RCREG1,char_I_setpoint_change+2 |
1428 bra comm_write_abort ; Done. Loop with timeout reset | |
1429 comm_write_sp4: | |
1430 movff RCREG1,char_I_setpoint_cbar+3 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1431 rcall comm_write_get_byte |
80 | 1432 movff RCREG1,char_I_setpoint_change+3 |
1433 bra comm_write_abort ; Done. Loop with timeout reset | |
1434 comm_write_sp5: | |
1435 movff RCREG1,char_I_setpoint_cbar+4 | |
157
5ee76921e359
make new parameters configurable through pc
heinrichsweikamp
parents:
150
diff
changeset
|
1436 rcall comm_write_get_byte |
80 | 1437 movff RCREG1,char_I_setpoint_change+4 |
1438 bra comm_write_abort ; Done. Loop with timeout reset | |
1439 | |
79
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1440 ;----------------------------------------------------------------------------- |
0fc8113ddf6d
new command in download mode: "r" - read setting
mh@mh-THINK.localdomain
parents:
69
diff
changeset
|
1441 |
0 | 1442 comm_send_string: |
1443 movlw "n" ; send echo | |
1444 movwf TXREG1 | |
354 | 1445 rcall comm_rs232_wait_tx ; Wait for UART |
0 | 1446 WIN_SMALL comm_string_column, comm_string_row |
1447 movlw .16 | |
1448 movwf lo ; counter | |
1449 comm_send_string_loop: | |
350 | 1450 rcall comm_write_get_byte |
0 | 1451 btfsc rs232_recieve_overflow ; Got byte? |
1452 bra comm_send_string_abort ; No, abort! | |
1453 movff RCREG1,POSTINC2 ; Store character | |
1454 decfsz lo,F | |
1455 bra comm_send_string_loop | |
1456 comm_send_string_abort: | |
1457 STRCAT_PRINT "" ; Show the text | |
80 | 1458 goto comm_download_mode0 ; Done. Loop with timeout reset |
0 | 1459 |
1460 ;----------------------------------------------------------------------------- | |
1461 | |
1462 comm_check_day: | |
1463 movff RCREG1, day | |
1464 movff month,lo ; new month | |
1465 dcfsnz lo,F | |
1466 movlw .31 | |
1467 dcfsnz lo,F | |
1468 movlw .28 | |
1469 dcfsnz lo,F | |
1470 movlw .31 | |
1471 dcfsnz lo,F | |
1472 movlw .30 | |
1473 dcfsnz lo,F | |
1474 movlw .31 | |
1475 dcfsnz lo,F | |
1476 movlw .30 | |
1477 dcfsnz lo,F | |
1478 movlw .31 | |
1479 dcfsnz lo,F | |
1480 movlw .31 | |
1481 dcfsnz lo,F | |
1482 movlw .30 | |
1483 dcfsnz lo,F | |
1484 movlw .31 | |
1485 dcfsnz lo,F | |
1486 movlw .30 | |
1487 dcfsnz lo,F | |
1488 movlw .31 | |
1489 cpfsgt day ; day ok? | |
1490 return ; OK | |
1491 movlw .1 ; not OK, set to 1st | |
1492 movwf day | |
1493 return | |
1494 | |
1495 ;---------------------------------------------------------------------------- | |
1496 END |