Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/ms5535.asm @ 325:4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
author | heinrichsweikamp |
---|---|
date | Sat, 07 May 2011 12:13:08 +0200 |
parents | 6d8a2550c9ea |
children | ecbbbd423e86 |
rev | line source |
---|---|
0 | 1 ; OSTC - diving computer code |
2 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
3 | |
4 ; This program is free software: you can redistribute it and/or modify | |
5 ; it under the terms of the GNU General Public License as published by | |
6 ; the Free Software Foundation, either version 3 of the License, or | |
7 ; (at your option) any later version. | |
8 | |
9 ; This program is distributed in the hope that it will be useful, | |
10 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 ; GNU General Public License for more details. | |
13 | |
14 ; You should have received a copy of the GNU General Public License | |
15 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | |
17 | |
18 ; routines for Intersema MS5535A, MS5541B and MS5541C | |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
19 ; history: |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
20 ; 2005-09-26: Written by Matthias Heinrichs, info@heinrichsweikamp.com |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
21 ; 2008-08-21: MH last updated, with second order compensation. |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
22 ; 2011-01-19: jDG Clean up using true signed arithmetics. |
0 | 23 ; known bugs: |
24 ; ToDo: | |
25 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
26 ;============================================================================= |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
27 ; Expose internal variables, to ease debug: |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
28 global D1, D2 |
289 | 29 global C1, C2, C3, C4, C5, C6 |
30 global xdT, xdT2, OFF, SENS, amb_pressure, temperature | |
0 | 31 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
32 ;============================================================================= |
0 | 33 calculate_compensation: |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
34 ; calculate UT1 = 8*C5 + 10000 (u16 range 10.000 .. +42.760) |
0 | 35 clrf isr_xA+1 |
36 movlw d'8' | |
37 movwf isr_xA+0 | |
38 movff C5+0,isr_xB+0 | |
39 movff C5+1,isr_xB+1 | |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
40 call isr_unsigned_mult16x16 ;isr_xA*isr_xB=isr_xC |
0 | 41 movlw LOW d'10000' |
42 addwf isr_xC+0, f | |
43 movlw HIGH d'10000' | |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
44 addwfc isr_xC+1, f ;isr_xC= 8*C5 + 10000 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
45 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
46 ; xdT = D2 - UT1 (s16 range -11.400 .. +12.350) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
47 movf isr_xC+0,W ; Get Value to be subtracted |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
48 subwf D2+0,W ; Do the Low Byte |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
49 movwf xdT+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
50 movf isr_xC+1,W ; Then the high byte. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
51 subwfb D2+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
52 movwf xdT+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
53 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
54 ; Second order temperature calculation |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
55 ; xdT/128 is in range -89..+96, hence signed 8bit. dT/128 = (2*dT)/256 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
56 rlcf xdT+0,W ; put hit bit in carry. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
57 rlcf xdT+1,W ; inject in high byte. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
58 movwf isr_xA+0 ; and put result in low byte. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
59 clrf isr_xA+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
60 btfsc xdT+1,7 ; If dT < 0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
61 setf isr_xA+1 ; then signextend to -1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
62 movff isr_xA+0,isr_xB+0 ; copy A to B |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
63 movff isr_xA+1,isr_xB+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
64 call isr_signed_mult16x16 ; dT*dT --> xC (32 bits) |
0 | 65 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
66 ; dT >= 0: divide by 8, ie. 3 shifts rights. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
67 ; dT < 0: divide by 2, ie. 1 shifts rights. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
68 movlw .3 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
69 btfss xdT+1,7 ; Was dT negatif ? |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
70 movlw .1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
71 calc_loop_1: |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
72 bcf STATUS,C ;dT^2 is positiv, so injected zeros. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
73 rrcf isr_xC+1,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
74 rrcf isr_xC+0,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
75 decfsz WREG |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
76 bra calc_loop_1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
77 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
78 movf isr_xC+0,W ; dT2 = dT - (dT/128)*(dT/128)/(2 ...or... 8) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
79 subwf xdT+0,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
80 movwf xdT2+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
81 movf isr_xC+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
82 subwfb xdT+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
83 movwf xdT2+1 |
0 | 84 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
85 ; Calculate OFF = C2 + ((C4-250)*dT2)/2^12 + 10000 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
86 ; (range +9.246 .. +18.887) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
87 movlw LOW(-.250) ; C4 - 250 --> A |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
88 addwf C4+0,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
89 movwf isr_xA+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
90 movlw -1 ; HIGH(- .250) is not hunderstood... |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
91 addwfc C4+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
92 movwf isr_xA+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
93 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
94 movff xdT2+0,isr_xB+0 ; dT2 --> B |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
95 movff xdT2+1,isr_xB+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
96 call isr_signed_mult16x16 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
97 movlw .12-.8 ; A 12bit shift = 1 byte + 4 bits. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
98 call isr_shift_C31 |
0 | 99 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
100 movlw LOW(.10000) ; Add 10000 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
101 addwf isr_xC+1,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
102 movlw HIGH(.10000) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
103 addwfc isr_xC+2,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
104 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
105 movf C2+0,W ; Add C2, and save into OFF |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
106 addwf isr_xC+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
107 movwf OFF+0 |
0 | 108 movf C2+1,W |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
109 addwfc isr_xC+2,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
110 movwf OFF+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
111 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
112 ; Calculate SENS = C1/2 + ((C3+200)*dT)/2^13 + 3000 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
113 movlw LOW(.200) ; C3+200 --> A |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
114 addwf C3+0,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
115 movwf isr_xA+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
116 movlw HIGH(.200) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
117 addwfc C3+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
118 movwf isr_xA+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
119 ; B still contains dT2 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
120 call isr_signed_mult16x16 ; A*B --> C |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
121 movlw .13-.8 ; A 13bit shift = 1 byte + 5 bits. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
122 call isr_shift_C31 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
123 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
124 bcf STATUS,C ; SENS = C1 / 2 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
125 rrcf C1+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
126 movwf SENS+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
127 rrcf C1+0,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
128 movwf SENS+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
129 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
130 movlw LOW(.3000) ; Add 3000 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
131 addwf isr_xC+1,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
132 movlw HIGH(.3000) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
133 addwfc isr_xC+2,F |
0 | 134 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
135 movf isr_xC+1,W ; And sum into SENS |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
136 addwf SENS+0,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
137 movf isr_xC+2,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
138 addwfc SENS+1,F |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
139 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
140 ; calculate amb_pressure = (sens * (d1-off))/2^12 + 1000 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
141 movf OFF+0,W ; d1-off --> a |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
142 subwf D1+0,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
143 movwf isr_xA+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
144 movf OFF+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
145 subwfb D1+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
146 movwf isr_xA+1 |
0 | 147 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
148 movff SENS+0,isr_xB+0 ; sens --> b |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
149 movff SENS+1,isr_xB+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
150 call isr_signed_mult16x16 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
151 movlw .12-.8 ; a 12bit shift = 1 byte + 4 bits. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
152 call isr_shift_C31 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
153 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
154 movlw LOW(.1000) ; add 1000, and save into amb_pressure |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
155 addwf isr_xC+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
156 movwf amb_pressure+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
157 movlw HIGH(.1000) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
158 addwfc isr_xC+2,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
159 movwf amb_pressure+1 |
0 | 160 |
161 btfss simulatormode_active ; are we in simulator mode? | |
162 bra calc_pressure_done ; no | |
163 | |
164 movff sim_pressure+0,amb_pressure+0 ; override readings with simulator values | |
165 movff sim_pressure+1,amb_pressure+1 | |
166 | |
167 calc_pressure_done: | |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
168 ; calculate temp = 200 + dT*(C6+100)/2^11 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
169 movlw LOW(.100) ; C6 + 100 --> A |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
170 addwf C6+0,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
171 movwf isr_xA+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
172 movlw HIGH(.100) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
173 addwfc C6+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
174 movwf isr_xA+1 |
0 | 175 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
176 movff xdT2+0,isr_xB+0 ; dT2 --> B |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
177 movff xdT2+1,isr_xB+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
178 call isr_signed_mult16x16 ; A*B |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
179 movlw .11-.8 ; A 12bit shift = 1 byte + 3 bits. |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
180 call isr_shift_C31 |
0 | 181 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
182 movlw LOW(.200) ; Add 200, and save into temperature |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
183 addwf isr_xC+1,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
184 movwf temperature+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
185 movlw HIGH(.200) |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
186 addwfc isr_xC+2,W |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
187 movwf temperature+1 |
0 | 188 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
189 bcf neg_temp |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
190 bnn calc_pos_temp ; Is Temp° negativ ? |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
191 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
192 bsf neg_temp ; Yes: set flag and store -temp |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
193 comf temperature+1 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
194 negf temperature+0 |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
195 btfsc STATUS,C |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
196 incf temperature+1 |
0 | 197 |
161
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
198 calc_pos_temp: |
8d6aca08f66b
Use signed arithmetic for pressure/temperature compensation.
JeanDo
parents:
83
diff
changeset
|
199 return ; Fertig mit allem |
0 | 200 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
201 ;============================================================================= |
0 | 202 get_pressure_start: |
203 rcall reset_MS5535A | |
204 movlw b'10100000' ;+3*high as start and 1+low as stop! | |
205 get_pressure_start2: | |
206 movwf isr1_temp | |
207 movlw d'12' | |
208 movwf clock_count | |
209 rcall send_data_MS55535A | |
210 return | |
211 | |
212 get_pressure_value: | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
4
diff
changeset
|
213 #ifndef TESTING |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
4
diff
changeset
|
214 ; Use register injection instead when in MPLab Sim emulation... |
0 | 215 rcall get_2bytes_MS5535A |
216 movff dMSB,D1+1 | |
217 movff dLSB,D1+0 | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
4
diff
changeset
|
218 #endif |
0 | 219 return |
220 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
221 ;============================================================================= |
0 | 222 get_temperature_start: |
223 rcall reset_MS5535A | |
224 movlw b'10010000' ;+3*high as start and 1+low as stop! | |
225 bra get_pressure_start2 ; continue in "get_pressure" | |
226 | |
227 get_temperature_value: | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
4
diff
changeset
|
228 #ifndef TESTING |
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
4
diff
changeset
|
229 ; Use register injection instead... |
0 | 230 rcall get_2bytes_MS5535A |
231 movff dMSB,D2+1 | |
232 movff dLSB,D2+0 | |
81
31fa973a70fd
Kludges to emulate inexisting devices when debugged with the MPLAB software SIMulator.
JeanDo
parents:
4
diff
changeset
|
233 #endif |
0 | 234 return |
235 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
236 ;============================================================================= |
0 | 237 get_calibration_data: |
238 rcall reset_MS5535A | |
239 movlw d'13' | |
240 movwf clock_count | |
241 movlw b'01010100' ;+3*high as start and 1+low as stop! | |
242 movwf isr1_temp | |
243 rcall send_data_MS55535A | |
244 rcall get_2bytes_MS5535A | |
289 | 245 |
246 #ifdef TESTING | |
247 movlw LOW(.18556) | |
248 movff WREG,W1+0 | |
249 movlw HIGH(.18556) | |
250 movff WREG,W1+1 | |
251 #else | |
0 | 252 movff dMSB,W1+1 |
253 movff dLSB,W1+0 | |
289 | 254 #endif |
0 | 255 |
256 movlw d'13' | |
257 movwf clock_count | |
258 movlw b'01011000' ;+3*high as start and 1+low as stop! | |
259 movwf isr1_temp | |
260 rcall send_data_MS55535A | |
261 rcall get_2bytes_MS5535A | |
289 | 262 #ifdef TESTING |
263 movlw LOW(.49183) | |
264 movff WREG,W2+0 | |
265 movlw HIGH(.49183) | |
266 movff WREG,W2+1 | |
267 #else | |
0 | 268 movff dMSB,W2+1 |
269 movff dLSB,W2+0 | |
289 | 270 #endif |
0 | 271 |
272 movlw d'13' | |
273 movwf clock_count | |
274 movlw b'01100100' ;+3*high as start and 1+low as stop! | |
275 movwf isr1_temp | |
276 rcall send_data_MS55535A | |
277 rcall get_2bytes_MS5535A | |
289 | 278 #ifdef TESTING |
279 movlw LOW(.22354) | |
280 movff WREG,W3+0 | |
281 movlw HIGH(.22354) | |
282 movff WREG,W3+1 | |
283 #else | |
0 | 284 movff dMSB,W3+1 |
285 movff dLSB,W3+0 | |
289 | 286 #endif |
0 | 287 |
288 movlw d'13' | |
289 movwf clock_count | |
290 movlw b'01101000' ;+3*high as start and 1+low as stop! | |
291 movwf isr1_temp | |
292 rcall send_data_MS55535A | |
293 rcall get_2bytes_MS5535A | |
289 | 294 #ifdef TESTING |
295 movlw LOW(.28083) | |
296 movff WREG,W4+0 | |
297 movlw HIGH(.28083) | |
298 movff WREG,W4+1 | |
299 #else | |
0 | 300 movff dMSB,W4+1 |
301 movff dLSB,W4+0 | |
289 | 302 #endif |
0 | 303 |
304 ; calculate C1 (16Bit) | |
305 movff W1+1, C1+1 | |
306 bcf STATUS,C | |
307 rrcf C1+1 | |
308 bcf STATUS,C | |
309 rrcf C1+1 | |
310 bcf STATUS,C | |
311 rrcf C1+1 | |
312 movff W1+0, C1+0 | |
313 bsf STATUS,C | |
314 btfss W1+1,0 | |
315 bcf STATUS,C | |
316 rrcf C1+0 | |
317 bsf STATUS,C | |
318 btfss W1+1,1 | |
319 bcf STATUS,C | |
320 rrcf C1+0 | |
321 bsf STATUS,C | |
322 btfss W1+1,2 | |
323 bcf STATUS,C | |
324 rrcf C1+0 | |
325 | |
326 ; calculate C2 (16Bit) | |
327 movff W2+0, C2+0 | |
328 bsf STATUS,C | |
329 btfss W2+1,0 | |
330 bcf STATUS,C | |
331 rrcf C2+0 | |
332 bsf STATUS,C | |
333 btfss W2+1,1 | |
334 bcf STATUS,C | |
335 rrcf C2+0 | |
336 bsf STATUS,C | |
337 btfss W2+1,2 | |
338 bcf STATUS,C | |
339 rrcf C2+0 | |
340 bsf STATUS,C | |
341 btfss W2+1,3 | |
342 bcf STATUS,C | |
343 rrcf C2+0 | |
344 bsf STATUS,C | |
345 btfss W2+1,4 | |
346 bcf STATUS,C | |
347 rrcf C2+0 | |
348 bsf STATUS,C | |
349 btfss W2+1,5 | |
350 bcf STATUS,C | |
351 rrcf C2+0 | |
352 | |
353 movff W2+1, C2+1 | |
354 bsf STATUS,C | |
355 btfss W1+0,0 | |
356 bcf STATUS,C | |
357 rrcf C2+1 | |
358 bsf STATUS,C | |
359 btfss W1+0,1 | |
360 bcf STATUS,C | |
361 rrcf C2+1 | |
362 bsf STATUS,C | |
363 btfss W1+0,2 | |
364 bcf STATUS,C | |
365 rrcf C2+1 | |
366 bcf STATUS,C | |
367 rrcf C2+1 | |
368 bcf STATUS,C | |
369 rrcf C2+1 | |
370 bcf STATUS,C | |
371 rrcf C2+1 | |
372 | |
373 ; calculate C3 (16Bit) | |
374 movff W3+1,C3+0 | |
375 bsf STATUS,C | |
376 btfss W3+0,7 | |
377 bcf STATUS,C | |
378 rlcf C3+0 | |
379 bsf STATUS,C | |
380 btfss W3+0,6 | |
381 bcf STATUS,C | |
382 rlcf C3+0 | |
383 clrf C3+1 | |
384 btfsc W3+1,7 | |
385 bsf C3+1,1 | |
386 btfsc W3+1,6 | |
387 bsf C3+1,0 | |
388 | |
389 ; calculate C4 (16Bit) | |
390 movff W4+1,C4+0 | |
391 bsf STATUS,C | |
392 btfss W4+0,7 | |
393 bcf STATUS,C | |
394 rlcf C4+0 | |
395 clrf C4+1 | |
396 btfsc W4+1,7 | |
397 bsf C4+1,0 | |
398 | |
399 ; calculate C5 (16Bit) | |
400 movff W3+0,C5+0 | |
401 bcf C5+0,6 | |
402 btfsc W2+0,0 | |
403 bsf C5+0,6 | |
404 bcf C5+0,7 | |
405 btfsc W2+0,1 | |
406 bsf C5+0,7 | |
407 clrf C5+1 | |
408 btfsc W2+0,2 | |
409 bsf C5+1,0 | |
410 btfsc W2+0,3 | |
411 bsf C5+1,1 | |
412 btfsc W2+0,4 | |
413 bsf C5+1,2 | |
414 btfsc W2+0,5 | |
415 bsf C5+1,3 | |
416 | |
417 ; calculate C6 (16Bit) | |
418 clrf C6+1 | |
419 movff W4+0,C6+0 | |
420 bcf C6+0,7 | |
421 | |
422 bcf no_sensor_int ; enable sensor interrupts | |
423 return | |
424 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
161
diff
changeset
|
425 ;============================================================================= |
0 | 426 reset_MS5535A_one: |
427 bsf sensor_SDO | |
428 nop | |
429 bsf sensor_CLK | |
430 nop | |
431 nop | |
432 nop | |
433 nop | |
434 nop | |
435 nop | |
436 bcf sensor_CLK | |
437 return | |
438 | |
439 reset_MS5535A_zero: | |
440 bcf sensor_SDO | |
441 nop | |
442 bsf sensor_CLK | |
443 nop | |
444 nop | |
445 nop | |
446 nop | |
447 nop | |
448 nop | |
449 bcf sensor_CLK | |
450 return | |
451 | |
452 reset_MS5535A: | |
453 rcall reset_MS5535A_one ;0 | |
454 rcall reset_MS5535A_zero | |
455 rcall reset_MS5535A_one | |
456 rcall reset_MS5535A_zero | |
457 rcall reset_MS5535A_one | |
458 rcall reset_MS5535A_zero | |
459 rcall reset_MS5535A_one | |
460 rcall reset_MS5535A_zero | |
461 rcall reset_MS5535A_one | |
462 rcall reset_MS5535A_zero | |
463 rcall reset_MS5535A_one | |
464 rcall reset_MS5535A_zero | |
465 rcall reset_MS5535A_one | |
466 rcall reset_MS5535A_zero | |
467 rcall reset_MS5535A_one | |
468 rcall reset_MS5535A_zero ;15 | |
469 rcall reset_MS5535A_zero | |
470 rcall reset_MS5535A_zero | |
471 rcall reset_MS5535A_zero | |
472 rcall reset_MS5535A_zero | |
473 rcall reset_MS5535A_zero ;20 | |
474 return | |
475 | |
476 get_2bytes_MS5535A: | |
477 movlw d'8' | |
478 movwf clock_count | |
479 rcall recieve_loop | |
480 movff isr1_temp,dMSB | |
481 | |
482 movlw d'8' | |
483 movwf clock_count | |
484 rcall recieve_loop | |
485 movff isr1_temp,dLSB | |
486 bsf sensor_CLK | |
487 nop | |
488 nop | |
489 nop | |
490 nop | |
491 nop | |
492 nop | |
493 bcf sensor_CLK | |
494 return | |
495 | |
496 recieve_loop: | |
497 bsf sensor_CLK | |
498 nop | |
499 nop | |
500 nop | |
501 nop | |
502 nop | |
503 nop | |
504 bcf sensor_CLK | |
505 btfss sensor_SDI ;MSB first | |
506 bcf STATUS,C | |
507 btfsc sensor_SDI ;MSB first | |
508 bsf STATUS,C | |
509 rlcf isr1_temp,F | |
510 decfsz clock_count,F | |
511 bra recieve_loop | |
512 return | |
513 | |
514 send_data_MS55535A: | |
515 ; send three startbits first | |
516 bcf sensor_CLK | |
517 bsf sensor_SDO | |
518 movlw d'3' | |
519 subwf clock_count,F ; total bit counter | |
520 bsf sensor_CLK | |
521 nop | |
522 nop | |
523 nop | |
524 nop | |
525 nop | |
526 nop | |
527 bcf sensor_CLK | |
528 nop | |
529 nop | |
530 nop | |
531 nop | |
532 nop | |
533 nop | |
534 bsf sensor_CLK | |
535 nop | |
536 nop | |
537 nop | |
538 nop | |
539 nop | |
540 nop | |
541 bcf sensor_CLK | |
542 nop | |
543 nop | |
544 nop | |
545 nop | |
546 nop | |
547 nop | |
548 bsf sensor_CLK | |
549 nop | |
550 nop | |
551 nop | |
552 nop | |
553 nop | |
554 nop | |
555 bcf sensor_CLK | |
556 ; now send 8 bytes from isr_temp1 and fill-up with zeros | |
557 datenbits: | |
558 btfss isr1_temp,7 ;MSB first | |
559 bcf sensor_SDO | |
560 btfsc isr1_temp,7 ;MSB first | |
561 bsf sensor_SDO | |
562 bcf STATUS,C | |
563 rlcf isr1_temp | |
564 | |
565 bsf sensor_CLK | |
566 nop | |
567 nop | |
568 nop | |
569 nop | |
570 nop | |
571 nop | |
572 bcf sensor_CLK | |
573 | |
574 decfsz clock_count,F | |
575 bra datenbits | |
576 return |