annotate src/adc_lightsensor.asm @ 406:dfa6ff517637

Minor language updates
author heinrichsweikamp
date Tue, 02 Feb 2016 10:36:54 +0100
parents 36bd27f42362
children 4389fe9673b2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
heinrichsweikamp
parents:
diff changeset
3 ; File adc.asm
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ;
heinrichsweikamp
parents:
diff changeset
6 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
7 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
8 ; HISTORY
heinrichsweikamp
parents:
diff changeset
9 ; 2011-08-08 : [mH] moving from OSTC code
heinrichsweikamp
parents:
diff changeset
10
275
653a3ab08062 rename into hwOS
heinrichsweikamp
parents: 270
diff changeset
11 #include "hwos.inc"
0
heinrichsweikamp
parents:
diff changeset
12 #include "math.inc"
heinrichsweikamp
parents:
diff changeset
13 #include "wait.inc"
heinrichsweikamp
parents:
diff changeset
14 #include "eeprom_rs232.inc"
113
heinrichsweikamp
parents: 44
diff changeset
15 #include "i2c.inc"
0
heinrichsweikamp
parents:
diff changeset
16
heinrichsweikamp
parents:
diff changeset
17 sensors CODE
heinrichsweikamp
parents:
diff changeset
18
heinrichsweikamp
parents:
diff changeset
19 wait_adc:
heinrichsweikamp
parents:
diff changeset
20 movwf ADCON0
heinrichsweikamp
parents:
diff changeset
21 nop
heinrichsweikamp
parents:
diff changeset
22 bsf ADCON0,1 ; start ADC
heinrichsweikamp
parents:
diff changeset
23 wait_adc2:
heinrichsweikamp
parents:
diff changeset
24 btfsc ADCON0,1 ; Wait...
heinrichsweikamp
parents:
diff changeset
25 bra wait_adc2
heinrichsweikamp
parents:
diff changeset
26 return
heinrichsweikamp
parents:
diff changeset
27
heinrichsweikamp
parents:
diff changeset
28 global get_battery_voltage
heinrichsweikamp
parents:
diff changeset
29 get_battery_voltage: ; starts ADC and waits until fnished
235
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 220
diff changeset
30 btfss rechargeable
113
heinrichsweikamp
parents: 44
diff changeset
31 bra get_battery_voltage1 ; Normal ostc3 hardware
heinrichsweikamp
parents: 44
diff changeset
32
heinrichsweikamp
parents: 44
diff changeset
33 call lt2942_get_accumulated_charge
heinrichsweikamp
parents: 44
diff changeset
34 call lt2942_get_voltage
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
35
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
36 btfsc divemode
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
37 return ; Not in divemode
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
38
207
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
39 bcf cv_active
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
40 bcf cc_active
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
41 bcf LEDr
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
42 bcf TRISJ,2 ; Chrg-Out output
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
43 bsf CHRG_OUT
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
44
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
45 btfss CHRG_IN
207
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
46 bra charge_cc_active
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
47
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
48 bcf CHRG_OUT
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
49 bsf TRISJ,2 ; Chrg-Out high impedance
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
50
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
51 WAITMS d'1'
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
52
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
53 btfsc CHRG_IN
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
54 return
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
55 ;cv_active:
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
56 decfsz safety_stop_countdown,F
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
57 return
266
6a1ac89e2098 Charge done indicator (cR and 2 Hardware)
heinrichsweikamp
parents: 260
diff changeset
58 movlw .15
6a1ac89e2098 Charge done indicator (cR and 2 Hardware)
heinrichsweikamp
parents: 260
diff changeset
59 cpfsgt batt_voltage+1 ; Batt Voltage >= 16*256mV (4,096V)?
260
e1cd6848863d increase immunity against false Qi data
heinrichsweikamp
parents: 236
diff changeset
60 bra charge_cc_active ; No
207
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
61 bsf cc_active
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
62 bsf cv_active
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
63 bsf LEDr ; Indicate charging
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
64 call lt2942_charge_done ; Reset accumulating registers to 0xFFFF
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
65 WAITMS d'10'
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
66 bcf LEDr ; Indicate charging
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
67 bsf safety_stop_countdown,0 ; =1
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
68 return
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
69
207
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
70 charge_cc_active:
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
71 bsf cc_active
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
72 bsf LEDr ; Indicate charging
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
73 bcf CHRG_OUT
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
74 bsf TRISJ,2 ; Chrg-Out high impedance
260
e1cd6848863d increase immunity against false Qi data
heinrichsweikamp
parents: 236
diff changeset
75 movlw .10
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
76 movwf safety_stop_countdown
113
heinrichsweikamp
parents: 44
diff changeset
77 return
heinrichsweikamp
parents: 44
diff changeset
78
heinrichsweikamp
parents: 44
diff changeset
79 get_battery_voltage1:
0
heinrichsweikamp
parents:
diff changeset
80 bsf adc_running ; =1: The ADC is in use
heinrichsweikamp
parents:
diff changeset
81 movlw b'00100000' ; 2.048V Vref+ -> 1LSB = 500µV
heinrichsweikamp
parents:
diff changeset
82 movwf ADCON1
heinrichsweikamp
parents:
diff changeset
83 movlw b'00011001' ; power on ADC, select AN6
heinrichsweikamp
parents:
diff changeset
84 rcall wait_adc
heinrichsweikamp
parents:
diff changeset
85
heinrichsweikamp
parents:
diff changeset
86 movff ADRESH,batt_voltage+1 ; store value
heinrichsweikamp
parents:
diff changeset
87 movff ADRESL,batt_voltage+0 ; store value
heinrichsweikamp
parents:
diff changeset
88 bcf ADCON0,0 ; power off ADC
heinrichsweikamp
parents:
diff changeset
89
heinrichsweikamp
parents:
diff changeset
90 ; Multiply with 2,006 to be excact here...
heinrichsweikamp
parents:
diff changeset
91 ; bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
92 ; rlcf xA+0,F
heinrichsweikamp
parents:
diff changeset
93 ;
heinrichsweikamp
parents:
diff changeset
94 ; rlcf xA+1,F ; x2
heinrichsweikamp
parents:
diff changeset
95
heinrichsweikamp
parents:
diff changeset
96 ; movff xA+0,batt_voltage+0 ; store value
heinrichsweikamp
parents:
diff changeset
97 ; movff xA+1,batt_voltage+1
heinrichsweikamp
parents:
diff changeset
98
heinrichsweikamp
parents:
diff changeset
99 movlw LOW lithium_36v_low
heinrichsweikamp
parents:
diff changeset
100 movwf sub_a+0
heinrichsweikamp
parents:
diff changeset
101 movlw HIGH lithium_36v_low
heinrichsweikamp
parents:
diff changeset
102 movwf sub_a+1
heinrichsweikamp
parents:
diff changeset
103 movff batt_voltage+0,sub_b+0
heinrichsweikamp
parents:
diff changeset
104 movff batt_voltage+1,sub_b+1
heinrichsweikamp
parents:
diff changeset
105 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
106 ; Battery is 3,6V (>lithium_36v_low?)
heinrichsweikamp
parents:
diff changeset
107 btfss neg_flag
heinrichsweikamp
parents:
diff changeset
108 bra get_battery_voltage4 ; No, use 1,5V
heinrichsweikamp
parents:
diff changeset
109
heinrichsweikamp
parents:
diff changeset
110 bsf battery_is_36v ; Yes, set flag (Cleared in power-on reset only!)
heinrichsweikamp
parents:
diff changeset
111
heinrichsweikamp
parents:
diff changeset
112 ; Check if the battery is near-dead already
heinrichsweikamp
parents:
diff changeset
113 movlw LOW lithium_36v_empty
heinrichsweikamp
parents:
diff changeset
114 movwf sub_a+0
heinrichsweikamp
parents:
diff changeset
115 movlw HIGH lithium_36v_empty
heinrichsweikamp
parents:
diff changeset
116 movwf sub_a+1
heinrichsweikamp
parents:
diff changeset
117 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
118 ; Battery is not dead yet (>lithium_36v_empty?)
heinrichsweikamp
parents:
diff changeset
119 btfsc neg_flag
heinrichsweikamp
parents:
diff changeset
120 bra get_battery_voltage2 ; Yes, battery is still ok
heinrichsweikamp
parents:
diff changeset
121
heinrichsweikamp
parents:
diff changeset
122 ; Battery is probably dead very soon
heinrichsweikamp
parents:
diff changeset
123 ; Set ">=24Ah used" into battery gauge registers
heinrichsweikamp
parents:
diff changeset
124 movlw .128
heinrichsweikamp
parents:
diff changeset
125 movff WREG,battery_gauge+5
heinrichsweikamp
parents:
diff changeset
126
heinrichsweikamp
parents:
diff changeset
127 get_battery_voltage2:
heinrichsweikamp
parents:
diff changeset
128 ; Use 3,6V battery gauging mode
heinrichsweikamp
parents:
diff changeset
129 movff battery_gauge+5,xC+3
heinrichsweikamp
parents:
diff changeset
130 movff battery_gauge+4,xC+2
heinrichsweikamp
parents:
diff changeset
131 movff battery_gauge+3,xC+1
heinrichsweikamp
parents:
diff changeset
132 movff battery_gauge+2,xC+0
heinrichsweikamp
parents:
diff changeset
133 ; battery_gauge:6 is nAs
heinrichsweikamp
parents:
diff changeset
134 ; devide through 65536
heinrichsweikamp
parents:
diff changeset
135 ; devide through 364
heinrichsweikamp
parents:
diff changeset
136 ; Result is in percent of a 2,4Ah Battery
heinrichsweikamp
parents:
diff changeset
137 movlw LOW .364
heinrichsweikamp
parents:
diff changeset
138 movwf xB+0
heinrichsweikamp
parents:
diff changeset
139 movlw HIGH .364
heinrichsweikamp
parents:
diff changeset
140 movwf xB+1
heinrichsweikamp
parents:
diff changeset
141 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
heinrichsweikamp
parents:
diff changeset
142 movff xC+0,lo
heinrichsweikamp
parents:
diff changeset
143 ; Limit to 100
heinrichsweikamp
parents:
diff changeset
144 movlw .100
heinrichsweikamp
parents:
diff changeset
145 cpfslt lo
heinrichsweikamp
parents:
diff changeset
146 movwf lo
heinrichsweikamp
parents:
diff changeset
147 ; lo will be between 0 (Full) and 100 (empty)
heinrichsweikamp
parents:
diff changeset
148 movf lo,W
heinrichsweikamp
parents:
diff changeset
149 sublw .100
heinrichsweikamp
parents:
diff changeset
150 movwf lo
heinrichsweikamp
parents:
diff changeset
151 get_battery_voltage3:
heinrichsweikamp
parents:
diff changeset
152 movlw .100
heinrichsweikamp
parents:
diff changeset
153 cpfslt lo
heinrichsweikamp
parents:
diff changeset
154 movwf lo
heinrichsweikamp
parents:
diff changeset
155 ; lo will be between 100 (Full) and 0 (empty)
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
156
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
157 ; use 3,6V battery sensing based on 50mA load
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
158 ; 75%
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
159 movff batt_voltage+0,sub_b+0
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
160 movff batt_voltage+1,sub_b+1
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
161 movlw LOW lithium_36v_75
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
162 movwf sub_a+0
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
163 movlw HIGH lithium_36v_75
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
164 movwf sub_a+1
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
165 call subU16 ; sub_c = sub_a - sub_b
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
166 btfsc neg_flag
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
167 bra get_battery_voltage3a
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
168 movlw .75
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
169 movwf lo
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
170 get_battery_voltage3a:
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
171 ; 50%
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
172 movlw LOW lithium_36v_50
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
173 movwf sub_a+0
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
174 movlw HIGH lithium_36v_50
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
175 movwf sub_a+1
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
176 call subU16 ; sub_c = sub_a - sub_b
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
177 btfsc neg_flag
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
178 bra get_battery_voltage3b
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
179 movlw .50
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
180 movwf lo
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
181 get_battery_voltage3b:
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
182 ; 25%
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
183 movlw LOW lithium_36v_25
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
184 movwf sub_a+0
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
185 movlw HIGH lithium_36v_25
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
186 movwf sub_a+1
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
187 call subU16 ; sub_c = sub_a - sub_b
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
188 btfsc neg_flag
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
189 bra get_battery_voltage3c
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
190 movlw .25
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
191 movwf lo
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
192 get_battery_voltage3c:
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
193 ; 10%
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
194 movlw LOW lithium_36v_10
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
195 movwf sub_a+0
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
196 movlw HIGH lithium_36v_10
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
197 movwf sub_a+1
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
198 call subU16 ; sub_c = sub_a - sub_b
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
199 btfsc neg_flag
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
200 bra get_battery_voltage3d
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
201 movlw .10
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
202 movwf lo
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
203 get_battery_voltage3d:
44
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
204 movlw .100
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
205 cpfslt lo
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
206 movwf lo
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
207 ; lo will be between 100 (Full) and 0 (empty)
0
heinrichsweikamp
parents:
diff changeset
208 movf batt_percent,W
heinrichsweikamp
parents:
diff changeset
209 cpfsgt lo ; keep batt_percent on the lowest value found
heinrichsweikamp
parents:
diff changeset
210 movff lo,batt_percent ; store value
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
211 ; btfsc battery_is_36v ; but always use computed value for 3,6V battery
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
212 ; movff lo,batt_percent ; store value
0
heinrichsweikamp
parents:
diff changeset
213 bcf adc_running ; =1: The ADC is in use
heinrichsweikamp
parents:
diff changeset
214 return
heinrichsweikamp
parents:
diff changeset
215
heinrichsweikamp
parents:
diff changeset
216 get_battery_voltage4:
heinrichsweikamp
parents:
diff changeset
217 ; Use 1,5V battery voltage mode
heinrichsweikamp
parents:
diff changeset
218 ; Use approximation (batt_voltage:2-aa_15v_low)/4 = lo
heinrichsweikamp
parents:
diff changeset
219 movff batt_voltage+0,sub_a+0
heinrichsweikamp
parents:
diff changeset
220 movff batt_voltage+1,sub_a+1
heinrichsweikamp
parents:
diff changeset
221 movlw LOW aa_15v_low
heinrichsweikamp
parents:
diff changeset
222 movwf sub_b+0
heinrichsweikamp
parents:
diff changeset
223 movlw HIGH aa_15v_low
heinrichsweikamp
parents:
diff changeset
224 movwf sub_b+1
heinrichsweikamp
parents:
diff changeset
225 call subU16 ; sub_c = sub_a - sub_b
heinrichsweikamp
parents:
diff changeset
226 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
227 rrcf sub_c+1
heinrichsweikamp
parents:
diff changeset
228 rrcf sub_c+0 ; /2
heinrichsweikamp
parents:
diff changeset
229 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
230 rrcf sub_c+1
heinrichsweikamp
parents:
diff changeset
231 rrcf sub_c+0 ; /4
heinrichsweikamp
parents:
diff changeset
232 movff sub_c+0,lo
44
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
233 bra get_battery_voltage3d ; Check limits and return
0
heinrichsweikamp
parents:
diff changeset
234
heinrichsweikamp
parents:
diff changeset
235 global get_ambient_level
heinrichsweikamp
parents:
diff changeset
236 get_ambient_level: ; starts ADC and waits until finished
heinrichsweikamp
parents:
diff changeset
237 btfsc adc_running ; ADC in use?
heinrichsweikamp
parents:
diff changeset
238 return ; Yes, return
heinrichsweikamp
parents:
diff changeset
239
236
e2ea74646127 configure hardware_flag byte
heinrichsweikamp
parents: 235
diff changeset
240 btfsc ambient_sensor
113
heinrichsweikamp
parents: 44
diff changeset
241 bra get_ambient_level1 ; Normal ostc3 hardware
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
242
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
243 banksel isr_backup ; Back to Bank0 ISR data
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
244 movff opt_brightness,isr1_temp
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
245 incf isr1_temp,F ; adjust 0-2 to 1-3
354
043890f06bce some cleanups
heinrichsweikamp
parents: 343
diff changeset
246 movlw ambient_light_max_high_cr; cR and 2 hardware brightest setting
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
247 dcfsnz isr1_temp,F
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
248 movlw ambient_light_max_eco ; brightest setting
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
249 dcfsnz isr1_temp,F
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
250 movlw ambient_light_max_medium; brightest setting
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
251
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
252 movff WREG,ambient_light+0 ; Set to max.
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
253 movff ambient_light+0,max_CCPR1L ; Store value for dimming in TMR7 interrupt
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
254 return
113
heinrichsweikamp
parents: 44
diff changeset
255
heinrichsweikamp
parents: 44
diff changeset
256 get_ambient_level1:
0
heinrichsweikamp
parents:
diff changeset
257 movlw b'00000000' ; Vref+ = Vdd
heinrichsweikamp
parents:
diff changeset
258 movwf ADCON1
heinrichsweikamp
parents:
diff changeset
259 movlw b'00011101' ; power on ADC, select AN7
heinrichsweikamp
parents:
diff changeset
260 rcall wait_adc
heinrichsweikamp
parents:
diff changeset
261
heinrichsweikamp
parents:
diff changeset
262 movff ADRESH,ambient_light+1
heinrichsweikamp
parents:
diff changeset
263 movff ADRESL,ambient_light+0
heinrichsweikamp
parents:
diff changeset
264 bcf ADCON0,0 ; power off ADC
heinrichsweikamp
parents:
diff changeset
265
heinrichsweikamp
parents:
diff changeset
266 ; ambient_light:2 is between 4096 (direct sunlight) and about 200 (darkness)
heinrichsweikamp
parents:
diff changeset
267 ; First: Devide through 16
heinrichsweikamp
parents:
diff changeset
268 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
269 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
270 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
271 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
272 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
273 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
274 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
275 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
276 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
277 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
278 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
279 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
280 ; Result: ambient_light:2/16
heinrichsweikamp
parents:
diff changeset
281 ; Now, make sure to have value between ambient_light_low and ambient_light_max
heinrichsweikamp
parents:
diff changeset
282
heinrichsweikamp
parents:
diff changeset
283 movlw .254
heinrichsweikamp
parents:
diff changeset
284 tstfsz ambient_light+1 ; >255?
heinrichsweikamp
parents:
diff changeset
285 movwf ambient_light+0 ; avoid ADC clipping
heinrichsweikamp
parents:
diff changeset
286
heinrichsweikamp
parents:
diff changeset
287 incfsz ambient_light+0,W ; =255?
heinrichsweikamp
parents:
diff changeset
288 bra get_ambient_level2 ; No, continue
heinrichsweikamp
parents:
diff changeset
289
heinrichsweikamp
parents:
diff changeset
290 movlw .254
heinrichsweikamp
parents:
diff changeset
291 movwf ambient_light+0 ; avoid ADC clipping
heinrichsweikamp
parents:
diff changeset
292
heinrichsweikamp
parents:
diff changeset
293 get_ambient_level2:
357
36bd27f42362 BUGFIX: Auto-Brightness clipped to lowest settings in bright sunlight on some devices
heinrichsweikamp
parents: 354
diff changeset
294 ; movlw .10
36bd27f42362 BUGFIX: Auto-Brightness clipped to lowest settings in bright sunlight on some devices
heinrichsweikamp
parents: 354
diff changeset
295 ; subwf ambient_light+0,F ; Subtract 10 (ADC Offset)
36bd27f42362 BUGFIX: Auto-Brightness clipped to lowest settings in bright sunlight on some devices
heinrichsweikamp
parents: 354
diff changeset
296 ; btfsc STATUS,N
36bd27f42362 BUGFIX: Auto-Brightness clipped to lowest settings in bright sunlight on some devices
heinrichsweikamp
parents: 354
diff changeset
297 ; movwf ambient_light+0 ; avoid clipping
201
82faedf8fd58 lower minimum backlight in eco mode
heinrichsweikamp
parents: 200
diff changeset
298
0
heinrichsweikamp
parents:
diff changeset
299 banksel isr_backup ; Back to Bank0 ISR data
heinrichsweikamp
parents:
diff changeset
300 movff opt_brightness,isr1_temp
heinrichsweikamp
parents:
diff changeset
301
heinrichsweikamp
parents:
diff changeset
302 btfsc RCSTA1,7 ; UART module on?
heinrichsweikamp
parents:
diff changeset
303 clrf isr1_temp ; Yes, set temporally to eco mode
heinrichsweikamp
parents:
diff changeset
304
heinrichsweikamp
parents:
diff changeset
305 incf isr1_temp,F ; adjust 0-2 to 1-3
heinrichsweikamp
parents:
diff changeset
306
heinrichsweikamp
parents:
diff changeset
307 banksel common ; flag is in bank1
354
043890f06bce some cleanups
heinrichsweikamp
parents: 343
diff changeset
308 movlw ambient_light_max_high_cr; cR and 2 hardware brightest setting
235
23311219dacc under construction: new hardware_flag to configure different hardware versions
heinrichsweikamp
parents: 220
diff changeset
309 btfss rechargeable
136
9a637c9bb19a rename Deco Planner to Simulator
heinrichsweikamp
parents: 120
diff changeset
310 movlw ambient_light_max_high_15V; 1,5V battery brightest setting
9a637c9bb19a rename Deco Planner to Simulator
heinrichsweikamp
parents: 120
diff changeset
311 btfsc battery_is_36v ; 3,6V battery in use?
9a637c9bb19a rename Deco Planner to Simulator
heinrichsweikamp
parents: 120
diff changeset
312 movlw ambient_light_max_high_36V ; 3,6V battery brightest setting
0
heinrichsweikamp
parents:
diff changeset
313 banksel isr_backup ; Back to Bank0 ISR data
heinrichsweikamp
parents:
diff changeset
314
heinrichsweikamp
parents:
diff changeset
315 dcfsnz isr1_temp,F
heinrichsweikamp
parents:
diff changeset
316 movlw ambient_light_max_eco ; brightest setting
heinrichsweikamp
parents:
diff changeset
317 dcfsnz isr1_temp,F
heinrichsweikamp
parents:
diff changeset
318 movlw ambient_light_max_medium; brightest setting
heinrichsweikamp
parents:
diff changeset
319
heinrichsweikamp
parents:
diff changeset
320 banksel common ; ambient_light is in Bank1
heinrichsweikamp
parents:
diff changeset
321 incf ambient_light+0,F ; +1
heinrichsweikamp
parents:
diff changeset
322 cpfslt ambient_light+0 ; smaller then WREG?
heinrichsweikamp
parents:
diff changeset
323 movwf ambient_light+0 ; No, set to max.
heinrichsweikamp
parents:
diff changeset
324
heinrichsweikamp
parents:
diff changeset
325 banksel isr_backup ; Back to Bank0 ISR data
heinrichsweikamp
parents:
diff changeset
326 movff opt_brightness,isr1_temp
heinrichsweikamp
parents:
diff changeset
327 incf isr1_temp,F ; adjust 0-2 to 1-3
heinrichsweikamp
parents:
diff changeset
328 movlw ambient_light_min_high ; darkest setting
heinrichsweikamp
parents:
diff changeset
329
heinrichsweikamp
parents:
diff changeset
330 dcfsnz isr1_temp,F
heinrichsweikamp
parents:
diff changeset
331 movlw ambient_light_min_eco ; darkest setting
heinrichsweikamp
parents:
diff changeset
332 dcfsnz isr1_temp,F
heinrichsweikamp
parents:
diff changeset
333 movlw ambient_light_min_medium; darkest setting
heinrichsweikamp
parents:
diff changeset
334 dcfsnz isr1_temp,F
heinrichsweikamp
parents:
diff changeset
335 movlw ambient_light_min_high ; darkest setting
heinrichsweikamp
parents:
diff changeset
336
heinrichsweikamp
parents:
diff changeset
337 banksel common ; ambient_light is in Bank1
heinrichsweikamp
parents:
diff changeset
338 cpfsgt ambient_light+0 ; bigger then WREG?
heinrichsweikamp
parents:
diff changeset
339 movwf ambient_light+0 ; No, set to min
heinrichsweikamp
parents:
diff changeset
340
heinrichsweikamp
parents:
diff changeset
341 movff ambient_light+0,max_CCPR1L ; Store value for dimming in TMR7 interrupt
heinrichsweikamp
parents:
diff changeset
342 return
heinrichsweikamp
parents:
diff changeset
343
113
heinrichsweikamp
parents: 44
diff changeset
344 global get_analog_inputs
heinrichsweikamp
parents: 44
diff changeset
345 get_analog_inputs: ; starts ADC and waits until finished
0
heinrichsweikamp
parents:
diff changeset
346 bsf adc_running ; =1: The ADC is in use
113
heinrichsweikamp
parents: 44
diff changeset
347 btfsc TFT_PWM
heinrichsweikamp
parents: 44
diff changeset
348 bra get_analog_inputs ; Wait for PWM low
heinrichsweikamp
parents: 44
diff changeset
349 movlw b'00100000' ; 2.048V Vref+ -> 1LSB = 500µV
heinrichsweikamp
parents: 44
diff changeset
350 movwf ADCON1
heinrichsweikamp
parents: 44
diff changeset
351 movlw b'00100001' ; power on ADC, select AN8
heinrichsweikamp
parents: 44
diff changeset
352 rcall wait_adc
heinrichsweikamp
parents: 44
diff changeset
353 bcf STATUS,C
heinrichsweikamp
parents: 44
diff changeset
354 rrcf ADRESH,F ; /2
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
355 rrcf ADRESL,W
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
356 ; add to o2_mv_sensor1:2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
357 addwf o2_mv_sensor1+0,F
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
358 movf ADRESH,W
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
359 addwfc o2_mv_sensor1+1,F
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
360 ; Devide by 2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
361 bcf STATUS,C
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
362 rrcf o2_mv_sensor1+1,F ; /2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
363 rrcf o2_mv_sensor1+0,F
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
364
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
365 movlw HIGH ignore_mv
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
366 cpfsgt o2_mv_sensor1+1 ; >ignore_mv?
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
367 bra get_analog_inputs2a ; No
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
368 ; Yes, ignore this reading
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
369 clrf o2_mv_sensor1+1
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
370 clrf o2_mv_sensor1+0
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
371 get_analog_inputs2a:
354
043890f06bce some cleanups
heinrichsweikamp
parents: 343
diff changeset
372 ; Ignore 1,9mV noise for not-connected inputs
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
373 tstfsz o2_mv_sensor1+1 ; >25,5mV?
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
374 bra get_analog_inputs2 ; Yes, skip here
270
bddb63835035 increase min input voltage from 1,2mV to 1,9mV (cR only)
heinrichsweikamp
parents: 266
diff changeset
375 movlw .19
bddb63835035 increase min input voltage from 1,2mV to 1,9mV (cR only)
heinrichsweikamp
parents: 266
diff changeset
376 cpfsgt o2_mv_sensor1+0 ; >1,9mV?
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
377 clrf o2_mv_sensor1+0 ; no, clear result
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
378 get_analog_inputs2:
113
heinrichsweikamp
parents: 44
diff changeset
379 movlw b'00100101' ; power on ADC, select AN9
0
heinrichsweikamp
parents:
diff changeset
380 rcall wait_adc
113
heinrichsweikamp
parents: 44
diff changeset
381 bcf STATUS,C
heinrichsweikamp
parents: 44
diff changeset
382 rrcf ADRESH,F ; /2
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
383 rrcf ADRESL,W
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
384 ; add to o2_mv_sensor2:2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
385 addwf o2_mv_sensor2+0,F
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
386 movf ADRESH,W
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
387 addwfc o2_mv_sensor2+1,F
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
388 ; Devide by 2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
389 bcf STATUS,C
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
390 rrcf o2_mv_sensor2+1,F ; /2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
391 rrcf o2_mv_sensor2+0,F
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
392
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
393 movlw HIGH ignore_mv
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
394 cpfsgt o2_mv_sensor2+1 ; >ignore_mv?
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
395 bra get_analog_inputs3a ; No
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
396 ; Yes, ignore this reading
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
397 clrf o2_mv_sensor2+1
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
398 clrf o2_mv_sensor2+0
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
399 get_analog_inputs3a:
354
043890f06bce some cleanups
heinrichsweikamp
parents: 343
diff changeset
400 ; Ignore 1,9mV noise for not-connected inputs
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
401 tstfsz o2_mv_sensor2+1 ; >25,5mV?
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
402 bra get_analog_inputs3 ; Yes, skip here
270
bddb63835035 increase min input voltage from 1,2mV to 1,9mV (cR only)
heinrichsweikamp
parents: 266
diff changeset
403 movlw .19
bddb63835035 increase min input voltage from 1,2mV to 1,9mV (cR only)
heinrichsweikamp
parents: 266
diff changeset
404 cpfsgt o2_mv_sensor2+0 ; >1,9mV?
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
405 clrf o2_mv_sensor2+0 ; no, clear result
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
406 get_analog_inputs3:
113
heinrichsweikamp
parents: 44
diff changeset
407 movlw b'00101001' ; power on ADC, select AN10
heinrichsweikamp
parents: 44
diff changeset
408 rcall wait_adc
heinrichsweikamp
parents: 44
diff changeset
409 bcf STATUS,C
heinrichsweikamp
parents: 44
diff changeset
410 rrcf ADRESH,F ; /2
189
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
411 rrcf ADRESL,W
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
412 ; add to o2_mv_sensor3:2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
413 addwf o2_mv_sensor3+0,F
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
414 movf ADRESH,W
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
415 addwfc o2_mv_sensor3+1,F
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
416 ; Devide by 2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
417 bcf STATUS,C
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
418 rrcf o2_mv_sensor3+1,F ; /2
e79bc535ef9e ignore un-calibrated sensors even if they become valid
heinrichsweikamp
parents: 187
diff changeset
419 rrcf o2_mv_sensor3+0,F
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
420
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
421 movlw HIGH ignore_mv
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
422 cpfsgt o2_mv_sensor3+1 ; >ignore_mv?
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
423 bra get_analog_inputs4a ; No
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
424 ; Yes, ignore this reading
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
425 clrf o2_mv_sensor3+1
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
426 clrf o2_mv_sensor3+0
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
427 get_analog_inputs4a:
354
043890f06bce some cleanups
heinrichsweikamp
parents: 343
diff changeset
428 ; Ignore 1,9mV noise for not-connected inputs
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
429 tstfsz o2_mv_sensor3+1 ; >25,5mV?
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
430 bra get_analog_inputs4 ; Yes, skip here
270
bddb63835035 increase min input voltage from 1,2mV to 1,9mV (cR only)
heinrichsweikamp
parents: 266
diff changeset
431 movlw .19
bddb63835035 increase min input voltage from 1,2mV to 1,9mV (cR only)
heinrichsweikamp
parents: 266
diff changeset
432 cpfsgt o2_mv_sensor3+0 ; >1,9mV?
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
433 clrf o2_mv_sensor3+0 ; no, clear result
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
434 get_analog_inputs4:
0
heinrichsweikamp
parents:
diff changeset
435 bcf ADCON0,0 ; power off ADC
heinrichsweikamp
parents:
diff changeset
436 bcf adc_running ; =1: The ADC is in use
heinrichsweikamp
parents:
diff changeset
437 return
heinrichsweikamp
parents:
diff changeset
438
113
heinrichsweikamp
parents: 44
diff changeset
439 global piezo_config ; Sets up piezo sensitivity of heinrichs weikamp Piezo buttons (~30ms)
117
heinrichsweikamp
parents: 113
diff changeset
440 piezo_config: ; Settings between 20 and 200
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
441 movff opt_cR_button_right,WREG; right button
343
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
442 btfsc flip_screen ; 180° rotation ?
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
443 movff opt_cR_button_left,WREG ; Yes, left button
117
heinrichsweikamp
parents: 113
diff changeset
444 rcall piezo_config_tx
343
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
445
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 218
diff changeset
446 movff opt_cR_button_left,WREG ; left button
343
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
447 btfsc flip_screen ; 180° rotation ?
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
448 movff opt_cR_button_right,WREG; Yes, right button
204
heinrichsweikamp
parents: 203
diff changeset
449 rcall piezo_config_tx
343
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
450
204
heinrichsweikamp
parents: 203
diff changeset
451 movlw .200 ; reserved
heinrichsweikamp
parents: 203
diff changeset
452 rcall piezo_config_tx
heinrichsweikamp
parents: 203
diff changeset
453 movlw .200 ; reserved
heinrichsweikamp
parents: 203
diff changeset
454 rcall piezo_config_tx
heinrichsweikamp
parents: 203
diff changeset
455 return
heinrichsweikamp
parents: 203
diff changeset
456
117
heinrichsweikamp
parents: 113
diff changeset
457 piezo_config_tx: ; Send one byte
113
heinrichsweikamp
parents: 44
diff changeset
458 movwf uart1_temp ; Store byte
heinrichsweikamp
parents: 44
diff changeset
459 movlw .8
heinrichsweikamp
parents: 44
diff changeset
460 movwf uart2_temp ; Bit counter
heinrichsweikamp
parents: 44
diff changeset
461 bcf TX3_PIEZO_CFG ; Startbit
heinrichsweikamp
parents: 44
diff changeset
462 rcall piezo_config_wait_bit
heinrichsweikamp
parents: 44
diff changeset
463 piezo_config_tx_loop:
heinrichsweikamp
parents: 44
diff changeset
464 btfss uart1_temp,0 ; LSB first
heinrichsweikamp
parents: 44
diff changeset
465 bcf TX3_PIEZO_CFG
heinrichsweikamp
parents: 44
diff changeset
466 btfsc uart1_temp,0 ; LSB first
heinrichsweikamp
parents: 44
diff changeset
467 bsf TX3_PIEZO_CFG
heinrichsweikamp
parents: 44
diff changeset
468 rcall piezo_config_wait_bit
heinrichsweikamp
parents: 44
diff changeset
469 rrncf uart1_temp,F
heinrichsweikamp
parents: 44
diff changeset
470 decfsz uart2_temp,F
heinrichsweikamp
parents: 44
diff changeset
471 bra piezo_config_tx_loop
heinrichsweikamp
parents: 44
diff changeset
472 bsf TX3_PIEZO_CFG ; Stopbit
heinrichsweikamp
parents: 44
diff changeset
473 rcall piezo_config_wait_bit
heinrichsweikamp
parents: 44
diff changeset
474 return
heinrichsweikamp
parents: 44
diff changeset
475
heinrichsweikamp
parents: 44
diff changeset
476 piezo_config_wait_bit:
heinrichsweikamp
parents: 44
diff changeset
477 setf TMR5H
heinrichsweikamp
parents: 44
diff changeset
478 movlw .255-.26 ;26 x 31,5µs = 819us
heinrichsweikamp
parents: 44
diff changeset
479 movwf TMR5L
heinrichsweikamp
parents: 44
diff changeset
480 bcf PIR5,TMR5IF ; Clear flag
heinrichsweikamp
parents: 44
diff changeset
481 piezo_config_wait_bit3:
heinrichsweikamp
parents: 44
diff changeset
482 btfss PIR5,TMR5IF
heinrichsweikamp
parents: 44
diff changeset
483 bra piezo_config_wait_bit3 ; Wait loop
heinrichsweikamp
parents: 44
diff changeset
484 return
heinrichsweikamp
parents: 44
diff changeset
485
0
heinrichsweikamp
parents:
diff changeset
486 global reset_battery_pointer
heinrichsweikamp
parents:
diff changeset
487 reset_battery_pointer: ; Resets battery pointer 0x07-0x0C and battery_gauge:5
113
heinrichsweikamp
parents: 44
diff changeset
488 extern lt2942_charge_done
260
e1cd6848863d increase immunity against false Qi data
heinrichsweikamp
parents: 236
diff changeset
489 btfsc rechargeable ; Something to reset?
e1cd6848863d increase immunity against false Qi data
heinrichsweikamp
parents: 236
diff changeset
490 call lt2942_charge_done ; Yes, reset accumulating registers to 0xFFFF
113
heinrichsweikamp
parents: 44
diff changeset
491 clrf EEADRH
0
heinrichsweikamp
parents:
diff changeset
492 clrf EEDATA ; Delete to zero
heinrichsweikamp
parents:
diff changeset
493 write_int_eeprom 0x07
heinrichsweikamp
parents:
diff changeset
494 write_int_eeprom 0x08
heinrichsweikamp
parents:
diff changeset
495 write_int_eeprom 0x09
heinrichsweikamp
parents:
diff changeset
496 write_int_eeprom 0x0A
heinrichsweikamp
parents:
diff changeset
497 write_int_eeprom 0x0B
heinrichsweikamp
parents:
diff changeset
498 write_int_eeprom 0x0C
heinrichsweikamp
parents:
diff changeset
499 banksel battery_gauge+0
heinrichsweikamp
parents:
diff changeset
500 clrf battery_gauge+0
heinrichsweikamp
parents:
diff changeset
501 clrf battery_gauge+1
heinrichsweikamp
parents:
diff changeset
502 clrf battery_gauge+2
heinrichsweikamp
parents:
diff changeset
503 clrf battery_gauge+3
heinrichsweikamp
parents:
diff changeset
504 clrf battery_gauge+4
heinrichsweikamp
parents:
diff changeset
505 clrf battery_gauge+5
heinrichsweikamp
parents:
diff changeset
506 banksel common
heinrichsweikamp
parents:
diff changeset
507 movlw .100
heinrichsweikamp
parents:
diff changeset
508 movwf batt_percent
heinrichsweikamp
parents:
diff changeset
509 return
heinrichsweikamp
parents:
diff changeset
510
heinrichsweikamp
parents:
diff changeset
511
heinrichsweikamp
parents:
diff changeset
512 END