annotate src/adc_lightsensor.asm @ 604:ca4556fb60b9

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