annotate src/comm.asm @ 560:b7eb98dbd800

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