annotate src/comm.asm @ 251:3fec179a6220

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