Mercurial > public > hwos_code
annotate src/i2c.asm @ 650:bc214815deb2
3.19/10.75 release
author | heinrichsweikamp |
---|---|
date | Sun, 28 Aug 2022 13:13:38 +0200 |
parents | ef2ed7e3a895 |
children | 75e90cd0c2c3 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
634 | 3 ; File i2c.asm * combined next generation V3.09.4b |
0 | 4 ; |
560 | 5 ; I2C Interface |
6 ; | |
0 | 7 ; Copyright (c) 2012, JD Gascuel, HeinrichsWeikamp, all right reserved. |
8 ;============================================================================= | |
582 | 9 ; |
10 ; Compass0 | |
11 ; -------- | |
12 ; HMC5883L's read address (8-Bit): 0x3D | |
13 ; HMC5883L's write address (8-Bit): 0x3C | |
14 ; MMA8452Q's read address (8-Bit): 0x39 | |
15 ; MMA8452Q's write address (8-Bit): 0x38 | |
16 ; | |
17 ; Compass1 | |
18 ; -------- | |
19 ; LSM303D's read address (8-Bit): 0x3D | |
20 ; LSM303D's write address (8-Bit): 0x3C | |
21 ; | |
22 ; Compass2 | |
23 ; -------- | |
24 ; LSM303AGR's Compass read address (8-Bit): 0x3D | |
25 ; LSM303AGR's Compass write address (8-Bit): 0x3C | |
26 ; LSM303AGR's Acceleration read address (8-Bit): 0x33 | |
27 ; LSM303AGR's Acceleration write address (8-Bit): 0x32 | |
624 | 28 ; |
29 ; Compass3 | |
30 ; -------- | |
628 | 31 ; LSM303C's Compass read address (8-Bit): 0x3D |
32 ; LSM303C's Compass write address (8-Bit): 0x3C | |
624 | 33 ; LSM303C's Acceleration read address (8-Bit): 0x3B |
34 ; LSM303C's Acceleration write address (8-Bit): 0x3A | |
582 | 35 ; |
36 ; RX Circuity | |
37 ; ----------- | |
38 ; RX Circuity read address (8-Bit): 0x51 | |
39 ; RX Circuity write address (8-Bit): 0x50 | |
643 | 40 ; |
41 ; Battery gauge | |
42 ; ------------- | |
43 ; LTC2942 read address (8-Bit): 0xC9 | |
44 ; LTC2942 write address (8-Bit): 0xC8 | |
45 ; | |
46 ; Alternative pressure sensor | |
47 ; ----------- | |
48 ; MS5837 read address (8-Bit): 0xED | |
49 ; MS5837 write address (8-Bit): 0xEC | |
582 | 50 ; |
51 ; | |
52 | |
0 | 53 ; HISTORY |
54 ; 2012-08-22 : [mH] Creation | |
565 | 55 ; 2018-02-18 : [mH] Sync with hwOS Sport release |
0 | 56 |
57 | |
582 | 58 #include "hwos.inc" ; Mandatory header |
0 | 59 #include "wait.inc" |
113 | 60 #include "math.inc" |
631 | 61 #include "eeprom_rs232.inc" |
643 | 62 |
582 | 63 |
634 | 64 ;============================================================================= |
65 i2c CODE | |
582 | 66 ;============================================================================= |
0 | 67 |
634 | 68 |
0 | 69 |
634 | 70 ;----------------------------------------------------------------------------- |
71 ; Helper Function - get two Bytes and divide hi:lo/16 (signed) | |
72 ; | |
73 I2C_TwoBytesRX_div16: | |
74 rcall I2C_OneByteRX ; receive 1 byte with acknowledge | |
75 movff SSP1BUF,hi ; copy data byte to hi | |
76 rcall I2C_OneByteRX ; receive 1 byte with acknowledge | |
77 movff SSP1BUF,lo ; copy data byte to lo | |
78 I2C_TwoBytesRX_div16_2: ; divide hi:lo/16 (signed) only | |
582 | 79 bcf STATUS,C |
604 | 80 btfsc hi,7 ; copy sign bit to carry |
582 | 81 bsf STATUS,C |
82 rrcf hi ; /2 | |
83 rrcf lo | |
634 | 84 ;bra I2C_TwoBytesRX_div8 ; continue dividing hi:lo/8 (signed) |
85 | |
86 | |
87 ;----------------------------------------------------------------------------- | |
88 ; Helper Function - divide hi:lo/8 (signed) | |
89 ; | |
90 I2C_TwoBytesRX_div8: | |
582 | 91 bcf STATUS,C |
604 | 92 btfsc hi,7 ; copy sign bit to carry |
582 | 93 bsf STATUS,C |
94 rrcf hi ; /4 | |
95 rrcf lo | |
96 bcf STATUS,C | |
604 | 97 btfsc hi,7 ; copy sign bit to carry |
582 | 98 bsf STATUS,C |
99 rrcf hi ; /8 | |
100 rrcf lo | |
101 bcf STATUS,C | |
604 | 102 btfsc hi,7 ; copy sign bit to carry |
582 | 103 bsf STATUS,C |
104 rrcf hi ; /16 | |
105 rrcf lo | |
634 | 106 return ; done |
107 | |
0 | 108 |
634 | 109 ;----------------------------------------------------------------------------- |
110 ; Read Accelerometer | |
111 ; | |
582 | 112 global I2C_RX_accelerometer |
0 | 113 I2C_RX_accelerometer: |
628 | 114 btfsc compass_type3 ; compass3 ? |
115 bra I2C_RX_accelerometer_compass3 ; YES | |
604 | 116 btfsc compass_type2 ; compass2 ? |
117 bra I2C_RX_accelerometer_compass2 ; YES | |
628 | 118 btfsc compass_type1 ; compass1 ? |
604 | 119 bra I2C_RX_accelerometer_compass1 ; YES |
628 | 120 ;bra I2C_RX_accelerometer_compass0 ; NO - compass0 then |
121 | |
643 | 122 ;I2C_RX_accelerometer_compass0: |
604 | 123 bsf SSP1CON2,SEN ; start condition |
634 | 124 rcall WaitMSSP ; wait for TX to complete |
582 | 125 movlw 0x38 ; address |
643 | 126 movff WREG,i2c_error_vault+0 ; Store address |
634 | 127 rcall I2C_TX ; send byte |
128 movlw 0x00 ; ?? | |
129 rcall I2C_TX ; send byte | |
604 | 130 bsf SSP1CON2,RSEN ; repeated start condition |
634 | 131 rcall WaitMSSP ; wait for TX to complete |
582 | 132 movlw 0x39 ; address |
634 | 133 rcall I2C_TX ; send byte |
134 rcall I2C_OneByteRX ; get status byte | |
135 movf SSP1BUF,W ; copy status byte to WREG | |
158 | 136 |
582 | 137 ; Non-flipped screen: |
138 ; Chip orientation on the PCB requires | |
604 | 139 ; Original = corrected |
582 | 140 ; x = -x |
141 ; y = -y | |
142 ; z = -z | |
0 | 143 |
582 | 144 ; Flipped screen: |
145 ; Chip orientation on the PCB requires | |
604 | 146 ; Original = corrected |
582 | 147 ; x = x |
148 ; y = y | |
149 ; z = -z | |
166
30ebaf72170d
BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents:
158
diff
changeset
|
150 |
604 | 151 rcall I2C_TwoBytesRX_div16 ; get two bytes and divide /16 (signed) |
623 | 152 btfsc flip_screen ; 180° rotation? |
604 | 153 bra I2C_RX_accelerometer2 ; YES |
634 | 154 comf hi ; NO - 16 bit sign change |
155 negf lo ; - .... | |
156 btfsc STATUS,C ; - carry to propagate? | |
157 incf hi,F ; - YES - do it | |
166
30ebaf72170d
BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents:
158
diff
changeset
|
158 I2C_RX_accelerometer2: |
634 | 159 MOVII mpr,accel_DX ; copy result to accel_DX |
160 | |
623 | 161 rcall I2C_TwoBytesRX_div16 ; get two bytes and divide /16 (signed) |
162 btfsc flip_screen ; 180° rotation? | |
163 bra I2C_RX_accelerometer3 ; YES | |
634 | 164 comf hi ; NO - 16 bit sign change |
165 negf lo ; - ... | |
166 btfsc STATUS,C ; - carry to propagate? | |
167 incf hi,F ; YES - do it | |
168 I2C_RX_accelerometer3: | |
169 MOVII mpr,accel_DY ; copy result to accel_DY | |
170 | |
171 rcall I2C_OneByteRX ; receive 1 byte with acknowledge | |
172 movff SSP1BUF,hi ; copy data byte to hi | |
173 bsf SSP1CON2,RCEN ; enable receive mode | |
174 rcall WaitMSSP ; wait for TX to complete | |
175 ; according to data sheet there should be no master acknowledge for the last byte (accel_DZ+0)... | |
176 movff SSP1BUF,lo ; copy data byte to lo | |
177 rcall I2C_TwoBytesRX_div16_2 ; divide hi:lo/16 (signed) | |
623 | 178 comf hi ; 16 bit sign change |
634 | 179 negf lo ; ... |
623 | 180 btfsc STATUS,C ; carry to propagate? |
181 incf hi,F ; YES - do it | |
634 | 182 MOVII mpr,accel_DZ ; copy result to accel_DZ |
183 bsf SSP1CON2,PEN ; stop condition | |
643 | 184 rcall WaitMSSP ; wait for TX to complete |
185 return | |
0 | 186 |
187 | |
427 | 188 I2C_RX_accelerometer_compass1: |
623 | 189 bsf SSP1CON2,SEN ; start condition |
634 | 190 rcall WaitMSSP ; wait for TX to complete |
582 | 191 movlw 0x3C ; address |
643 | 192 movff WREG,i2c_error_vault+0 ; Store address |
634 | 193 rcall I2C_TX ; send byte |
582 | 194 movlw b'10101000' ; 0x28 with auto-increment (MSB=1) |
634 | 195 rcall I2C_TX ; send byte |
623 | 196 bsf SSP1CON2,RSEN ; repeated start condition (!) |
634 | 197 rcall WaitMSSP ; wait for TX to complete |
582 | 198 movlw 0x3D ; address |
634 | 199 |
200 I2C_RX_accelerometer_common: ; common part for compass 1,2 and 3 | |
201 rcall I2C_TX ; send byte | |
582 | 202 |
203 ; Non-flipped screen: | |
204 ; Chip orientation on the PCB requires | |
205 ; Original = Corrected | |
206 ; x = -x (Compass 1) | |
207 ; x = x (Compass 2) | |
208 ; y = -y | |
209 ; z = -z | |
210 | |
211 ; Flipped screen: | |
212 ; Chip orientation on the PCB requires | |
213 ; Original = Corrected | |
214 ; x = x (Compass 1) | |
215 ; x = -x (Compass 2) | |
216 ; y = y | |
217 ; z = -z | |
427 | 218 |
582 | 219 ; Dump the accelerator data |
634 | 220 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
582 | 221 movff SSP1BUF,lo ; accel_DX+0 |
634 | 222 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 223 movff SSP1BUF,hi ; accel_DX+1 |
582 | 224 rcall I2C_TwoBytesRX_div16_2 ; divide lo:hi/16 (signed) only |
225 btfss compass_type2 ; compass 2? | |
623 | 226 bra I2C_RX_accelerometer1_c1 ; NO - compass 1 |
582 | 227 ; compass 2 |
623 | 228 btfss flip_screen ; 180° rotation? |
229 bra I2C_RX_accelerometer2_c1 ; NO - continue with normal compass1 routines for Y and Z | |
582 | 230 ; flipped compass 2, negate x |
634 | 231 comf hi ; YES - 16 bit sign change |
232 negf lo ; - ... | |
233 btfsc STATUS,C ; - carry to propagate? | |
234 incf hi,F ; YES - do it | |
235 bra I2C_RX_accelerometer2_c1 ; - continue with normal compass1 routines for Y and Z | |
582 | 236 |
237 I2C_RX_accelerometer1_c1: | |
623 | 238 btfsc flip_screen ; 180° rotation? |
239 bra I2C_RX_accelerometer2_c1 ; YES | |
582 | 240 ; non-flipped compass 1, negate x |
634 | 241 comf hi ; NO - 16 bit sign change |
242 negf lo ; - ... | |
243 btfsc STATUS,C ; - carry to propagate? | |
244 incf hi,F ; YES - do it | |
427 | 245 I2C_RX_accelerometer2_c1: |
582 | 246 ; flipped compass 1, non-flipped compass 2 |
623 | 247 MOVII mpr,accel_DX ; copy result |
634 | 248 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
249 movff SSP1BUF,lo ; copy accel_DY+0 to lo | |
250 rcall I2C_OneByteRX ; receive 1 byte with acknowledge | |
251 movff SSP1BUF,hi ; copy accel_DY+1 to hi | |
252 rcall I2C_TwoBytesRX_div16_2 ; divide hi:lo/16 (signed) only | |
623 | 253 btfsc flip_screen ; 180° rotation? |
254 bra I2C_RX_accelerometer3_c1 ; YES | |
634 | 255 comf hi ; NO - 16 bit sign change |
256 negf lo ; - ... | |
257 btfsc STATUS,C ; - carry to propagate? | |
258 incf hi,F ; YES - do it | |
427 | 259 I2C_RX_accelerometer3_c1: |
623 | 260 MOVII mpr,accel_DY ; copy result |
634 | 261 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 262 movff SSP1BUF,lo ; accel_DZ+0 |
634 | 263 bsf SSP1CON2,RCEN ; enable receive mode |
264 rcall WaitMSSP ; wait for TX to complete | |
265 ; according to data sheet there should be no master Acknowledge for the last byte (accel_DZ+1)... | |
623 | 266 movff SSP1BUF,hi ; accel_DZ+1 |
267 bsf SSP1CON2,PEN ; stop condition | |
634 | 268 rcall WaitMSSP ; wait for TX to complete |
582 | 269 rcall I2C_TwoBytesRX_div16_2 ; divide lo:hi/16 (signed) only |
623 | 270 comf hi ; 16 bit sign change for Z |
634 | 271 negf lo ; ... |
623 | 272 btfsc STATUS,C ; carry to propagate? |
273 incf hi,F ; YES - do it | |
274 MOVII mpr,accel_DZ ; copy result | |
634 | 275 return ; done |
276 | |
582 | 277 |
560 | 278 I2C_RX_accelerometer_compass2: |
623 | 279 bsf SSP1CON2,SEN ; start condition |
634 | 280 rcall WaitMSSP ; wait for TX to complete |
582 | 281 movlw 0x32 ; address |
643 | 282 movff WREG,i2c_error_vault+0 ; Store address |
634 | 283 rcall I2C_TX ; send byte |
582 | 284 movlw b'10101000' ; 0x28 with auto-increment (MSB=1) |
634 | 285 rcall I2C_TX ; send byte |
623 | 286 bsf SSP1CON2,RSEN ; repeated start condition (!) |
634 | 287 rcall WaitMSSP ; wait for TX to complete |
582 | 288 movlw 0x33 ; address |
634 | 289 bra I2C_RX_accelerometer_common ; continue with common part |
624 | 290 |
291 I2C_RX_accelerometer_compass3: | |
634 | 292 bsf SSP1CON2,SEN ; start condition |
293 rcall WaitMSSP ; wait for TX to complete | |
628 | 294 movlw 0x3A ; address |
643 | 295 movff WREG,i2c_error_vault+0 ; Store address |
634 | 296 rcall I2C_TX ; send byte |
628 | 297 movlw 0x28 ; 0x28 (OUT_X_L_A) |
634 | 298 rcall I2C_TX ; send byte |
628 | 299 bsf SSP1CON2,RSEN ; repeated start condition (!) |
634 | 300 rcall WaitMSSP ; wait for TX to complete |
628 | 301 movlw 0x3B ; address |
634 | 302 bra I2C_RX_accelerometer_common ; continue with common part |
623 | 303 |
304 | |
305 ;----------------------------------------------------------------------------- | |
634 | 306 ; Helper Function - receive 1 Byte with Acknowledge |
307 ; | |
308 I2C_OneByteRX: | |
309 bsf SSP1CON2,RCEN ; enable receive mode | |
310 rcall WaitMSSP ; wait for TX to complete | |
311 bsf SSP1CON2,ACKEN ; send master acknowledge | |
312 bra WaitMSSP ; wait for TX to complete and return | |
313 | |
314 | |
315 ;----------------------------------------------------------------------------- | |
316 ; Read Compass | |
317 ; | |
623 | 318 IFDEF _compass |
0 | 319 |
582 | 320 global I2C_RX_compass |
0 | 321 I2C_RX_compass: |
628 | 322 btfsc compass_type3 ; compass 3 ? |
323 bra I2C_RX_compass3 ; YES | |
324 btfsc compass_type2 ; compass 2 ? | |
623 | 325 bra I2C_RX_compass2 ; YES |
628 | 326 btfsc compass_type1 ; compass 1 ? |
623 | 327 bra I2C_RX_compass1 ; YES |
628 | 328 ;bra I2C_RX_compass0 ; NO - compass 0 then |
329 | |
643 | 330 ;I2C_RX_compass0: |
623 | 331 bsf SSP1CON2,SEN ; start condition |
634 | 332 rcall WaitMSSP ; wait for TX to complete |
582 | 333 movlw 0x3C ; address |
643 | 334 movff WREG,i2c_error_vault+0 ; Store address |
634 | 335 rcall I2C_TX ; send byte |
336 movlw 0x03 ; ?? | |
337 rcall I2C_TX ; send byte | |
623 | 338 bsf SSP1CON2,PEN ; stop condition |
634 | 339 rcall WaitMSSP ; wait for TX to complete |
623 | 340 bsf SSP1CON2,SEN ; start condition |
634 | 341 rcall WaitMSSP ; wait for TX to complete |
582 | 342 movlw 0x3D ; address |
634 | 343 rcall I2C_TX ; send byte |
0 | 344 |
582 | 345 ; Compass IC sends data in following order: |
346 ; x MSB | |
347 ; x LSB | |
348 ; z MSB | |
349 ; z LSB | |
350 ; y MSB | |
351 ; y LSB | |
0 | 352 |
582 | 353 ; Non-flipped screen |
354 ; Chip orientation on the PCB requires | |
355 ; Original = Corrected | |
356 ; x = -y | |
357 ; z = z | |
358 ; y = x | |
0 | 359 |
582 | 360 ; Flipped screen |
361 ; Chip orientation on the PCB requires | |
362 ; Original = Corrected | |
363 ; x = y | |
364 ; z = z | |
365 ; y = -x | |
166
30ebaf72170d
BUGFIX: Flip compass with flipped screen, too
heinrichsweikamp
parents:
158
diff
changeset
|
366 |
634 | 367 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 368 movff SSP1BUF,compass_DY+1 ; data byte |
634 | 369 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 370 movff SSP1BUF,compass_DY+0 ; data byte |
371 btfsc flip_screen ; 180° rotation? | |
372 bra I2C_RX_compass0_2 ; NO | |
373 banksel compass_DY ; YES - flip Y | |
374 comf compass_DY+1 ; - 16 bit sign change | |
582 | 375 negf compass_DY+0 |
623 | 376 btfsc STATUS,C ; - carry to propagate? |
377 incf compass_DY+1,F ; YES - do it | |
582 | 378 banksel common |
623 | 379 I2C_RX_compass0_2: |
634 | 380 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 381 movff SSP1BUF,compass_DZ+1 ; data byte |
634 | 382 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 383 movff SSP1BUF,compass_DZ+0 ; data byte |
634 | 384 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 385 movff SSP1BUF,compass_DX+1 ; data byte |
628 | 386 bsf SSP1CON2,RCEN ; enable receive mode |
634 | 387 rcall WaitMSSP ; wait for TX to complete |
623 | 388 movff SSP1BUF,compass_DX+0 ; data byte |
389 bsf SSP1CON2,PEN ; stop condition | |
634 | 390 rcall WaitMSSP ; wait for TX to complete |
623 | 391 btfss flip_screen ; 180° rotation? |
392 return ; NO - done | |
393 banksel compass_DX ; YES - flip X | |
394 comf compass_DX+1 ; - 16 bit sign change | |
582 | 395 negf compass_DX+0 |
623 | 396 btfsc STATUS,C ; - carry to propagate? |
397 incf compass_DX+1,F ; YES - do it | |
634 | 398 banksel common ; back to bank common |
399 return ; done | |
400 | |
582 | 401 |
628 | 402 I2C_RX_compass1: ; compass type 1 |
623 | 403 bsf SSP1CON2,SEN ; start condition |
634 | 404 rcall WaitMSSP ; wait for TX to complete |
582 | 405 movlw 0x3C ; address |
643 | 406 movff WREG,i2c_error_vault+0 ; Store address |
634 | 407 rcall I2C_TX ; send byte |
582 | 408 movlw b'10001000' ; 0x08 with auto-increment (MSB=1) |
634 | 409 rcall I2C_TX ; send byte |
623 | 410 bsf SSP1CON2,RSEN ; repeated start condition (!) |
634 | 411 rcall WaitMSSP ; wait for TX to complete |
582 | 412 movlw 0x3D ; address |
634 | 413 rcall I2C_TX ; send byte |
623 | 414 ;rcall WaitMSSP ; TODO needed? (mH) |
634 | 415 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 416 movff SSP1BUF,lo ; data byte |
634 | 417 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 418 movff SSP1BUF,hi ; data byte |
634 | 419 rcall I2C_TwoBytesRX_div8 ; divide hi,lo by 8 (signed) |
420 MOVII mpr,compass_DX ; copy result | |
623 | 421 btfss flip_screen ; 180° rotation? |
422 bra I2C_RX_compass1_1 ; NO | |
423 banksel compass_DX ; YES - flip X | |
424 comf compass_DX+1 ; - 16 bit sign change | |
582 | 425 negf compass_DX+0 |
623 | 426 btfsc STATUS,C ; - carry to propagate? |
427 incf compass_DX+1,F ; YES - do it | |
582 | 428 banksel common |
427 | 429 I2C_RX_compass1_1: |
634 | 430 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 431 movff SSP1BUF,lo ; data byte |
634 | 432 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 433 movff SSP1BUF,hi ; data byte |
634 | 434 rcall I2C_TwoBytesRX_div8 ; divide hi, lo by 8 (signed) |
623 | 435 MOVII mpr,compass_DY |
436 btfss flip_screen ; 180° rotation? | |
437 bra I2C_RX_compass1_2 ; NO | |
438 banksel compass_DY ; YES - flip Y | |
439 comf compass_DY+1 ; - 16 bit sign change | |
634 | 440 negf compass_DY+0 ; - ... |
623 | 441 btfsc STATUS,C ; - carry to propagate? |
442 incf compass_DY+1,F ; YES - do it | |
443 banksel common | |
427 | 444 I2C_RX_compass1_2: |
634 | 445 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 446 movff SSP1BUF,lo ; data byte |
582 | 447 bsf SSP1CON2, RCEN ; Enable receive mode |
634 | 448 rcall WaitMSSP ; wait for TX to complete |
623 | 449 movff SSP1BUF,hi ; data byte |
634 | 450 rcall I2C_TwoBytesRX_div8 ; divide hi, lo by 8 (signed) |
451 MOVII mpr,compass_DZ ; copy result | |
643 | 452 bsf SSP1CON2,PEN ; stop condition |
453 rcall WaitMSSP | |
454 return ; done | |
455 | |
560 | 456 |
634 | 457 |
628 | 458 I2C_RX_compass2: ; compass type 2 |
623 | 459 bsf SSP1CON2,SEN ; start condition |
634 | 460 rcall WaitMSSP ; wait for TX to complete |
582 | 461 movlw 0x3C ; address |
643 | 462 movff WREG,i2c_error_vault+0 ; Store address |
634 | 463 rcall I2C_TX ; send byte |
582 | 464 movlw 0xE8 ; 0x68 with auto-increment (MSB=1) |
634 | 465 rcall I2C_TX ; send byte |
623 | 466 bsf SSP1CON2,RSEN ; repeated start condition (!) |
634 | 467 rcall WaitMSSP ; wait for TX to complete |
582 | 468 movlw 0x3D ; address |
634 | 469 rcall I2C_TX ; send byte |
628 | 470 I2C_RX_compass2_xx: ; compass 3 joins in here |
634 | 471 ; rcall WaitMSSP ; wait for TX to complete (not needed, as included in I2C_TX) |
472 rcall I2C_OneByteRX ; receive 1 byte with acknowledge | |
623 | 473 movff SSP1BUF,lo ; data byte |
634 | 474 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 475 movff SSP1BUF,hi ; data byte |
634 | 476 ; rcall I2C_TwoBytesRX_div8 ; divide hi, lo by 8 (signed) |
623 | 477 btfsc flip_screen ; 180° rotation? |
478 bra I2C_RX_compass2_1 ; YES - do nothing with X | |
479 ; NO - flip X | |
480 comf hi ; - 16 bit sign change | |
634 | 481 negf lo ; - ... |
623 | 482 btfsc STATUS,C ; - carry to propagate? |
483 incf hi,F ; YES - do it | |
582 | 484 I2C_RX_compass2_1: |
623 | 485 MOVII mpr,compass_DX |
634 | 486 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 487 movff SSP1BUF,lo ; data byte |
634 | 488 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 489 movff SSP1BUF,hi ; data byte |
634 | 490 ; rcall I2C_TwoBytesRX_div8 ; divide hi, lo by 8 (signed) |
623 | 491 btfss flip_screen ; 180° rotation? |
492 bra I2C_RX_compass2_2 ; NO - do nothing with Y | |
493 ; YES - flip Y | |
494 comf hi ; - 16 bit sign change | |
634 | 495 negf lo ; - ... |
623 | 496 btfsc STATUS,C ; - carry to propagate? |
497 incf hi,F ; YES - do it | |
498 I2C_RX_compass2_2: | |
499 MOVII mpr,compass_DY | |
634 | 500 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 501 movff SSP1BUF,lo ; data byte |
634 | 502 rcall I2C_OneByteRX ; receive 1 byte with acknowledge |
623 | 503 movff SSP1BUF,hi ; data byte |
634 | 504 ; rcall I2C_TwoBytesRX_div8 ; divide hi, lo by 8 (signed) |
505 MOVII mpr,compass_DZ ; copy result | |
623 | 506 bsf SSP1CON2,PEN ; stop condition |
643 | 507 rcall WaitMSSP |
508 return ; done | |
509 | |
582 | 510 |
634 | 511 |
628 | 512 I2C_RX_compass3: ; compass type 3 |
513 bsf SSP1CON2,SEN ; start condition | |
634 | 514 rcall WaitMSSP ; wait for TX to complete |
628 | 515 movlw 0x3C ; address |
643 | 516 movff WREG,i2c_error_vault+0 ; Store address |
634 | 517 rcall I2C_TX ; send byte |
628 | 518 movlw 0xA8 ; 0x28 with auto-increment (MSB=1) |
634 | 519 rcall I2C_TX ; send byte |
628 | 520 bsf SSP1CON2,RSEN ; repeated start condition (!) |
634 | 521 rcall WaitMSSP ; wait for TX to complete |
628 | 522 movlw 0x3D ; address |
634 | 523 rcall I2C_TX ; send byte |
628 | 524 bra I2C_RX_compass2_xx ; join with compass 2 code |
624 | 525 |
623 | 526 ENDIF ; _compass |
527 | |
634 | 528 |
623 | 529 ;----------------------------------------------------------------------------- |
634 | 530 ; Initialize Compass / Accelerometer Chip |
531 ; | |
582 | 532 global I2C_init_compass |
0 | 533 I2C_init_compass: |
634 | 534 bsf compass_enabled ; flag compass will be enabled |
535 bcf compass_type2 ; clear in preparation of chip detection | |
536 bcf compass_type3 ; ... | |
623 | 537 |
628 | 538 ; probe for compass 3 |
623 | 539 bsf SSP1CON2,SEN ; start condition |
634 | 540 rcall WaitMSSP ; wait for TX to complete |
628 | 541 movlw 0x3A ; address byte + write bit |
643 | 542 movff WREG,i2c_error_vault+0 ; Store address |
582 | 543 movwf SSP1BUF ; control byte |
634 | 544 rcall WaitMSSP ; wait for TX to complete |
545 btfss SSP1CON2,ACKSTAT ; ACK received? | |
546 bsf compass_type3 ; YES - ACK was send, compass 3 found | |
628 | 547 bsf SSP1CON2,PEN ; stop condition |
634 | 548 rcall WaitMSSP ; wait for TX to complete |
628 | 549 |
550 btfsc compass_type3 ; compass 3 found? | |
551 bra I2C_init_compass3 ; YES - initialize compass 3 | |
552 | |
553 ; probe for compass 2 | |
554 bsf SSP1CON2,SEN ; start condition | |
634 | 555 rcall WaitMSSP ; wait for TX to complete |
628 | 556 movlw 0x32 ; address byte + write bit |
643 | 557 movff WREG,i2c_error_vault+0 ; Store address |
628 | 558 movwf SSP1BUF ; control byte |
634 | 559 rcall WaitMSSP ; wait for TX to complete |
560 btfss SSP1CON2,ACKSTAT ; ACK received? | |
561 bsf compass_type2 ; YES - ACK send, compass 2 found | |
628 | 562 bsf SSP1CON2,PEN ; stop condition |
634 | 563 rcall WaitMSSP ; wait for TX to complete |
623 | 564 |
628 | 565 btfsc compass_type2 ; compass 2 found? |
566 bra I2C_init_compass2 ; YES - initialize compass 2 | |
567 | |
568 ; probe for compass 0 or 1 | |
634 | 569 bsf compass_type1 ; assume compass 1 by default |
623 | 570 bsf SSP1CON2,SEN ; start condition |
634 | 571 rcall WaitMSSP ; wait for TX to complete |
582 | 572 movlw 0x3C ; address |
643 | 573 movff WREG,i2c_error_vault+0 ; Store address |
634 | 574 rcall I2C_TX ; send byte |
575 movlw 0x0F ; ?? | |
576 rcall I2C_TX ; send byte | |
623 | 577 bsf SSP1CON2,PEN ; stop condition |
634 | 578 rcall WaitMSSP ; wait for TX to complete |
623 | 579 bsf SSP1CON2,SEN ; start condition |
634 | 580 rcall WaitMSSP ; wait for TX to complete |
582 | 581 movlw 0x3D ; address |
634 | 582 rcall I2C_TX ; send byte |
583 rcall I2C_OneByteRX ; receive 1 byte with acknowledge | |
628 | 584 movlw 0x49 ; 0x49 = compass 1 |
634 | 585 cpfseq SSP1BUF ; 0x49 received? |
586 bcf compass_type1 ; NO - clear flag for compass 1 | |
623 | 587 bsf SSP1CON2,PEN ; stop condition |
634 | 588 rcall WaitMSSP ; wait for TX to complete |
582 | 589 |
628 | 590 btfsc compass_type1 ; compass 1 found? |
591 bra I2C_init_compass1 ; YES - initialize compass 1 | |
592 ;bra I2C_init_compass0 ; NO - must be compass 0 then | |
593 | |
634 | 594 |
628 | 595 I2C_init_compass0: |
596 ; magnetic | |
623 | 597 bsf SSP1CON2,SEN ; start condition |
634 | 598 rcall WaitMSSP ; wait for TX to complete |
582 | 599 movlw 0x3C ; address |
643 | 600 movff WREG,i2c_error_vault+0 ; Store address |
634 | 601 rcall I2C_TX ; send byte |
602 movlw 0x00 ; ?? | |
603 rcall I2C_TX ; send byte | |
623 | 604 movlw b'01101000' ; ConfigA: 3 Hz, 8 samples averaged |
634 | 605 rcall I2C_TX ; send byte |
623 | 606 movff opt_compass_gain,i2c_temp1 ; 0-7 (230 LSB/Gauss to 1370 LSB/Gauss) |
634 | 607 swapf i2c_temp1,F ; |
608 comf i2c_temp1,F ; | |
609 bcf STATUS,C ; | |
610 rlcf i2c_temp1 ; | |
611 movf i2c_temp1,W ; | |
612 rcall I2C_TX ; send byte | |
613 movlw b'00000000' ; select continuous mode | |
614 rcall I2C_TX ; send byte | |
623 | 615 bsf SSP1CON2,PEN ; stop condition |
634 | 616 rcall WaitMSSP ; wait for TX to complete |
617 | |
628 | 618 ; accelerometer |
631 | 619 rcall I2C_sleep_accelerometer0 ; registers can only be changed in standby mode |
628 | 620 |
621 bsf SSP1CON2,SEN ; start condition | |
634 | 622 rcall WaitMSSP ; wait for TX to complete |
628 | 623 movlw 0x38 ; address |
643 | 624 movff WREG,i2c_error_vault+0 ; Store address |
634 | 625 rcall I2C_TX ; send byte |
628 | 626 movlw 0x0E ; XYZ_DATA_CFG |
634 | 627 rcall I2C_TX ; send byte |
628 | 628 movlw b'00000000' ; high pass filter = 0, +/- 2 g range |
634 | 629 rcall I2C_TX ; send byte |
628 | 630 bsf SSP1CON2,PEN ; stop condition |
634 | 631 rcall WaitMSSP ; wait for TX to complete |
628 | 632 bsf SSP1CON2,SEN ; start condition |
634 | 633 rcall WaitMSSP ; wait for TX to complete |
628 | 634 movlw 0x38 ; address |
634 | 635 rcall I2C_TX ; send byte |
628 | 636 movlw 0x2A ; CTRL_REG1 |
634 | 637 rcall I2C_TX ; send byte |
628 | 638 ; movlw b'00110000' ; CTRL_REG1: 160 ms data rate, standby mode |
639 movlw b'00110100' ; CTRL_REG1: 160 ms data rate, standby mode, reduced noise mode | |
634 | 640 rcall I2C_TX ; send byte |
628 | 641 movlw b'00000010' ; CTRL_REG2: high-res in active mode |
634 | 642 rcall I2C_TX ; send byte |
628 | 643 bsf SSP1CON2,PEN ; stop condition |
634 | 644 rcall WaitMSSP ; wait for TX to complete |
628 | 645 |
646 bsf SSP1CON2,SEN ; start condition | |
634 | 647 rcall WaitMSSP ; wait for TX to complete |
628 | 648 movlw 0x38 ; address |
634 | 649 rcall I2C_TX ; send byte |
628 | 650 movlw 0x2A ; CTRL_REG1 |
634 | 651 rcall I2C_TX ; send byte |
628 | 652 ; movlw b'00110001' ; CTRL_REG1: 160 ms data rate, active mode |
653 movlw b'00110101' ; CTRL_REG1: 160 ms data rate, standby mode, reduced noise mode, active Mode | |
634 | 654 rcall I2C_TX ; send byte |
628 | 655 bsf SSP1CON2,PEN ; stop condition |
643 | 656 rcall WaitMSSP ; wait for TX to complete |
657 return ; done | |
658 | |
0 | 659 |
628 | 660 |
427 | 661 I2C_init_compass1: |
623 | 662 bsf SSP1CON2,SEN ; start condition |
634 | 663 rcall WaitMSSP ; wait for TX to complete |
582 | 664 movlw 0x3C ; address |
643 | 665 movff WREG,i2c_error_vault+0 ; Store address |
634 | 666 rcall I2C_TX ; send byte |
582 | 667 movlw 0x9F ; 1F with auto-increment (MSB=1) |
634 | 668 rcall I2C_TX ; send byte |
582 | 669 movlw b'00000000' ; CTRL0 |
634 | 670 rcall I2C_TX ; send byte |
623 | 671 movlw b'00101111' ; CTRL1 (6.25 Hz, BDU=0, x,y,z = ON) |
634 | 672 rcall I2C_TX ; send byte |
623 | 673 movlw b'11000000' ; CTRL2 (50 Hz, +/- 2g) |
634 | 674 rcall I2C_TX ; send byte |
582 | 675 movlw b'00000000' ; CTRL3 |
634 | 676 rcall I2C_TX ; send byte |
582 | 677 movlw b'00000000' ; CTRL4 |
634 | 678 rcall I2C_TX ; send byte |
623 | 679 movlw b'01100100' ; CTRL5 HIGH res, 6.25 Hz |
634 | 680 rcall I2C_TX ; send byte |
623 | 681 movff opt_compass_gain,i2c_temp1 ; 0-7 (230 LSB/Gauss to 1370 LSB/Gauss) |
682 movlw b'01100000' ; CTRL6 Full scale (+/-12 Gauss -> 2730 LSB/Gauss) | |
582 | 683 dcfsnz i2c_temp1,F ; = 1? |
623 | 684 movlw b'01100000' ; YES - CTRL6 Full scale (+/-12 Gauss -> 2730 LSB/Gauss) |
582 | 685 dcfsnz i2c_temp1,F ; = 2? |
623 | 686 movlw b'01000000' ; YES - CTRL6 (+/-8 Gauss) |
582 | 687 dcfsnz i2c_temp1,F ; = 3? |
623 | 688 movlw b'01000000' ; YES - CTRL6 (+/-8 Gauss) |
582 | 689 dcfsnz i2c_temp1,F ; = 4? |
623 | 690 movlw b'00100000' ; YES - CTRL6 (+/-4 Gauss) |
582 | 691 dcfsnz i2c_temp1,F ; = 5? |
623 | 692 movlw b'00100000' ; YES - CTRL6 (+/-4 Gauss) |
582 | 693 dcfsnz i2c_temp1,F ; = 6? |
623 | 694 movlw b'00000000' ; YES - CTRL6 (+/-2 Gauss) |
582 | 695 dcfsnz i2c_temp1,F ; = 7? |
623 | 696 movlw b'00000000' ; YES - CTRL6 (+/-2 Gauss) |
634 | 697 rcall I2C_TX ; send byte |
582 | 698 movlw b'00000000' ; CTRL7 Continuous Mode |
634 | 699 rcall I2C_TX ; send byte |
623 | 700 bsf SSP1CON2,PEN ; stop condition |
643 | 701 rcall WaitMSSP ; wait for TX to complete |
702 return ; done | |
634 | 703 |
704 ; accelerometer initializes along with magnetic sensor | |
705 | |
582 | 706 |
560 | 707 I2C_init_compass2: |
628 | 708 ; magnetic |
634 | 709 bsf SSP1CON2,SEN ; start condition |
710 rcall WaitMSSP ; wait for TX to complete | |
711 movlw 0x3C ; address | |
643 | 712 movff WREG,i2c_error_vault+0 ; Store address |
634 | 713 rcall I2C_TX ; send byte |
714 movlw 0xE0 ; 0x60 with auto-increment (MSB=1) | |
715 rcall I2C_TX ; send byte | |
716 movlw b'10000000' ; CFG_REG_A_M (10Hz, Continuous) 0x60 0x00 | |
717 rcall I2C_TX ; send byte | |
718 movlw b'00000011' ; CFG_REG_B_M (low-pass filter enabled) 0x61 (set pulse is released every 63 ODR) | |
719 rcall I2C_TX ; send byte | |
720 movlw b'00010000' ; CFG_REG_C_M BDU=1 0x62 0x57 | |
721 rcall I2C_TX ; send byte | |
722 bsf SSP1CON2,PEN ; stop condition | |
723 rcall WaitMSSP ; wait for TX to complete | |
724 | |
628 | 725 ; accelerometer |
623 | 726 bsf SSP1CON2,SEN ; start condition |
634 | 727 rcall WaitMSSP ; wait for TX to complete |
628 | 728 movlw 0x32 ; address |
643 | 729 movff WREG,i2c_error_vault+0 ; Store address |
634 | 730 rcall I2C_TX ; send byte |
628 | 731 movlw 0x9F ; 1F with auto-increment (MSB=1) |
634 | 732 rcall I2C_TX ; send byte |
628 | 733 movlw b'00000000' ; TEMP_CFG_REG_A (Temp sensor off) |
634 | 734 rcall I2C_TX ; send byte |
628 | 735 movlw b'00100111' ; CTRL_REG1_A (10Hz, x,y,z = ON) |
634 | 736 rcall I2C_TX ; send byte |
628 | 737 movlw b'00000000' ; CTRL_REG2_A |
634 | 738 rcall I2C_TX ; send byte |
628 | 739 movlw b'00000000' ; CTRL_REG3_A |
634 | 740 rcall I2C_TX ; send byte |
628 | 741 movlw b'00001000' ; CTRL_REG4_A (BDU=0, +/-2g, HR=1) |
634 | 742 rcall I2C_TX ; send byte |
628 | 743 ; movlw b'00000000' ; CTRL_REG5_A |
634 | 744 ; rcall I2C_TX ; send byte |
623 | 745 bsf SSP1CON2,PEN ; stop condition |
643 | 746 rcall WaitMSSP ; wait for TX to complete |
747 return ; done | |
582 | 748 |
628 | 749 |
624 | 750 I2C_init_compass3: |
628 | 751 ; magnetic |
631 | 752 bsf SSP1CON2,SEN ; start condition |
634 | 753 rcall WaitMSSP ; wait for TX to complete |
631 | 754 movlw 0x3C ; address |
643 | 755 movff WREG,i2c_error_vault+0 ; Store address |
634 | 756 rcall I2C_TX ; send byte |
631 | 757 movlw 0xA0 ; 0x20 with auto-increment (MSB=1) |
634 | 758 rcall I2C_TX ; send byte |
645 | 759 movlw b'01110000' ; CTRL_REG1_M (10Hz, X and Y in Ultra-high performance mode) 0x20 |
634 | 760 rcall I2C_TX ; send byte |
631 | 761 movlw b'01100000' ; CTRL_REG2_M (Full-scale: +/- 16gauss) 0x21 |
634 | 762 rcall I2C_TX ; send byte |
631 | 763 movlw b'01000000' ; CTRL_REG3_M (Continuous) 0x22 |
634 | 764 rcall I2C_TX ; send byte |
645 | 765 movlw b'00001100' ; CTRL_REG4_M (Z in Ultra-high performance mode) 0x23 |
634 | 766 rcall I2C_TX ; send byte |
631 | 767 movlw b'00000000' ; CTRL_REG5_M 0x24 |
634 | 768 rcall I2C_TX ; send byte |
631 | 769 movlw b'00000000' ; CTRL_REG5_M 0x24 |
634 | 770 rcall I2C_TX ; send byte |
631 | 771 bsf SSP1CON2,PEN ; Stop condition |
634 | 772 rcall WaitMSSP ; wait for TX to complete |
631 | 773 |
628 | 774 ;accelerometer |
631 | 775 bsf SSP1CON2,SEN ; start condition |
634 | 776 rcall WaitMSSP ; wait for TX to complete |
631 | 777 movlw 0x3A ; address |
643 | 778 movff WREG,i2c_error_vault+0 ; Store address |
634 | 779 rcall I2C_TX ; send byte |
628 | 780 movlw 0x20 |
634 | 781 rcall I2C_TX ; send byte |
631 | 782 movlw b'10010111' ; CTRL_REG1_A (100Hz, x,y,z = ON, BDU=OFF) 0x20 |
634 | 783 rcall I2C_TX ; send byte |
631 | 784 movlw b'00000000' ; CTRL_REG2_A 0x21 |
634 | 785 rcall I2C_TX ; send byte |
631 | 786 movlw b'00000000' ; CTRL_REG3_A 0x22 |
634 | 787 rcall I2C_TX ; send byte |
631 | 788 movlw b'11001100' ; CTRL_REG4_A 0x23 |
634 | 789 rcall I2C_TX ; send byte |
790 bsf SSP1CON2,PEN ; stop condition | |
643 | 791 rcall WaitMSSP ; wait for TX to complete |
792 return ; done | |
628 | 793 |
643 | 794 ;----------------------------------------------------------------------------- |
795 ; Helper Function - send 1 Byte, wait for end of transmission and check ackn | |
796 ; | |
797 I2C_TX: | |
798 movwf SSP1BUF ; put byte to be sent into TX buffer | |
799 rcall WaitMSSP ; wait for TX to complete | |
800 bra I2C_Check_ACK ; check for acknowledge by receiver and return | |
582 | 801 |
634 | 802 ;----------------------------------------------------------------------------- |
803 ; Deactivate Compass / Accelerometer | |
804 ; | |
582 | 805 global I2C_sleep_compass |
0 | 806 I2C_sleep_compass: |
628 | 807 btfss compass_enabled ; compass active? |
634 | 808 return ; NO - done |
623 | 809 bcf compass_enabled |
628 | 810 btfsc compass_type3 ; compass 3 ? |
624 | 811 bra I2C_sleep_compass3 ; YES |
628 | 812 btfsc compass_type2 ; compass 2 ? |
623 | 813 bra I2C_sleep_compass2 ; YES |
628 | 814 btfsc compass_type1 ; compass 1 ? |
623 | 815 bra I2C_sleep_compass1 ; YES |
628 | 816 ;bra I2C_sleep_compass0 ; NO - must be compass 0 then |
817 | |
634 | 818 |
560 | 819 I2C_sleep_compass0: |
628 | 820 ; magnetic |
623 | 821 bsf SSP1CON2,SEN ; start condition |
634 | 822 rcall WaitMSSP ; wait for TX to complete |
582 | 823 movlw 0x3C ; address |
643 | 824 movff WREG,i2c_error_vault+0 ; Store address |
634 | 825 rcall I2C_TX ; send byte |
826 movlw 0x00 ; ?? | |
827 rcall I2C_TX ; send byte | |
582 | 828 movlw b'01101000' ; ConfigA |
634 | 829 rcall I2C_TX ; send byte |
582 | 830 movlw b'00100000' ; ConfigB |
634 | 831 rcall I2C_TX ; send byte |
623 | 832 movlw b'00000010' ; idle mode |
634 | 833 rcall I2C_TX ; send byte |
623 | 834 bsf SSP1CON2,PEN ; stop condition |
634 | 835 rcall WaitMSSP ; wait for TX to complete |
631 | 836 |
634 | 837 I2C_sleep_accelerometer0: |
628 | 838 ; accelerometer |
839 bsf SSP1CON2,SEN ; start condition | |
634 | 840 rcall WaitMSSP ; wait for TX to complete |
628 | 841 movlw 0x38 ; address |
643 | 842 movff WREG,i2c_error_vault+0 ; Store address |
634 | 843 rcall I2C_TX ; send byte |
628 | 844 movlw 0x2A ; CTRL_REG1 |
634 | 845 rcall I2C_TX ; send byte |
628 | 846 movlw b'00000000' ; standby mode |
634 | 847 rcall I2C_TX ; send byte |
628 | 848 bsf SSP1CON2,PEN ; stop condition |
643 | 849 rcall WaitMSSP ; wait for TX to complete |
850 return ; done | |
634 | 851 |
0 | 852 |
427 | 853 I2C_sleep_compass1: |
623 | 854 bsf SSP1CON2,SEN ; start condition |
634 | 855 rcall WaitMSSP ; wait for TX to complete |
582 | 856 movlw 0x3C ; address |
643 | 857 movff WREG,i2c_error_vault+0 ; Store address |
634 | 858 rcall I2C_TX ; send byte |
582 | 859 movlw 0x20 ; CTRL_REG1 |
634 | 860 rcall I2C_TX ; send byte |
623 | 861 movlw b'00000000' ; data for CTRL_REG1: acceleration sensor power-down mode |
634 | 862 rcall I2C_TX ; send byte |
623 | 863 bsf SSP1CON2,PEN ; stop condition |
634 | 864 rcall WaitMSSP ; wait for TX to complete |
623 | 865 bsf SSP1CON2,SEN ; start condition |
634 | 866 rcall WaitMSSP ; wait for TX to complete |
582 | 867 movlw 0x3C ; address |
634 | 868 rcall I2C_TX ; send byte |
582 | 869 movlw 0x26 ; CTRL_REG7 |
634 | 870 rcall I2C_TX ; send byte |
623 | 871 movlw b'00000010' ; data for CTRL_REG7: magnetic sensor power-down mode |
634 | 872 rcall I2C_TX ; send byte |
623 | 873 bsf SSP1CON2,PEN ; stop condition |
643 | 874 rcall WaitMSSP ; wait for TX to complete |
875 return ; done | |
634 | 876 |
877 ; accelerometer sleeps with magnetic sensor | |
631 | 878 |
560 | 879 |
880 I2C_sleep_compass2: | |
623 | 881 ; magnetic |
882 bsf SSP1CON2,SEN ; start condition | |
634 | 883 rcall WaitMSSP ; wait for TX to complete |
623 | 884 movlw 0x3C ; address |
643 | 885 movff WREG,i2c_error_vault+0 ; Store address |
634 | 886 rcall I2C_TX ; send byte |
623 | 887 movlw 0xE0 ; 0x60 with auto-increment (MSB=1) |
634 | 888 rcall I2C_TX ; send byte |
623 | 889 movlw b'00000011' ; CFG_REG_A_M 0x60 (idle mode)) |
634 | 890 rcall I2C_TX ; send byte |
623 | 891 movlw b'00000100' ; CFG_REG_B_M 0x61 (set pulse is released only at power-on after PD condition) |
634 | 892 rcall I2C_TX ; send byte |
623 | 893 movlw b'01010001' ; CFG_REG_C_M 0x62 |
634 | 894 rcall I2C_TX ; send byte |
623 | 895 movlw b'00000000' ; INT_CTRL_REG_M 0x63 |
634 | 896 rcall I2C_TX ; send byte |
623 | 897 bsf SSP1CON2,PEN ; stop condition |
634 | 898 rcall WaitMSSP ; wait for TX to complete |
582 | 899 |
623 | 900 ; accelerometer |
901 bsf SSP1CON2,SEN ; start condition | |
634 | 902 rcall WaitMSSP ; wait for TX to complete |
623 | 903 movlw 0x32 ; address |
643 | 904 movff WREG,i2c_error_vault+0 ; Store address |
634 | 905 rcall I2C_TX ; send byte |
623 | 906 movlw 0x9F ; 1F with auto-increment (MSB=1) |
634 | 907 rcall I2C_TX ; send byte |
623 | 908 movlw b'00000000' ; TEMP_CFG_REG_A 0x1F (temp sensor off) |
634 | 909 rcall I2C_TX ; send byte |
623 | 910 movlw b'00000000' ; CTRL_REG1_A 0x20 (all off) |
634 | 911 rcall I2C_TX ; send byte |
623 | 912 bsf SSP1CON2,PEN ; stop condition |
643 | 913 rcall WaitMSSP ; wait for TX to complete |
914 return ; done | |
634 | 915 |
623 | 916 |
628 | 917 I2C_sleep_compass3: |
918 ; magnetic | |
919 bsf SSP1CON2,SEN ; start condition | |
634 | 920 rcall WaitMSSP ; wait for TX to complete |
628 | 921 movlw 0x3C ; address |
643 | 922 movff WREG,i2c_error_vault+0 ; Store address |
634 | 923 rcall I2C_TX ; send byte |
628 | 924 movlw 0xA2 ; 0x22 with auto-increment (MSB=1) |
634 | 925 rcall I2C_TX ; send byte |
628 | 926 movlw b'01000010' ; CTRL_REG3_M (power-down) 0x22 |
634 | 927 rcall I2C_TX ; send byte |
628 | 928 bsf SSP1CON2,PEN ; stop condition |
634 | 929 rcall WaitMSSP ; wait for TX to complete |
628 | 930 |
931 ; accelerometer | |
932 bsf SSP1CON2,SEN ; start condition | |
634 | 933 rcall WaitMSSP ; wait for TX to complete |
628 | 934 movlw 0x3A ; address |
643 | 935 movff WREG,i2c_error_vault+0 ; Store address |
634 | 936 rcall I2C_TX ; send byte |
624 | 937 movlw 0x20 |
634 | 938 rcall I2C_TX ; send byte |
628 | 939 movlw b'00000000' ; CTRL_REG1_A (100Hz, x,y,z = OFF) 0x20 |
634 | 940 rcall I2C_TX ; send byte |
628 | 941 bsf SSP1CON2,PEN ; stop condition |
643 | 942 rcall WaitMSSP ; wait for TX to complete |
943 return ; done | |
634 | 944 |
0 | 945 |
634 | 946 ;----------------------------------------------------------------------------- |
947 ; Helper Function - wait for TX to complete | |
948 ; | |
615 | 949 WaitMSSP: |
643 | 950 movff SSP1BUF,i2c_error_vault+1 |
634 | 951 clrf i2c_temp1 ; wait for max 256 loops |
952 WaitMSSP_loop: | |
953 decfsz i2c_temp1,F ; decrement loop counter, timeout? | |
954 bra WaitMSSP2 ; NO | |
955 bra I2CFail ; YES | |
615 | 956 WaitMSSP2: |
634 | 957 btfss PIR1,SSP1IF ; TX completed? |
958 bra WaitMSSP_loop ; NO - loop | |
959 bcf PIR1,SSP1IF ; YES - clear TX completion flag | |
960 return ; - done | |
961 | |
615 | 962 |
634 | 963 ;----------------------------------------------------------------------------- |
650 | 964 ; Helper Function - Master NOT acknowledge and Stop |
965 ; | |
966 I2C_MasterNotAckStop: | |
967 bsf SSP1CON2,ACKDT ; set ACKDT flag | |
968 bsf SSP1CON2,ACKEN ; master NOT acknowledge | |
969 rcall WaitMSSP ; wait for TX to complete | |
970 bcf SSP1CON2,ACKDT ; reset ACKDT flag | |
971 | |
972 bsf SSP1CON2,PEN ; stop condition | |
973 bra WaitMSSP ; wait for TX to complete | |
974 | |
975 ;----------------------------------------------------------------------------- | |
634 | 976 ; Helper Function - check for Acknowledge by Receiver |
977 ; | |
978 I2C_Check_ACK: | |
628 | 979 btfss SSP1CON2,ACKSTAT ; ACK received from slave? |
634 | 980 return ; YES - done |
981 ;bra I2CFail ; NO - do some clean up | |
982 | |
983 | |
984 ;----------------------------------------------------------------------------- | |
985 ; Helper Function - clean up I2C Interface after missing Acknowledge | |
986 ; | |
987 I2CFail: | |
988 bsf active_reset_ostc_rx ; reset RX circuitry (which may be the cause for the hang up) | |
989 rcall I2CReset ; reset I2C | |
990 bcf PIR1,SSP1IF ; clear TX completion flag | |
991 bsf i2c_error_flag ; set error flag | |
992 bcf active_reset_ostc_rx ; release reset from RX circuitry | |
643 | 993 ; bcf i2c_busy_temperature |
994 ; bcf i2c_busy_pressure | |
634 | 995 return ; done |
615 | 996 |
634 | 997 |
998 ;----------------------------------------------------------------------------- | |
999 ; Helper Function - Reset I2C Module | |
1000 ; | |
1001 ; recover in case something went wrong, i.g. slave holds SDA low | |
1002 ; | |
1003 I2CReset: | |
1004 clrf SSP1CON1 ; reset entire module | |
1005 clrf SSP1CON2 ; ... | |
1006 clrf SSP1STAT ; ... | |
1007 bcf TRISC,3 ; SCL as OUTPUT | |
1008 bsf TRISC,4 ; SDA as input | |
1009 bcf PORTC,3 ; SCL = 0 | |
1010 movlw d'9' ; clock-out 9 clock cycles manually | |
1011 movwf i2c_temp1 ; ... | |
615 | 1012 I2CReset_1: |
1013 bsf PORTC,3 ; SCL = 1 | |
634 | 1014 nop ; pause for 4 CPU cycles |
1015 nop ; ... | |
1016 nop ; ... | |
1017 nop ; ... | |
615 | 1018 btfsc PORTC,4 ; SDA = 1 ? |
634 | 1019 bra I2CReset_2 ; YES - SDA has been released from slave |
615 | 1020 bcf PORTC,3 ; NO - set SCL = 0 |
634 | 1021 nop ; - pause for 2 CPU cycles |
1022 nop ; - ... | |
1023 bcf PORTC,3 ; - SCL = 0 | |
1024 nop ; - pause for 2 CPU cycles | |
1025 nop ; - ... | |
1026 decfsz i2c_temp1,F ; - clock counter, all cycles done? | |
1027 bra I2CReset_1 ; NO - loop | |
615 | 1028 I2CReset_2: |
634 | 1029 bsf TRISC,3 ; SCL as input |
1030 clrf SSP1CON1 ; setup I2C mode | |
1031 WAITMS d'10' ; wait 10 ms (reset-timeout for I2C devices) | |
1032 movlw b'00000000' ; enable slew rate control | |
1033 movwf SSP1STAT ; ... | |
1034 movlw b'00101000' ; configure I2C module | |
1035 movwf SSP1CON1 ; ... | |
1036 movlw b'00000000' ; ... | |
1037 movwf SSP1CON2 ; ... | |
643 | 1038 movlw i2c_speed_value |
634 | 1039 movwf SSP1ADD ; ... |
1040 return ; done | |
623 | 1041 |
1042 | |
634 | 1043 ;----------------------------------------------------------------------------- |
1044 ; Helper Function - Initialize Gauge IC again after an UVLO Event | |
1045 ; | |
556
dd28d4efd4d2
fix a potential issue in the battery managment
heinrichsweikamp
parents:
498
diff
changeset
|
1046 lt2942_init_again: |
623 | 1047 movlw 0x02 ; point to accumulated charge registers |
634 | 1048 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
623 | 1049 movff battery_accumulated_charge+1,SSP1BUF ; data byte |
634 | 1050 rcall WaitMSSP ; wait for TX to complete |
1051 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1052 movff battery_accumulated_charge+0,SSP1BUF ; data byte |
634 | 1053 rcall WaitMSSP ; wait for TX to complete |
1054 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1055 bsf SSP1CON2,PEN ; stop condition |
634 | 1056 rcall WaitMSSP ; wait for TX to complete |
1057 MOVII battery_accumulated_charge,sub_a ; copy result to sub_a | |
1058 ;bra lt2942_init ; and initialize again... | |
560 | 1059 |
628 | 1060 |
634 | 1061 ;----------------------------------------------------------------------------- |
1062 ; Initialize Gauge IC | |
1063 ; | |
582 | 1064 global lt2942_init |
634 | 1065 lt2942_init: |
623 | 1066 movlw 0x01 ; point to control reg B |
634 | 1067 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
623 | 1068 movlw b'11111000' ; automatic conversion every two seconds |
640 | 1069 movwf SSP1BUF ; data byte |
634 | 1070 rcall WaitMSSP ; wait for TX to complete |
1071 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1072 bsf SSP1CON2,PEN ; stop condition |
643 | 1073 rcall WaitMSSP ; wait for TX to complete |
1074 return ; done | |
113 | 1075 |
640 | 1076 ;----------------------------------------------------------------------------- |
1077 ; Sleep Gauge IC | |
1078 ; | |
1079 global lt2942_sleep | |
1080 lt2942_sleep: | |
1081 movlw 0x01 ; point to control reg B | |
1082 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC | |
1083 movlw b'00111000' ; sleep | |
1084 movwf SSP1BUF ; data byte | |
1085 rcall WaitMSSP ; wait for TX to complete | |
1086 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1087 bsf SSP1CON2,PEN ; stop condition | |
643 | 1088 rcall WaitMSSP ; wait for TX to complete |
1089 return ; done | |
628 | 1090 |
634 | 1091 ;----------------------------------------------------------------------------- |
1092 ; Read Gauge IC - Status Register | |
1093 ; | |
113 | 1094 global lt2942_get_status |
634 | 1095 lt2942_get_status: |
623 | 1096 bcf battery_gauge_available ; clear flag |
1097 movlw 0x00 ; point to status register | |
634 | 1098 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
1099 rcall I2C_RX_GAUGE ; receive byte from the LT2942 Gauge IC | |
643 | 1100 |
1101 bsf SSP1CON2,ACKDT ; set ACKDT flag | |
1102 bsf SSP1CON2,ACKEN ; master NOT acknowledge | |
1103 rcall WaitMSSP ; wait for TX to complete | |
1104 bcf SSP1CON2,ACKDT ; reset ACKDT flag | |
1105 | |
634 | 1106 movff SSP1BUF,WREG ; copy received byte to WREG |
582 | 1107 btfss WREG,7 ; 2942 found? |
623 | 1108 bsf battery_gauge_available ; YES - set flag |
1109 bsf SSP1CON2,PEN ; stop condition | |
643 | 1110 rcall WaitMSSP ; wait for TX to complete |
1111 return ; done | |
113 | 1112 |
1113 | |
634 | 1114 ;----------------------------------------------------------------------------- |
1115 ; Read Gauge IC - Voltage | |
1116 ; | |
113 | 1117 global lt2942_get_voltage |
634 | 1118 lt2942_get_voltage: |
623 | 1119 movlw 0x08 ; point to voltage registers |
634 | 1120 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
1121 rcall I2C_RX_GAUGE ; receive byte from the LT2942 Gauge IC | |
623 | 1122 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1123 rcall WaitMSSP ; wait for TX to complete |
1124 movff SSP1BUF,xA+1 ; copy received byte to xA+1 | |
1125 bsf SSP1CON2,RCEN ; enable receive mode | |
1126 rcall WaitMSSP ; wait for TX to complete | |
1127 movff SSP1BUF,xA+0 ; copy received byte to xA+0 | |
650 | 1128 |
1129 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop | |
643 | 1130 |
623 | 1131 ; convert voltage from raw value to Volt |
1132 MOVLI .6000,xB ; load conversion multiplicand into xB | |
1133 call mult16x16 ; xC = xA * xB -> multiply raw value in xA with conversion multiplicand | |
1134 ; divide by 65536 instead of 65535, introducing an error of 65536/65535 = 0.002 % | |
1135 movff xC+2,batt_voltage+0 ; divide by 65536 can easily be done by just taking the 3rd and 4th byte of the multiplication result | |
1136 movff xC+3,batt_voltage+1 ; ... | |
615 | 1137 |
623 | 1138 tstfsz batt_voltage+1 ; < 256 mV ? |
1139 return ; NO - done | |
634 | 1140 bra lt2942_init ; YES - initialize gauge and return |
623 | 1141 |
615 | 1142 |
634 | 1143 ;----------------------------------------------------------------------------- |
1144 ; Read Gauge IC - Temperature | |
1145 ; | |
623 | 1146 global lt2942_get_temperature |
1147 lt2942_get_temperature: ; read battery temperature | |
1148 movlw 0x0C ; point to temperature register | |
643 | 1149 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
1150 rcall I2C_RX_GAUGE ; receive byte from the LT2942 Gauge IC | |
623 | 1151 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1152 rcall WaitMSSP ; wait for TX to complete |
623 | 1153 movff SSP1BUF,xA+1 ; store raw temperature, high byte |
628 | 1154 bsf SSP1CON2,RCEN ; enable receive mode |
634 | 1155 rcall WaitMSSP ; wait for TX to complete |
623 | 1156 movff SSP1BUF,xA+0 ; store raw temperature, low byte |
650 | 1157 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
623 | 1158 |
1159 ; convert temperature from raw value to Kelvin | |
1160 MOVLI .6000,xB ; load conversion multiplicand into xB | |
1161 call mult16x16 ; xC = xA * xB -> multiply raw value in xA with conversion multiplicand | |
1162 ; divide by 65536 instead of 65535, introducing an error of 65536/65535 = 0.002 % | |
1163 movff xC+2,battery_temperature+0 ; divide by 65536 can easily be done by just taking the 3rd and 4th byte of the multiplication result | |
1164 movff xC+3,battery_temperature+1 ; ... | |
1165 | |
634 | 1166 ; check if battery is being charged right now |
623 | 1167 btfss cc_active ; in CC charging mode? |
1168 return ; NO - not charging, done | |
1169 | |
640 | 1170 ; ignore false readings (>125°C) |
1171 movlw LOW .3307 | |
1172 movwf sub_a+0 | |
1173 movlw HIGH .3307 | |
1174 movwf sub_a+1 | |
1175 MOVII battery_temperature, sub_b | |
1176 call cmpU16 ; sub_a - sub_b (with UNSIGNED values) | |
1177 btfsc neg_flag ; result negative? | |
1178 return ; YES - temperature > 125°C, not possible here. Skip test. | |
1179 | |
623 | 1180 ; check for over-temperature while charging |
1181 MOVLI max_battery_charge_temp,sub_a | |
1182 MOVII battery_temperature, sub_b | |
1183 call cmpU16 ; sub_a - sub_b (with UNSIGNED values) | |
1184 btfss neg_flag ; result negative? | |
1185 return ; NO - temperature <= threshold, ok, done | |
640 | 1186 return |
623 | 1187 ; YES - too hot, disable charging circuitry |
1188 bsf charge_disable ; - set charging-inhibit signal | |
1189 bcf charge_enable ; - activate charging-inhibit signal | |
1190 bsf battery_overtemp ; - flag that the battery charging over-temperature protection has tripped | |
634 | 1191 return ; - done |
623 | 1192 |
113 | 1193 |
634 | 1194 ;----------------------------------------------------------------------------- |
1195 ; Read Gauge IC - Read State of Charge | |
1196 ; | |
113 | 1197 global lt2942_get_accumulated_charge |
623 | 1198 lt2942_get_accumulated_charge: ; read accumulated charge and compute percent |
1199 movlw 0x00 ; point to status register | |
634 | 1200 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
1201 rcall I2C_RX_GAUGE ; receive byte from the LT2942 Gauge IC | |
623 | 1202 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1203 rcall WaitMSSP ; wait for TX to complete |
1204 movff SSP1BUF,gauge_status_byte ; copy received byte to gauge_status_byte | |
466 | 1205 |
634 | 1206 bsf SSP1CON2,RCEN ; enable receive mode |
1207 rcall WaitMSSP ; wait for TX to complete ; dummy read (control byte) | |
1208 movf SSP1BUF,W ; dump to WREG | |
623 | 1209 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1210 rcall WaitMSSP ; wait for TX to complete |
582 | 1211 |
634 | 1212 bsf SSP1CON2,RCEN ; enable receive mode |
1213 rcall WaitMSSP ; wait for TX to complete | |
1214 movff SSP1BUF,sub_a+1 ; copy received byte to sub_a+1 | |
623 | 1215 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1216 rcall WaitMSSP ; wait for TX to complete |
582 | 1217 |
634 | 1218 bsf SSP1CON2,RCEN ; enable receive mode |
1219 rcall WaitMSSP ; wait for TX to complete | |
1220 movff SSP1BUF,sub_a+0 ; copy received byte to sub_a+0 | |
650 | 1221 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
113 | 1222 |
623 | 1223 btfsc gauge_status_byte,0 ; UVLO event ? |
634 | 1224 rcall lt2942_init_again ; YES - do an re-initialization |
623 | 1225 MOVII sub_a,battery_accumulated_charge ; save raw value |
582 | 1226 |
634 | 1227 ; Compute batt_percent = (charge - battery_offset) / 365 |
1228 MOVII battery_offset,sub_b ; get battery offset | |
582 | 1229 call subU16 ; sub_c = sub_a - sub_b (with signed values) |
634 | 1230 clrf batt_percent ; default batt_percent to zero |
582 | 1231 btfsc neg_flag ; result negative? |
623 | 1232 bra lt2942_set_to_zero_percent ; YES - keep LT2942 at zero percent and return |
113 | 1233 |
623 | 1234 ; > zero, set batt_percent properly |
634 | 1235 MOVII sub_c,xA ; copy net charge to xA |
1236 MOVII battery_capacity,xB ; get battery capacity into xB | |
604 | 1237 call div16x16 ; xC = xA / xB with xA as remainder |
634 | 1238 movff xC+0,batt_percent ; result is battery percentage |
628 | 1239 movlw .100 ; max. value is 100 % |
1240 cpfslt batt_percent ; batt_percent < 100 % ? | |
1241 movwf batt_percent ; NO - limit to 100 % | |
631 | 1242 return ; done |
113 | 1243 |
449 | 1244 lt2942_set_to_zero_percent: |
623 | 1245 movlw 0x02 ; point to accumulated charge registers |
634 | 1246 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
1247 movff battery_offset+1,SSP1BUF ; send battery offset, high byte | |
1248 rcall WaitMSSP ; wait for TX to complete | |
1249 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1250 movff battery_offset+0,SSP1BUF ; send battery offset, low byte | |
1251 rcall WaitMSSP ; wait for TX to complete | |
1252 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1253 bsf SSP1CON2,PEN ; stop condition |
643 | 1254 rcall WaitMSSP ; wait for TX to complete |
1255 return ; done | |
449 | 1256 |
628 | 1257 |
634 | 1258 ;----------------------------------------------------------------------------- |
1259 ; Read Gauge IC - Reset Accumulating Register to 0xFFFF | |
1260 ; | |
113 | 1261 global lt2942_charge_done |
634 | 1262 lt2942_charge_done: |
623 | 1263 movlw 0x02 ; point to accumulated charge registers |
634 | 1264 rcall I2C_TX_GAUGE ; send byte to the LT2942 gauge IC |
623 | 1265 setf SSP1BUF ; data byte |
634 | 1266 rcall WaitMSSP ; wait for TX to complete |
1267 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1268 setf SSP1BUF ; data byte |
634 | 1269 rcall WaitMSSP ; wait for TX to complete |
1270 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1271 bsf SSP1CON2,PEN ; stop condition |
643 | 1272 rcall WaitMSSP ; wait for TX to complete |
1273 return ; done | |
634 | 1274 |
113 | 1275 |
634 | 1276 ;----------------------------------------------------------------------------- |
1277 ; Helper Function - send 1 Byte to the LT2942 Gauge IC | |
1278 ; | |
1279 I2C_TX_GAUGE: | |
1280 movwf i2c_temp2 ; save data byte to be sent | |
623 | 1281 bsf SSP1CON2,SEN ; start condition |
634 | 1282 rcall WaitMSSP ; wait for TX to complete |
643 | 1283 movlw 0xC8 ; address byte + Write bit |
1284 movff WREG,i2c_error_vault+0 ; Store address | |
582 | 1285 movwf SSP1BUF ; control byte |
634 | 1286 rcall WaitMSSP ; wait for TX to complete |
1287 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1288 movf i2c_temp2,W ; restore data byte to be sent | |
1289 bra I2C_TX ; send byte and return | |
582 | 1290 |
634 | 1291 |
1292 ;----------------------------------------------------------------------------- | |
1293 ; Helper Function - receive 1 Byte from the LT2942 Gauge IC | |
1294 ; | |
113 | 1295 I2C_RX_GAUGE: |
643 | 1296 bsf SSP1CON2,RSEN ; repeated start condition |
634 | 1297 rcall WaitMSSP ; wait for TX to complete |
643 | 1298 movlw 0xC9 ; address byte + Read bit |
1299 movff WREG,i2c_error_vault+0 ; Store address | |
582 | 1300 movwf SSP1BUF ; control byte |
634 | 1301 rcall WaitMSSP ; wait for TX to complete |
1302 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
628 | 1303 bsf SSP1CON2,RCEN ; enable receive mode |
634 | 1304 bra WaitMSSP ; wait for reception and return |
1305 | |
1306 | |
1307 ;----------------------------------------------------------------------------- | |
1308 ; Reset Hardware and Software Battery Gauge | |
1309 ; | |
1310 ; called from comm.asm and menu_tree.asm | |
1311 ; | |
1312 global reset_battery_gauge_and_lt2942 | |
1313 reset_battery_gauge_and_lt2942: | |
1314 btfsc battery_gauge_available ; battery gauge chip available? | |
1315 call lt2942_charge_done ; YES - reset meter to 0xFFFF | |
1316 ;bra reset_battery_gauge ; continue resetting gauge registers | |
582 | 1317 |
1318 | |
634 | 1319 ;----------------------------------------------------------------------------- |
1320 ; Reset Software Battery Gauge | |
1321 ; | |
631 | 1322 global reset_battery_gauge |
634 | 1323 reset_battery_gauge: |
1324 bsf block_battery_gauge ; suspend ISR from accessing the battery registers | |
1325 movlw .100 ; set battery level to 100% | |
1326 movwf batt_percent ; ... | |
1327 banksel battery_gauge ; select bank ISR data | |
1328 clrf battery_gauge+0 ; null the battery registers | |
1329 clrf battery_gauge+1 ; ... | |
1330 clrf battery_gauge+2 ; ... | |
1331 clrf battery_gauge+3 ; ... | |
1332 clrf battery_gauge+4 ; ... | |
1333 clrf battery_gauge+5 ; ... | |
1334 banksel common ; back to bank common | |
1335 goto eeprom_battery_gauge_write ; update battery registers in EEPROM, unblock ISR and return | |
631 | 1336 |
1337 | |
634 | 1338 |
604 | 1339 IFDEF _rx_functions |
1340 | |
634 | 1341 ;----------------------------------------------------------------------------- |
1342 ; OSTC TR - probe if TR Module available | |
1343 ; | |
560 | 1344 global I2C_probe_OSTC_rx |
1345 I2C_probe_OSTC_rx: | |
634 | 1346 bcf ostc_rx_present ; default to no TR module available |
623 | 1347 clrf WREG ; bank-safe set to zero of ... |
1348 movff WREG,rx_firmware_cur_major ; ... current TR module firmware, major | |
1349 movff WREG,rx_firmware_cur_minor ; ... current TR module firmware, minor | |
1350 movlw .5 ; max number of tries for detecting a TR module | |
634 | 1351 movwf hy ; initialize loop counter for tries |
604 | 1352 I2C_probe_OSTC_rx_1: |
623 | 1353 bsf SSP1CON2,SEN ; start condition |
634 | 1354 rcall WaitMSSP ; wait for TX to complete |
623 | 1355 movlw 0x50 ; address byte + write bit |
643 | 1356 movff WREG,i2c_error_vault+0 ; Store address |
582 | 1357 movwf SSP1BUF ; control byte |
634 | 1358 rcall WaitMSSP ; wait for TX to complete |
623 | 1359 btfss SSP1CON2,ACKSTAT ; ACK received? |
1360 bsf ostc_rx_present ; YES - TR module detected | |
1361 bsf SSP1CON2,PEN ; stop condition | |
634 | 1362 rcall WaitMSSP ; wait for TX to complete |
623 | 1363 btfss ostc_rx_present ; was a TR module detected? |
1364 return ; NO - done | |
634 | 1365 |
1366 WAITMS .1 ; wait 1 ms | |
623 | 1367 bsf SSP1CON2,SEN ; start condition |
634 | 1368 rcall WaitMSSP ; wait for TX to complete |
623 | 1369 movlw 0x50 ; address byte + write bit |
582 | 1370 movwf SSP1BUF ; control byte |
634 | 1371 rcall WaitMSSP ; wait for TX to complete |
1372 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1373 movlw 0x1B ; command: get firmware | |
1374 movwf SSP1BUF ; send command | |
1375 rcall WaitMSSP ; wait for TX to complete | |
1376 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1377 bsf SSP1CON2,PEN ; stop condition |
634 | 1378 rcall WaitMSSP ; wait for TX to complete |
1379 | |
1380 WAITMS .1 ; wait 1 ms | |
1381 | |
623 | 1382 bsf SSP1CON2,SEN ; start condition |
634 | 1383 rcall WaitMSSP ; wait for TX to complete |
623 | 1384 movlw 0x51 ; address byte + Read bit |
582 | 1385 movwf SSP1BUF ; control byte |
634 | 1386 rcall WaitMSSP ; wait for TX to complete |
623 | 1387 bsf SSP1CON2,RCEN ; enable receive mode |
634 | 1388 rcall WaitMSSP ; wait for TX to complete |
623 | 1389 movff SSP1BUF,rx_firmware_cur_major ; store as firmware version, major |
1390 bsf SSP1CON2,ACKEN ; master acknowledge | |
634 | 1391 rcall WaitMSSP ; wait for TX to complete |
582 | 1392 |
560 | 1393 ; last byte in read from RX circuity always with a NACK! |
623 | 1394 bsf SSP1CON2,RCEN ; enable receive mode |
634 | 1395 rcall WaitMSSP ; wait for TX to complete |
623 | 1396 movff SSP1BUF,rx_firmware_cur_minor ; store as firmware version, minor |
650 | 1397 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
643 | 1398 |
623 | 1399 ; wait for TR module becoming ready |
634 | 1400 movff rx_firmware_cur_minor,i2c_temp1 ; copy minor firmware version to bank common |
623 | 1401 movlw .147 ; code for not ready, minor |
1402 cpfseq i2c_temp1 ; equal? | |
634 | 1403 return ; NO - TR module ready, done |
1404 movff rx_firmware_cur_major,i2c_temp1 ; YES - copy major firmware version to bank common | |
623 | 1405 movlw .27 ; - code for not ready, major |
1406 cpfseq i2c_temp1 ; - equal? | |
634 | 1407 return ; NO - TR module ready, done |
623 | 1408 bsf active_reset_ostc_rx ; YES - apply reset to TR module |
1409 WAITMS .5 ; - wait 5 ms | |
1410 bcf active_reset_ostc_rx ; - release reset | |
1411 WAITMS .250 ; - wait for 250 ms | |
1412 WAITMS .250 ; - wait another 250 ms | |
1413 decfsz hy,F ; - decrement counter for number of tries, became zero? | |
1414 bra I2C_probe_OSTC_rx_1 ; - NO - try again | |
1415 bcf ostc_rx_present ; - YES - something is wrong, flag TR module as not available | |
634 | 1416 return ; - done |
582 | 1417 |
560 | 1418 |
634 | 1419 ;----------------------------------------------------------------------------- |
1420 ; OSTC TR - get Tank Data | |
1421 ; | |
560 | 1422 global I2C_get_tankdata |
1423 I2C_get_tankdata: | |
623 | 1424 bsf SSP1CON2,SEN ; start condition |
634 | 1425 rcall WaitMSSP ; wait for TX to complete |
623 | 1426 movlw 0x50 ; address byte + write bit |
643 | 1427 movff WREG,i2c_error_vault+0 ; Store address |
582 | 1428 movwf SSP1BUF ; control byte |
634 | 1429 rcall WaitMSSP ; wait for TX to complete |
1430 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1431 movlw 0x1E ; read buffer2 (48 bytes) |
1432 movwf SSP1BUF ; data byte | |
634 | 1433 rcall WaitMSSP ; wait for TX to complete |
1434 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1435 bsf SSP1CON2,PEN ; stop condition |
634 | 1436 rcall WaitMSSP ; wait for TX to complete |
1437 | |
1438 WAITMS .1 ; wait 1 ms | |
1439 | |
560 | 1440 ; read 48 bytes |
623 | 1441 bsf SSP1CON2,SEN ; start condition |
634 | 1442 rcall WaitMSSP ; wait for TX to complete |
623 | 1443 movlw 0x51 ; address byte + read bit |
582 | 1444 movwf SSP1BUF ; control byte |
634 | 1445 rcall WaitMSSP ; wait for TX to complete |
1446 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
582 | 1447 movlw .47 ; 47 with ACK + 1 w/o ACK |
634 | 1448 movwf i2c_temp2 ; initialize loop counter |
1449 lfsr FSR2,rx_buffer ; point to start of rx data buffer | |
560 | 1450 I2C_get_tankdata_loop_read: |
634 | 1451 bsf SSP1CON2,RCEN ; enable receive mode |
1452 rcall WaitMSSP ; wait for TX to complete | |
1453 movff SSP1BUF,POSTINC2 ; copy received byte to the rx buffer | |
1454 bcf SSP1CON2,ACKDT ; reset ACKDT flag | |
623 | 1455 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1456 rcall WaitMSSP ; wait for TX to complete |
1457 decfsz i2c_temp2,F ; decrement loop counter, done? | |
1458 bra I2C_get_tankdata_loop_read ; NO - loop | |
1459 ; read last byte without ACK | |
1460 bsf SSP1CON2,RCEN ; enable receive mode | |
1461 rcall WaitMSSP ; wait for TX to complete | |
1462 movff SSP1BUF,POSTINC2 ; copy received byte to the rx buffer | |
650 | 1463 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
643 | 1464 return ; done |
1465 | |
582 | 1466 |
1467 | |
634 | 1468 ;----------------------------------------------------------------------------- |
1469 ; OSTC TR - Firmware Update | |
1470 ; | |
628 | 1471 IFDEF _rx_update |
1472 | |
560 | 1473 global I2C_update_OSTC_rx |
623 | 1474 I2C_update_OSTC_rx: ; transfer 64 byte to RX co-processor |
1475 ; setup for write | |
582 | 1476 bcf i2c_error_flag ; clear error flag |
623 | 1477 lfsr FSR2,buffer ; initialize pointer to send buffer used for verify |
1478 movlw .64 ; initialize loop counter: 64 byte with ACK | |
1479 movwf i2c_temp2 ; ... | |
1480 ; address write | |
1481 bsf SSP1CON2,SEN ; start condition | |
634 | 1482 rcall WaitMSSP ; wait for TX to complete |
623 | 1483 movlw 0x50 ; address byte + write bit |
643 | 1484 movff WREG,i2c_error_vault+0 ; Store address |
582 | 1485 movwf SSP1BUF ; control byte |
634 | 1486 rcall WaitMSSP ; wait for TX to complete |
1487 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1488 ; write 64 bytes |
1489 I2C_update_OSTC_loop: | |
1490 TBLRD*+ ; read a byte from program memory | |
1491 movff TABLAT,POSTINC2 ; copy to send buffer | |
1492 movff TABLAT,SSP1BUF ; copy to I2C data buffer | |
634 | 1493 rcall WaitMSSP ; wait for TX to complete |
1494 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1495 decfsz i2c_temp2,F ;decrement loop counter, became zero? |
1496 bra I2C_update_OSTC_loop ; NO - loop | |
1497 bsf SSP1CON2,PEN ; YES - stop condition | |
634 | 1498 rcall WaitMSSP ; - wait for TX to complete |
623 | 1499 WAITMS .1 ; - wait another 1 ms |
1500 ; setup for read-back | |
1501 lfsr FSR2,buffer ; reset pointer to begin of send buffer | |
1502 movlw .63 ; initialize loop counter: 63 byte with ACK + 1 w/o ACK | |
634 | 1503 movwf i2c_temp2 ; ... |
623 | 1504 ; address read-back |
1505 bsf SSP1CON2,SEN ; start condition | |
634 | 1506 rcall WaitMSSP ; wait for TX to complete |
623 | 1507 movlw 0x51 ; address byte + read bit |
582 | 1508 movwf SSP1BUF ; control byte |
634 | 1509 rcall WaitMSSP ; wait for TX to complete |
1510 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1511 ; read-back 64 bytes |
560 | 1512 I2C_update_OSTC_loop_read: |
623 | 1513 bsf SSP1CON2,RCEN ; enable receive mode |
634 | 1514 rcall WaitMSSP ; wait for TX to complete |
1515 movf SSP1BUF,W ; copy received byte to WREG | |
623 | 1516 cpfseq POSTINC2 ; compare read-back byte with sent byte, equal? |
1517 bsf i2c_error_flag ; NO - not equal, set error flag | |
634 | 1518 bcf SSP1CON2,ACKDT ; reset ACKDT flag |
623 | 1519 bsf SSP1CON2,ACKEN ; master acknowledge |
634 | 1520 rcall WaitMSSP ; wait for TX to complete |
623 | 1521 decfsz i2c_temp2,F ; decrement loop counter, became zero? |
1522 bra I2C_update_OSTC_loop_read ; NO - loop | |
560 | 1523 ; 1 w/o ACK |
623 | 1524 bsf SSP1CON2, RCEN ; YES - enable receive mode |
634 | 1525 rcall WaitMSSP ; - wait for TX to complete |
623 | 1526 movf SSP1BUF,W ; - get 64th byte |
1527 cpfseq POSTINC2 ; - compare read-back byte with sent byte, equal? | |
1528 bsf i2c_error_flag ; NO - not equal, set error flag | |
650 | 1529 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
560 | 1530 WAITMS .1 |
623 | 1531 ; address commit |
1532 bsf SSP1CON2,SEN ; start condition | |
634 | 1533 rcall WaitMSSP ; wait for TX to complete |
623 | 1534 movlw 0x50 ; address byte + write bit |
582 | 1535 movwf SSP1BUF ; control byte |
634 | 1536 rcall WaitMSSP ; wait for TX to complete |
1537 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1538 movlw 0x1F ; write command |
1539 movwf SSP1BUF ; data byte | |
634 | 1540 rcall WaitMSSP ; wait for TX to complete |
1541 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
623 | 1542 bsf SSP1CON2,PEN ; stop condition |
634 | 1543 rcall WaitMSSP ; wait for TX to complete |
623 | 1544 WAITMS .5 ; required waiting time |
1545 ; error check | |
1546 btfss i2c_error_flag ; did an error occur? | |
1547 retlw .0 ; NO - data transfered successfully | |
1548 retlw .255 ; YES - error in data transfer occurred | |
582 | 1549 |
628 | 1550 ENDIF ; _rx_update |
1551 | |
1552 ENDIF ; _rx_functions | |
643 | 1553 |
634 | 1554 ;----------------------------------------------------------------------------- |
643 | 1555 ; Probe for MS5837 sensor |
1556 ; | |
1557 global I2C_probe_pressure_sensor ; Do not call from ISR! | |
1558 I2C_probe_pressure_sensor: ; Probe the type of sensor, set/clear press_sensor_type | |
1559 bcf press_sensor_type ; MS5541 as default | |
1560 bsf SSP1CON2,SEN ; start condition | |
1561 rcall WaitMSSP ; wait for TX to complete | |
1562 movlw 0xEC ; address byte + write bit | |
1563 movff WREG,i2c_error_vault+0 ; Store address | |
1564 movwf SSP1BUF ; control byte | |
1565 rcall WaitMSSP ; wait for TX to complete | |
1566 btfss SSP1CON2,ACKSTAT ; ACK received? | |
1567 bsf press_sensor_type ; MS5837 sensor found | |
1568 bsf SSP1CON2,PEN ; stop condition | |
1569 rcall WaitMSSP ; wait for TX to complete | |
1570 return | |
1571 | |
1572 ;-------------------------------------------------------------------- | |
1573 ; Helper Function - get the calibration parameter from # WREG address | |
1574 ; Do not call from ISR! | |
1575 I2C_get_calib_parameter: | |
1576 movwf lo ; store address | |
1577 bsf SSP1CON2,SEN ; start condition | |
1578 rcall WaitMSSP ; wait for TX to complete | |
1579 movlw 0xEC ; address byte + write bit | |
1580 movff WREG,i2c_error_vault+0 ; Store address | |
1581 rcall I2C_TX ; send byte | |
1582 movf lo,W ; Point to calibration register | |
1583 rcall I2C_TX ; send byte | |
1584 bsf SSP1CON2,PEN ; stop condition | |
1585 rcall WaitMSSP ; wait for TX to complete | |
1586 | |
1587 bsf SSP1CON2,SEN ; start condition | |
1588 rcall WaitMSSP ; wait for TX to complete | |
1589 movlw 0xED ; address byte + read bit | |
1590 movff WREG,i2c_error_vault+0 ; Store address | |
1591 movwf SSP1BUF ; control byte | |
1592 rcall WaitMSSP ; wait for TX to complete | |
1593 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1594 bsf SSP1CON2,RCEN ; enable receive mode | |
1595 rcall WaitMSSP ; wait for reception and return | |
1596 movff SSP1BUF,dMSB ; High byte | |
1597 bsf SSP1CON2,ACKEN ; master acknowledge | |
1598 rcall WaitMSSP ; wait for TX to complete | |
1599 | |
1600 bsf SSP1CON2,RCEN ; enable receive mode | |
1601 rcall WaitMSSP ; wait for reception | |
1602 movff SSP1BUF,dLSB ; Low byte | |
1603 ; bsf SSP1CON2,ACKDT ; set ACKDT flag | |
1604 bsf SSP1CON2,ACKEN ; master acknowledge | |
1605 rcall WaitMSSP ; wait for TX to complete | |
1606 ; bcf SSP1CON2,ACKDT ; reset ACKDT flag | |
1607 bsf SSP1CON2,PEN ; stop condition | |
1608 bra WaitMSSP ; wait for TX to complete (And return) | |
1609 | |
1610 | |
1611 global I2C_get_calib_MS5837 ; Do not call from ISR! | |
1612 I2C_get_calib_MS5837: | |
1613 banksel common | |
1614 ; first, send a reset | |
1615 bsf SSP1CON2,SEN ; start condition | |
1616 rcall WaitMSSP ; wait for TX to complete | |
1617 movlw 0xEC ; address byte + write bit | |
1618 movff WREG,i2c_error_vault+0 ; Store address | |
1619 rcall I2C_TX ; send byte | |
1620 movlw 0x1E | |
1621 rcall I2C_TX ; send byte | |
1622 bsf SSP1CON2,PEN ; stop condition | |
1623 rcall WaitMSSP ; wait for TX to complete | |
1624 WAITMS .5 ; 2.8ms according to datasheet | |
1625 | |
1626 movlw 0xA2 ; Point to C1 | |
1627 rcall I2C_get_calib_parameter ; returns calibration value in lo and hi | |
1628 movff dLSB,C1+0 ; store calib | |
1629 movff dMSB,C1+1 ; store calib | |
623 | 1630 |
643 | 1631 movlw 0xA4 ; Point to C2 |
1632 rcall I2C_get_calib_parameter ; returns calibration value in lo and hi | |
1633 movff dLSB,C2+0 ; store calib | |
1634 movff dMSB,C2+1 ; store calib | |
1635 | |
1636 movlw 0xA6 ; Point to C3 | |
1637 rcall I2C_get_calib_parameter ; returns calibration value in lo and hi | |
1638 movff dLSB,C3+0 ; store calib | |
1639 movff dMSB,C3+1 ; store calib | |
1640 | |
1641 movlw 0xA8 ; Point to C4 | |
1642 rcall I2C_get_calib_parameter ; returns calibration value in lo and hi | |
1643 movff dLSB,C4+0 ; store calib | |
1644 movff dMSB,C4+1 ; store calib | |
1645 | |
1646 movlw 0xAA ; Point to C5 | |
1647 rcall I2C_get_calib_parameter ; returns calibration value in lo and hi | |
1648 movff dLSB,C5+0 ; store calib | |
1649 movff dMSB,C5+1 ; store calib | |
1650 | |
1651 movlw 0xAC ; Point to C6 | |
1652 rcall I2C_get_calib_parameter ; returns calibration value in lo and hi | |
1653 movff dLSB,C6+0 ; store calib | |
1654 movff dMSB,C6+1 ; store calib | |
1655 | |
1656 return | |
1657 | |
1658 global I2C_get_press_val_MS5837 | |
1659 I2C_get_press_val_MS5837: | |
1660 bsf SSP1CON2,SEN ; start condition | |
1661 rcall WaitMSSP ; wait for TX to complete | |
1662 movlw 0xEC ; address byte + write bit | |
1663 movff WREG,i2c_error_vault+0 ; Store address | |
1664 rcall I2C_TX ; send byte | |
1665 movlw 0x00 ; command byte (0x00, read ADC) | |
1666 rcall I2C_TX ; send byte | |
1667 | |
1668 bsf SSP1CON2,RSEN ; repeated start condition | |
1669 rcall WaitMSSP ; wait for TX to complete | |
1670 movlw 0xED ; address byte + read bit | |
1671 movff WREG,i2c_error_vault+0 ; Store address | |
1672 movwf SSP1BUF ; control byte | |
1673 rcall WaitMSSP ; wait for TX to complete | |
1674 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1675 | |
650 | 1676 bsf i2c_busy_pressure ; reading new pressure |
643 | 1677 bsf SSP1CON2,RCEN ; enable receive mode |
1678 rcall WaitMSSP ; wait for reception and return | |
1679 movff SSP1BUF,D1_buffer+2 ; Upper byte | |
1680 bsf SSP1CON2,ACKEN ; master acknowledge | |
1681 rcall WaitMSSP ; wait for TX to complete | |
1682 bsf SSP1CON2,RCEN ; enable receive mode | |
1683 rcall WaitMSSP ; wait for reception | |
1684 movff SSP1BUF,D1_buffer+1 ; high byte | |
1685 bsf SSP1CON2,ACKEN ; master acknowledge | |
1686 rcall WaitMSSP ; wait for TX to complete | |
1687 bsf SSP1CON2,RCEN ; enable receive mode | |
1688 rcall WaitMSSP ; wait for reception | |
1689 movff SSP1BUF,D1_buffer+0 ; Low byte | |
1690 | |
650 | 1691 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
1692 bcf i2c_busy_pressure ; reading new pressure done. | |
1693 | |
643 | 1694 ; Start temperature measurement |
1695 bsf SSP1CON2,SEN ; start condition | |
1696 rcall WaitMSSP ; wait for TX to complete | |
1697 movlw 0xEC ; address byte + write bit | |
1698 rcall I2C_TX ; send byte | |
1699 movlw 0x58 ; OSR=4096, type=D2 | |
1700 rcall I2C_TX ; send byte | |
1701 bsf SSP1CON2,PEN ; stop condition | |
1702 rcall WaitMSSP ; wait for TX to complete | |
1703 bcf ms5837_state ; =0: result of temperature will be in the ADC | |
1704 return | |
1705 | |
1706 global I2C_get_temp_val_MS5837 | |
1707 I2C_get_temp_val_MS5837: | |
1708 bsf SSP1CON2,SEN ; start condition | |
1709 rcall WaitMSSP ; wait for TX to complete | |
1710 movlw 0xEC ; address byte + write bit | |
1711 movff WREG,i2c_error_vault+0 ; Store address | |
1712 rcall I2C_TX ; send byte | |
1713 movlw 0x00 ; command byte (0x00, read ADC) | |
1714 rcall I2C_TX ; send byte | |
1715 | |
1716 bsf SSP1CON2,RSEN ; repeated start condition | |
1717 rcall WaitMSSP ; wait for TX to complete | |
1718 movlw 0xED ; address byte + read bit | |
1719 movff WREG,i2c_error_vault+0 ; Store address | |
1720 movwf SSP1BUF ; control byte | |
1721 rcall WaitMSSP ; wait for TX to complete | |
1722 rcall I2C_Check_ACK ; check for acknowledge by receiver | |
1723 | |
650 | 1724 bsf i2c_busy_temperature ; reading new temperature |
643 | 1725 bsf SSP1CON2,RCEN ; enable receive mode |
1726 rcall WaitMSSP ; wait for reception and return | |
1727 movff SSP1BUF,D2_buffer+2 ; Upper byte | |
1728 bsf SSP1CON2,ACKEN ; master acknowledge | |
1729 rcall WaitMSSP ; wait for TX to complete | |
1730 bsf SSP1CON2,RCEN ; enable receive mode | |
1731 rcall WaitMSSP ; wait for reception | |
1732 movff SSP1BUF,D2_buffer+1 ; high byte | |
1733 bsf SSP1CON2,ACKEN ; master acknowledge | |
1734 rcall WaitMSSP ; wait for TX to complete | |
1735 bsf SSP1CON2,RCEN ; enable receive mode | |
1736 rcall WaitMSSP ; wait for reception | |
1737 movff SSP1BUF,D2_buffer+0 ; Low byte | |
1738 | |
650 | 1739 rcall I2C_MasterNotAckStop ; Master NOT acknowledge and Stop |
1740 bcf i2c_busy_temperature ; reading new temperature done. | |
1741 | |
643 | 1742 ; Start pressure measurement |
1743 bsf SSP1CON2,SEN ; start condition | |
1744 rcall WaitMSSP ; wait for TX to complete | |
1745 movlw 0xEC ; address byte + write bit | |
1746 rcall I2C_TX ; send byte | |
1747 movlw 0x48 ; OSR=4096, type=D1 | |
1748 rcall I2C_TX ; send byte | |
1749 bsf SSP1CON2,PEN ; stop condition | |
1750 rcall WaitMSSP ; wait for TX to complete | |
1751 bsf ms5837_state ; =0: result of pressure will be in the ADC | |
1752 return | |
1753 | |
1754 | |
1755 ;----------------------------------------------------------------------------- | |
1756 ; I2C Bus error checker | |
1757 ; | |
1758 global check_i2c_error | |
1759 extern TFT_message_i2c_error | |
1760 check_i2c_error: | |
1761 btfss i2c_error_flag | |
1762 return | |
1763 incf message_counter,F ; increase message counter | |
1764 goto TFT_message_i2c_error ; show message for battery low (battery percent) and return | |
1765 | |
1766 ;----------------------------------------------------------------------------- | |
582 | 1767 END |