annotate src/comm.asm @ 99:87cc1adfe4da

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