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