annotate src/adc_lightsensor.asm @ 603:00b24fb4324d

second method to detect a full charge
author heinrichsweikamp
date Thu, 11 Oct 2018 21:06:29 +0200
parents b455b31ce022
children ca4556fb60b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
3 ; File adc.asm V2.98
0
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
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
17 extern reset_battery_internal_only
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
18
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
19 sensors CODE
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
20
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
21 ;=============================================================================
0
heinrichsweikamp
parents:
diff changeset
22
heinrichsweikamp
parents:
diff changeset
23 wait_adc:
heinrichsweikamp
parents:
diff changeset
24 movwf ADCON0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
25 nop
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
26 bsf ADCON0,1 ; start ADC
0
heinrichsweikamp
parents:
diff changeset
27 wait_adc2:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
28 btfsc ADCON0,1 ; Wait...
0
heinrichsweikamp
parents:
diff changeset
29 bra wait_adc2
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
30 return
0
heinrichsweikamp
parents:
diff changeset
31
heinrichsweikamp
parents:
diff changeset
32 global get_battery_voltage
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
33 get_battery_voltage: ; starts ADC and waits until finished
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
34 btfss battery_gauge_available
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
35 bra get_battery_voltage1 ; Normal ostc3 hardware
113
heinrichsweikamp
parents: 44
diff changeset
36
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
37 call lt2942_get_accumulated_charge
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
38 call lt2942_get_voltage
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
39
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
40 tstfsz batt_voltage+1 ; <256mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
41 bra get_battery_voltage_noretry ; No
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
42
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
43 ; Retry
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
44 call lt2942_get_accumulated_charge
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
45 call lt2942_get_voltage
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
46
466
7f4c3b2e6bb7 battery gauge handling
heinrichsweikamp
parents: 465
diff changeset
47 get_battery_voltage_noretry:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
48 btfsc divemode
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
49 return ; Not in divemode
218
8fbd8c5ac51f 1.71beta start
heinrichsweikamp
parents: 207
diff changeset
50
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
51 bcf cv_active
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
52 bcf cc_active
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
53 bcf LEDr
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
54 bcf TRISJ,2 ; Chrg-Out output
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
55 bsf CHRG_OUT
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
56
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
57 btfss CHRG_IN
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
58 bra charge_cc_active
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
59
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
60 bcf CHRG_OUT
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
61 bsf TRISJ,2 ; Chrg-Out high impedance
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
62
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
63 WAITMS d'1'
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
64
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
65 btfsc CHRG_IN
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
66 return
603
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
67 charge_cv_active:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
68 decfsz get_bat_volt_counter,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
69 return
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
70 movlw .15
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
71 cpfsgt batt_voltage+1 ; Batt Voltage >= 16*256mV (4,096V)?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
72 bra charge_cc_active ; No
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
73 bsf cc_active
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
74 bsf cv_active
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
75 bsf LEDr ; Indicate charging
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
76 call lt2942_charge_done ; Reset accumulating registers to 0xFFFF
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
77 WAITMS d'10'
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
78 bcf LEDr ; Indicate charging
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
79 bsf get_bat_volt_counter,0 ; =1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
80 return
120
e2f04bb2539c battery check in sleep
heinrichsweikamp
parents: 118
diff changeset
81
207
f5d909e03f52 charge indicator on surface screen
heinrichsweikamp
parents: 204
diff changeset
82 charge_cc_active:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
83 bsf cc_active
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
84 bsf LEDr ; Indicate charging
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
85 bcf CHRG_OUT
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
86 bsf TRISJ,2 ; Chrg-Out high impedance
603
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
87 movlw .15
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
88 cpfsgt batt_voltage+1 ; Batt Voltage >= 16*256mV (4,096V)?
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
89 bra charge_cc_active2 ; No
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
90 movlw .81
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
91 cpfslt batt_voltage+0 ; Batt Voltage >= 80mV(+4096mV from batt_voltage+1)?
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
92 bra charge_cv_active ; Yes
00b24fb4324d second method to detect a full charge
heinrichsweikamp
parents: 582
diff changeset
93 charge_cc_active2:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
94 movlw .10
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
95 movwf get_bat_volt_counter
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
96 return
113
heinrichsweikamp
parents: 44
diff changeset
97
heinrichsweikamp
parents: 44
diff changeset
98 get_battery_voltage1:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
99 bsf adc_running ; =1: The ADC is in use
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
100 movlw b'00100000' ; 2.048V Vref+ -> 1LSB = 500µV
0
heinrichsweikamp
parents:
diff changeset
101 movwf ADCON1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
102 movlw b'00011001' ; power on ADC, select AN6
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
103 rcall wait_adc
0
heinrichsweikamp
parents:
diff changeset
104
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
105 movff ADRESH,batt_voltage+1 ; store value
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
106 movff ADRESL,batt_voltage+0 ; store value
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
107 bcf ADCON0,0 ; power off ADC
0
heinrichsweikamp
parents:
diff changeset
108
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
109 ; Multiply with 2,006 to be exact here...
0
heinrichsweikamp
parents:
diff changeset
110 ; bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
111 ; rlcf xA+0,F
heinrichsweikamp
parents:
diff changeset
112 ;
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
113 ; rlcf xA+1,F ; x2
0
heinrichsweikamp
parents:
diff changeset
114
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
115 ; movff xA+0,batt_voltage+0 ; store value
0
heinrichsweikamp
parents:
diff changeset
116 ; movff xA+1,batt_voltage+1
heinrichsweikamp
parents:
diff changeset
117
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
118 movlw LOW lithium_36v_low
0
heinrichsweikamp
parents:
diff changeset
119 movwf sub_a+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
120 movlw HIGH lithium_36v_low
0
heinrichsweikamp
parents:
diff changeset
121 movwf sub_a+1
heinrichsweikamp
parents:
diff changeset
122 movff batt_voltage+0,sub_b+0
heinrichsweikamp
parents:
diff changeset
123 movff batt_voltage+1,sub_b+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
124 call subU16 ; sub_c = sub_a - sub_b
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
125 ; Battery is 3,6V (>lithium_36v_low?)
0
heinrichsweikamp
parents:
diff changeset
126 btfss neg_flag
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
127 bra get_battery_voltage4 ; No, use 1,5V
0
heinrichsweikamp
parents:
diff changeset
128
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
129 bsf battery_is_36v ; Yes, set flag (Cleared in power-on reset only!)
0
heinrichsweikamp
parents:
diff changeset
130
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
131 ; Check if the battery is near-dead already
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
132 movlw LOW lithium_36v_empty
0
heinrichsweikamp
parents:
diff changeset
133 movwf sub_a+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
134 movlw HIGH lithium_36v_empty
0
heinrichsweikamp
parents:
diff changeset
135 movwf sub_a+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
136 call subU16 ; sub_c = sub_a - sub_b
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
137 ; Battery is not dead yet (>lithium_36v_empty?)
0
heinrichsweikamp
parents:
diff changeset
138 btfsc neg_flag
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
139 bra get_battery_voltage2 ; Yes, battery is still ok
0
heinrichsweikamp
parents:
diff changeset
140
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
141 ; Battery is probably dead very soon
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
142 ; Set ">=24Ah used" into battery gauge registers
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
143 movlw .128
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
144 movff WREG,battery_gauge+5
0
heinrichsweikamp
parents:
diff changeset
145
heinrichsweikamp
parents:
diff changeset
146 get_battery_voltage2:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
147 ; Use 3,6V battery gauging mode
0
heinrichsweikamp
parents:
diff changeset
148 movff battery_gauge+5,xC+3
heinrichsweikamp
parents:
diff changeset
149 movff battery_gauge+4,xC+2
heinrichsweikamp
parents:
diff changeset
150 movff battery_gauge+3,xC+1
heinrichsweikamp
parents:
diff changeset
151 movff battery_gauge+2,xC+0
heinrichsweikamp
parents:
diff changeset
152 ; battery_gauge:6 is nAs
heinrichsweikamp
parents:
diff changeset
153 ; devide through 65536
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
154 ; devide through battery_capacity:2
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
155 ; Result is in percent
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
156 movff internal_battery_capacity+0,xB+0
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
157 movff internal_battery_capacity+1,xB+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
158 call div32x16 ; xC:4 / xB:2 = xC+3:xC+2 with xC+1:xC+0 as remainder
0
heinrichsweikamp
parents:
diff changeset
159 movff xC+0,lo
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
160 ; Limit to 100
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
161 movlw .100
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
162 cpfslt lo
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
163 movwf lo
0
heinrichsweikamp
parents:
diff changeset
164 ; lo will be between 0 (Full) and 100 (empty)
heinrichsweikamp
parents:
diff changeset
165 movf lo,W
heinrichsweikamp
parents:
diff changeset
166 sublw .100
heinrichsweikamp
parents:
diff changeset
167 movwf lo
heinrichsweikamp
parents:
diff changeset
168 get_battery_voltage3:
heinrichsweikamp
parents:
diff changeset
169 movlw .100
heinrichsweikamp
parents:
diff changeset
170 cpfslt lo
heinrichsweikamp
parents:
diff changeset
171 movwf lo
heinrichsweikamp
parents:
diff changeset
172 ; 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
173
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
174 ; use 3,6V battery sensing based on 50mA load
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
175 ; 75%
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
176 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
177 movff batt_voltage+1,sub_b+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
178 movlw LOW lithium_36v_75
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
179 movwf sub_a+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
180 movlw HIGH lithium_36v_75
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
181 movwf sub_a+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
182 call subU16 ; sub_c = sub_a - sub_b
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
183 btfsc neg_flag
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
184 bra get_battery_voltage3a
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
185 movlw .75
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
186 movwf lo
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
187 get_battery_voltage3a:
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
188 ; 50%
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
189 movlw LOW lithium_36v_50
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
190 movwf sub_a+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
191 movlw HIGH lithium_36v_50
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
192 movwf sub_a+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
193 call subU16 ; sub_c = sub_a - sub_b
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
194 btfsc neg_flag
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
195 bra get_battery_voltage3b
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
196 movlw .50
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
197 movwf lo
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
198 get_battery_voltage3b:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
199 ; 25%
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
200 movlw LOW lithium_36v_25
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
201 movwf sub_a+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
202 movlw HIGH lithium_36v_25
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
203 movwf sub_a+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
204 call subU16 ; sub_c = sub_a - sub_b
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
205 btfsc neg_flag
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
206 bra get_battery_voltage3c
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
207 movlw .25
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
208 movwf lo
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
209 get_battery_voltage3c:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
210 ; 10%
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
211 movlw LOW lithium_36v_10
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
212 movwf sub_a+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
213 movlw HIGH lithium_36v_10
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
214 movwf sub_a+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
215 call subU16 ; sub_c = sub_a - sub_b
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
216 btfsc neg_flag
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
217 bra get_battery_voltage3d
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
218 movlw .10
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
219 movwf lo
37
0e1723f2761e use four additional data points for the battery monitor
mh@mh-THINK.fritz.box
parents: 0
diff changeset
220 get_battery_voltage3d:
44
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
221 movlw .100
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
222 cpfslt lo
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
223 movwf lo
18fe4e668baa BUGFIX: Percent display with 1,5V batteries
heinrichsweikamp
parents: 37
diff changeset
224 ; lo will be between 100 (Full) and 0 (empty)
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
225 movf batt_percent,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
226 cpfsgt lo ; keep batt_percent on the lowest value found
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
227 movff lo,batt_percent ; store value
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
228 btfsc battery_is_36v ; but always use computed value for 3,6V battery
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
229 movff lo,batt_percent ; store value
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
230 bcf adc_running ; =1: The ADC is in use
0
heinrichsweikamp
parents:
diff changeset
231 return
heinrichsweikamp
parents:
diff changeset
232
heinrichsweikamp
parents:
diff changeset
233 get_battery_voltage4:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
234 ; Use 1,5V battery voltage mode
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
235 ; Use approximation (batt_voltage:2-aa_15v_low)/4 = lo
0
heinrichsweikamp
parents:
diff changeset
236 movff batt_voltage+0,sub_a+0
heinrichsweikamp
parents:
diff changeset
237 movff batt_voltage+1,sub_a+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
238 movlw LOW aa_15v_low
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
239 movwf sub_b+0
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
240 movlw HIGH aa_15v_low
0
heinrichsweikamp
parents:
diff changeset
241 movwf sub_b+1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
242 call subU16 ; sub_c = sub_a - sub_b
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
243 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
244 rrcf sub_c+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
245 rrcf sub_c+0 ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
246 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
247 rrcf sub_c+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
248 rrcf sub_c+0 ; /4
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
249 movff sub_c+0,lo
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
250 bra get_battery_voltage3d ; Check limits and return
0
heinrichsweikamp
parents:
diff changeset
251
heinrichsweikamp
parents:
diff changeset
252 global get_ambient_level
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
253 get_ambient_level: ; starts ADC and waits until finished
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
254 btfsc adc_running ; ADC in use?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
255 return ; Yes, return
0
heinrichsweikamp
parents:
diff changeset
256
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
257 btfsc ambient_sensor
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
258 bra get_ambient_level1 ; Normal ostc3 hardware
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
259
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
260 banksel isr_backup ; Back to Bank0 ISR data
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
261 movff opt_brightness,isr1_temp
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
262 incf isr1_temp,F ; adjust 0-2 to 1-3
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
263 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
264 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
265 movlw ambient_light_max_eco ; brightest setting
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
266 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
267 movlw ambient_light_max_medium ; brightest setting
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
268
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
269 movff WREG,ambient_light+0 ; Set to max.
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
270 movff ambient_light+0,max_CCPR1L ; Store value for dimming in TMR7 interrupt
203
dd9b167e82dc 1.64 (Fix ambient light for cR)
heinrichsweikamp
parents: 201
diff changeset
271 return
113
heinrichsweikamp
parents: 44
diff changeset
272
heinrichsweikamp
parents: 44
diff changeset
273 get_ambient_level1:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
274 movlw b'00000000' ; Vref+ = Vdd
0
heinrichsweikamp
parents:
diff changeset
275 movwf ADCON1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
276 movlw b'00011101' ; power on ADC, select AN7
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
277 rcall wait_adc
0
heinrichsweikamp
parents:
diff changeset
278
heinrichsweikamp
parents:
diff changeset
279 movff ADRESH,ambient_light+1
heinrichsweikamp
parents:
diff changeset
280 movff ADRESL,ambient_light+0
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
281 bcf ADCON0,0 ; power off ADC
0
heinrichsweikamp
parents:
diff changeset
282
heinrichsweikamp
parents:
diff changeset
283 ; ambient_light:2 is between 4096 (direct sunlight) and about 200 (darkness)
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
284 ; First: Divide by 16
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
285 banksel ambient_light
0
heinrichsweikamp
parents:
diff changeset
286 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
287 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
288 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
289 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
290 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
291 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
292 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
293 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
294 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
295 bcf STATUS,C
heinrichsweikamp
parents:
diff changeset
296 rrcf ambient_light+1
heinrichsweikamp
parents:
diff changeset
297 rrcf ambient_light+0
heinrichsweikamp
parents:
diff changeset
298 ; Result: ambient_light:2/16
heinrichsweikamp
parents:
diff changeset
299 ; Now, make sure to have value between ambient_light_low and ambient_light_max
heinrichsweikamp
parents:
diff changeset
300
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
301 movlw .254
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
302 tstfsz ambient_light+1 ; >255?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
303 movwf ambient_light+0 ; avoid ADC clipping
0
heinrichsweikamp
parents:
diff changeset
304
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
305 incfsz ambient_light+0,W ; =255?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
306 bra get_ambient_level2 ; No, continue
0
heinrichsweikamp
parents:
diff changeset
307
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
308 movlw .254
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
309 movwf ambient_light+0 ; avoid ADC clipping
0
heinrichsweikamp
parents:
diff changeset
310
heinrichsweikamp
parents:
diff changeset
311 get_ambient_level2:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
312 ; movlw .10
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
313 ; subwf ambient_light+0,F ; Subtract 10 (ADC Offset)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
314 ; btfsc STATUS,N
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
315 ; movwf ambient_light+0 ; avoid clipping
201
82faedf8fd58 lower minimum backlight in eco mode
heinrichsweikamp
parents: 200
diff changeset
316
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
317 banksel isr_backup ; Back to Bank0 ISR data
0
heinrichsweikamp
parents:
diff changeset
318 movff opt_brightness,isr1_temp
heinrichsweikamp
parents:
diff changeset
319
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
320 btfsc RCSTA1,7 ; UART module on?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
321 clrf isr1_temp ; Yes, set temporally to eco mode
0
heinrichsweikamp
parents:
diff changeset
322
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
323 incf isr1_temp,F ; adjust 0-2 to 1-3
0
heinrichsweikamp
parents:
diff changeset
324
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
325 banksel common ; flag is in bank1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
326 movlw ambient_light_max_high_cr ; cR and 2 hardware brightest setting
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
327 btfss battery_gauge_available
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
328 movlw ambient_light_max_high_15V ; 1,5V battery brightest setting
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
329 btfsc battery_is_36v ; 3,6V battery in use?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
330 movlw ambient_light_max_high_36V ; 3,6V battery brightest setting
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
331 banksel isr_backup ; Back to Bank0 ISR data
0
heinrichsweikamp
parents:
diff changeset
332
heinrichsweikamp
parents:
diff changeset
333 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
334 movlw ambient_light_max_eco ; brightest setting
0
heinrichsweikamp
parents:
diff changeset
335 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
336 movlw ambient_light_max_medium ; brightest setting
0
heinrichsweikamp
parents:
diff changeset
337
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
338 banksel ambient_light
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
339 incf ambient_light+0,F ; +1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
340 cpfslt ambient_light+0 ; smaller then WREG?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
341 movwf ambient_light+0 ; No, set to max.
0
heinrichsweikamp
parents:
diff changeset
342
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
343 banksel isr_backup ; Back to Bank0 ISR data
0
heinrichsweikamp
parents:
diff changeset
344 movff opt_brightness,isr1_temp
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
345 incf isr1_temp,F ; adjust 0-2 to 1-3
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
346 movlw ambient_light_min_high ; darkest setting
0
heinrichsweikamp
parents:
diff changeset
347
heinrichsweikamp
parents:
diff changeset
348 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
349 movlw ambient_light_min_eco ; darkest setting
0
heinrichsweikamp
parents:
diff changeset
350 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
351 movlw ambient_light_min_medium ; darkest setting
0
heinrichsweikamp
parents:
diff changeset
352 dcfsnz isr1_temp,F
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
353 movlw ambient_light_min_high ; darkest setting
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
354
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
355 banksel ambient_light
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
356 cpfsgt ambient_light+0 ; bigger then WREG?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
357 movwf ambient_light+0 ; No, set to min
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
358 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
359
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
360 movff ambient_light+0,max_CCPR1L ; Store value for dimming in TMR7 interrupt
0
heinrichsweikamp
parents:
diff changeset
361 return
heinrichsweikamp
parents:
diff changeset
362
113
heinrichsweikamp
parents: 44
diff changeset
363 global get_analog_inputs
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
364 get_analog_inputs: ; starts ADC and waits until finished
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
365 bsf adc_running ; =1: The ADC is in use
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
366 btfsc TFT_PWM
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
367 bra get_analog_inputs ; Wait for PWM low
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
368 movlw b'00100000' ; 2.048V Vref+ -> 1LSB = 500µV
113
heinrichsweikamp
parents: 44
diff changeset
369 movwf ADCON1
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
370 movlw b'00100001' ; power on ADC, select AN8
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
371 rcall wait_adc
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
372 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
373 rrcf ADRESH,F ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
374 rrcf ADRESL,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
375 ; add to o2_mv_sensor1:2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
376 addwf o2_mv_sensor1+0,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
377 movf ADRESH,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
378 addwfc o2_mv_sensor1+1,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
379 ; Devide by 2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
380 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
381 rrcf o2_mv_sensor1+1,F ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
382 rrcf o2_mv_sensor1+0,F
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
383
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
384 movlw HIGH ignore_mv
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
385 cpfsgt o2_mv_sensor1+1 ; >ignore_mv?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
386 bra get_analog_inputs2a ; No
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
387 ; Yes, ignore this reading
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
388 clrf o2_mv_sensor1+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
389 clrf o2_mv_sensor1+0
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
390 get_analog_inputs2a:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
391 ; Ignore 1,9mV noise for not-connected inputs
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
392 tstfsz o2_mv_sensor1+1 ; >25,5mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
393 bra get_analog_inputs2 ; Yes, skip here
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
394 movlw .19
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
395 cpfsgt o2_mv_sensor1+0 ; >1,9mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
396 clrf o2_mv_sensor1+0 ; no, clear result
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
397 get_analog_inputs2:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
398 movlw b'00100101' ; power on ADC, select AN9
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
399 rcall wait_adc
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
400 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
401 rrcf ADRESH,F ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
402 rrcf ADRESL,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
403 ; add to o2_mv_sensor2:2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
404 addwf o2_mv_sensor2+0,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
405 movf ADRESH,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
406 addwfc o2_mv_sensor2+1,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
407 ; Devide by 2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
408 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
409 rrcf o2_mv_sensor2+1,F ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
410 rrcf o2_mv_sensor2+0,F
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
411
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
412 movlw HIGH ignore_mv
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
413 cpfsgt o2_mv_sensor2+1 ; >ignore_mv?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
414 bra get_analog_inputs3a ; No
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
415 ; Yes, ignore this reading
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
416 clrf o2_mv_sensor2+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
417 clrf o2_mv_sensor2+0
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
418 get_analog_inputs3a:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
419 ; Ignore 1,9mV noise for not-connected inputs
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
420 tstfsz o2_mv_sensor2+1 ; >25,5mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
421 bra get_analog_inputs3 ; Yes, skip here
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
422 movlw .19
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
423 cpfsgt o2_mv_sensor2+0 ; >1,9mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
424 clrf o2_mv_sensor2+0 ; no, clear result
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
425 get_analog_inputs3:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
426 movlw b'00101001' ; power on ADC, select AN10
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
427 rcall wait_adc
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
428 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
429 rrcf ADRESH,F ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
430 rrcf ADRESL,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
431 ; add to o2_mv_sensor3:2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
432 addwf o2_mv_sensor3+0,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
433 movf ADRESH,W
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
434 addwfc o2_mv_sensor3+1,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
435 ; Devide by 2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
436 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
437 rrcf o2_mv_sensor3+1,F ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
438 rrcf o2_mv_sensor3+0,F
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
439
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
440 movlw HIGH ignore_mv
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
441 cpfsgt o2_mv_sensor3+1 ; >ignore_mv?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
442 bra get_analog_inputs4a ; No
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
443 ; Yes, ignore this reading
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
444 clrf o2_mv_sensor3+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
445 clrf o2_mv_sensor3+0
196
a0e0ddfc1b49 suppress ghost readings for long, open cables
heinrichsweikamp
parents: 189
diff changeset
446 get_analog_inputs4a:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
447 ; Ignore 1,9mV noise for not-connected inputs
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
448 tstfsz o2_mv_sensor3+1 ; >25,5mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
449 bra get_analog_inputs4 ; Yes, skip here
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
450 movlw .19
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
451 cpfsgt o2_mv_sensor3+0 ; >1,9mV?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
452 clrf o2_mv_sensor3+0 ; no, clear result
187
669b5d00706d CHANGE: Longer timeout (4 min) for calibration menu
heinrichsweikamp
parents: 158
diff changeset
453 get_analog_inputs4:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
454 bcf ADCON0,0 ; power off ADC
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
455 bcf adc_running ; =1: The ADC is in use
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
456 return
0
heinrichsweikamp
parents:
diff changeset
457
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
458 global piezo_config ; sets up piezo sensitivity of heinrichs weikamp piezo buttons (~30ms)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
459 piezo_config: ; Settings between 20 and 200
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
460 clrf TMR5H
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
461 clrf TMR5L ; ~2sec
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
462 bcf PIR5,TMR5IF ; Clear flag
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
463 bcf switch_right
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
464 bcf switch_left
416
4389fe9673b2 NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents: 357
diff changeset
465 piezo_config0:
4389fe9673b2 NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents: 357
diff changeset
466 btfsc switch_right
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
467 bra piezo_config
416
4389fe9673b2 NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents: 357
diff changeset
468 btfsc switch_left
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
469 bra piezo_config ; Restart on button press
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
470
416
4389fe9673b2 NEW: Support for new logbook memory chip (minor hardware change)
heinrichsweikamp
parents: 357
diff changeset
471 btfss PIR5,TMR5IF
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
472 bra piezo_config0 ; Wait loop
468
heinrichsweikamp
parents: 466
diff changeset
473
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
474 bcf INTCON,GIE
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
475 movff opt_cR_button_right,WREG ; right button
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
476 btfsc flip_screen ; 180° rotation ?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
477 movff opt_cR_button_left,WREG ; Yes, left button
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
478 rcall piezo_config_tx
343
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
479
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
480 movff opt_cR_button_left,WREG ; left button
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
481 btfsc flip_screen ; 180° rotation ?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
482 movff opt_cR_button_right,WREG ; Yes, right button
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
483 rcall piezo_config_tx
343
34e2f5bdc5a2 BUGFIX: Rotate button sensitivity with screen (OSTC 2 and cR)
heinrichsweikamp
parents: 275
diff changeset
484
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
485 movlw .20 ; reserved
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
486 rcall piezo_config_tx
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
487 movlw .20 ; reserved
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
488 rcall piezo_config_tx
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
489 bsf INTCON,GIE
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
490 return
204
heinrichsweikamp
parents: 203
diff changeset
491
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
492 piezo_config_tx: ; send one byte
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
493 movwf lo ; store byte
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
494 movlw .8
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
495 movwf hi ; bit counter
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
496 bcf TX3_PIEZO_CFG ; start bit
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
497 rcall piezo_config_wait_bit
113
heinrichsweikamp
parents: 44
diff changeset
498 piezo_config_tx_loop:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
499 btfss lo,0 ; LSB first
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
500 bcf TX3_PIEZO_CFG
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
501 btfsc lo,0 ; LSB first
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
502 bsf TX3_PIEZO_CFG
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
503 rcall piezo_config_wait_bit
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
504 rrncf lo,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
505 decfsz hi,F
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
506 bra piezo_config_tx_loop
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
507 bsf TX3_PIEZO_CFG ; stop bit
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
508 rcall piezo_config_wait_bit
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
509 return
113
heinrichsweikamp
parents: 44
diff changeset
510
heinrichsweikamp
parents: 44
diff changeset
511 piezo_config_wait_bit:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
512 setf TMR5H
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
513 movlw .255-.26 ; 26 x 31,5µs = 819us
113
heinrichsweikamp
parents: 44
diff changeset
514 movwf TMR5L
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
515 bcf PIR5,TMR5IF ; Clear flag
113
heinrichsweikamp
parents: 44
diff changeset
516 piezo_config_wait_bit3:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
517 btfss PIR5,TMR5IF
113
heinrichsweikamp
parents: 44
diff changeset
518 bra piezo_config_wait_bit3 ; Wait loop
heinrichsweikamp
parents: 44
diff changeset
519 return
heinrichsweikamp
parents: 44
diff changeset
520
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
521 global reset_battery_pointer
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
522 reset_battery_pointer: ; Resets battery pointer 0x07-0x0C and battery_gauge:5
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
523 extern lt2942_charge_done
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
524 btfsc battery_gauge_available ; Something to reset?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
525 call lt2942_charge_done ; Yes, reset accumulating registers to 0xFFFF
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
526 goto reset_battery_internal_only ; and return
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
527
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
528
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
529 global get_analog_switches
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
530 get_analog_switches: ; starts ADC and waits until finished
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
531 btfsc analog_switches
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
532 bra get_analog_switches2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
533 ; no analog switches
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
534 bcf analog_sw2_pressed
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
535 bcf analog_sw1_pressed
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
536 return ; Done.
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
537 get_analog_switches2:
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
538 btfsc adc_running ; ADC in use?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
539 return ; Yes, return
0
heinrichsweikamp
parents:
diff changeset
540
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
541 movlw b'00001001' ; left justified
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
542 movwf ADCON2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
543 ; movlw b'00000000' ; Vref+ = Vdd
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
544 clrf ADCON1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
545 movlw b'00100101' ; power on ADC, select AN9
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
546 rcall wait_adc
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
547 banksel analog_counter
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
548 movff ADRESH,WREG
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
549 addwf analog_sw2_raw+0
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
550 movlw .0
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
551 addwfc analog_sw2_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
552 decfsz analog_counter,F ; continue averaging?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
553 bra get_analog_switches2a ; Yes
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
554 ; Done. Compute average
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
555 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
556 rrcf analog_sw2_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
557 rrcf analog_sw2_raw+0 ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
558 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
559 rrcf analog_sw2_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
560 rrcf analog_sw2_raw+0 ; /4
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
561 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
562 rrcf analog_sw2_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
563 rrcf analog_sw2_raw+0 ; /8
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
564 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
565 rrcf analog_sw2_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
566 rrcf analog_sw2_raw+0 ; /16
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
567 movff analog_sw2_raw+0,analog_sw2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
568 clrf analog_sw2_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
569 clrf analog_sw2_raw+0 ; Reset average registers
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
570 ; movlw .16
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
571 ; movwf analog_counter ; only once...
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
572 get_analog_switches2a:
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
573 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
574 bcf analog_sw2_pressed
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
575 movff opt_cR_button_left,WREG ;20-100
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
576 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
577 rrcf WREG ;/2 -> 10-50
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
578 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
579 rrcf WREG ;/2 -> 5-25
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
580 decf WREG,W ;-1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
581 decf WREG,W ;-1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
582 decf WREG,W ;-1 -> 2-22
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
583 banksel analog_sw2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
584 btfss button_polarity,1 ;(1= normal, 0=inverted)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
585 bra sw2_inverted
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
586 addwf analog_sw2,W ; average (~128)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
587 cpfsgt ADRESH
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
588 bra get_analog_sw1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
589 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
590 bsf analog_sw2_pressed ; Left button normal
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
591 bra get_analog_sw1
475
237afdfb4918 2.12 release candidate...
heinrichsweikamp
parents: 474
diff changeset
592 sw2_inverted:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
593 subwf analog_sw2,W ; average (~128)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
594 cpfslt ADRESH
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
595 bra get_analog_sw1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
596 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
597 bsf analog_sw2_pressed ; Left button inverted
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
598 get_analog_sw1:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
599 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
600 movlw b'00101001' ; power on ADC, select AN10
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
601 rcall wait_adc
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
602 banksel analog_counter
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
603 movff ADRESH,WREG
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
604 addwf analog_sw1_raw+0
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
605 movlw .0
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
606 addwfc analog_sw1_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
607 tstfsz analog_counter ; continue averaging?
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
608 bra get_analog_switches1a ; Yes
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
609 ; Done. Compute average
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
610 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
611 rrcf analog_sw1_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
612 rrcf analog_sw1_raw+0 ; /2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
613 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
614 rrcf analog_sw1_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
615 rrcf analog_sw1_raw+0 ; /4
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
616 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
617 rrcf analog_sw1_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
618 rrcf analog_sw1_raw+0 ; /8
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
619 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
620 rrcf analog_sw1_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
621 rrcf analog_sw1_raw+0 ; /16
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
622 movff analog_sw1_raw+0,analog_sw1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
623 clrf analog_sw1_raw+1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
624 clrf analog_sw1_raw+0 ; Reset average registers
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
625 movlw .16
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
626 movwf analog_counter ; only once...
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
627 get_analog_switches1a:
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
628 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
629 bcf analog_sw1_pressed
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
630 movff opt_cR_button_right,WREG ;20-100
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
631 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
632 rrcf WREG ;/2 -> 10-50
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
633 bcf STATUS,C
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
634 rrcf WREG ;/2 -> 5-25
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
635 decf WREG,W ;-1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
636 decf WREG,W ;-1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
637 decf WREG,W ;-1 -> 2-22
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
638 banksel analog_sw1
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
639 btfss button_polarity,0 ;(1= normal, 0=inverted)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
640 bra sw1_inverted
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
641 addwf analog_sw1,W ; average (~128)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
642 cpfsgt ADRESH
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
643 bra get_analog_sw_done
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
644 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
645 bsf analog_sw1_pressed ; right button normal
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
646 bra get_analog_sw_done
475
237afdfb4918 2.12 release candidate...
heinrichsweikamp
parents: 474
diff changeset
647 sw1_inverted:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
648 subwf analog_sw1,W ; average (~128)
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
649 cpfslt ADRESH
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
650 bra get_analog_sw_done
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
651 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
652 bsf analog_sw1_pressed ; right button inverted
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
653 get_analog_sw_done:
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
654 banksel common
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
655 movlw b'10001101' ; Restore to right justified
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
656 movwf ADCON2
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
657 btfsc analog_sw1_pressed
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
658 return
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
659 btfsc analog_sw2_pressed
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
660 return
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
661 setf TMR1H ; No button pressed, enhance timer1 to overflow quickly
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 475
diff changeset
662 return
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 416
diff changeset
663
0
heinrichsweikamp
parents:
diff changeset
664 END