-
Notifications
You must be signed in to change notification settings - Fork 44
/
ams-enc.c
324 lines (284 loc) · 9.85 KB
/
ams-enc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/*
* Copyright (c) 2012-2013, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the University of California, Berkeley nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*
* Austria Microsystems AS5048B magnetic encoder I2C Interface
*
* by Duncan Haldane
*
* v.1.0
*
* Revisions:
* Duncan Haldane 2012-05-15 Initial release
* Andrew Pullin 2012-07-05 Ported to use i2c_driver module
* Ronald S. Fearing 2012-12-31 Return fractional value, and put all
* encoder reading in this file, encoders
* 0-3 instead of 1-4 for simplicity.
*
* Notes:
* - This module uses the I2C1 port for communicating with the AMS
* encoder chips
*/
#include "i2c_driver.h"
#include "i2c.h"
#include "ams-enc.h"
#include "utils.h"
#include "settings.h"
#define LSB2ENCDEG 0.0219
#define ENC_I2C_CHAN 1 //Encoder is on I2C channel 1
unsigned int encAddr[8];
EncObj encPos[NUM_ENC];
#define AMS_ENC_IDLE 0
#define AMS_ENC_WRITE_START 1
#define AMS_ENC_WRITE_ADDR 2
#define AMS_ENC_WRITE_REG 3
#define AMS_ENC_WRITE_STOP 4
#define AMS_ENC_READ_START 5
#define AMS_ENC_READ_ADDR 6
#define AMS_ENC_READ_0 7
#define AMS_ENC_READ_0_ACK 8
#define AMS_ENC_READ_1 9
#define AMS_ENC_READ_1_NACK 10
#define AMS_ENC_READ_STOP 11
#define AMS_ENC_ANGLE_REG 0xFE
volatile unsigned char state = AMS_ENC_IDLE;
volatile unsigned char encoder_number = 0;
volatile unsigned int encoder_new_pos;
/*-----------------------------------------------------------------------------
* Declaration of static functions
-----------------------------------------------------------------------------*/
static inline void encoderSetupPeripheral(void);
/*-----------------------------------------------------------------------------
* Public functions
-----------------------------------------------------------------------------*/
void amsEncoderSetup(void) {
// Need delay for encoders to be ready
delay_ms(100);
// LSB = R/W* .
// 1. send slave <a2:a1>, a0=W (write reg address)
// 2. send slave register address <a7:a0>,
// 3. send slave <a2:a1>, a0=R (read reg data)
// 4. read slave data <a7:a0>
encAddr[0] = 0b10000001; //Encoder 0 rd;wr A1, A2 = low
encAddr[1] = 0b10000000; // write
encAddr[2] = 0b10000011; //Encoder 1 rd;wr A2 = low, A1 = high
encAddr[3] = 0b10000010;
encAddr[4] = 0b10000101; //Encoder 2 rd;wr A2 = high, A1 = low
encAddr[5] = 0b10000100;
encAddr[6] = 0b10000111; //Encoder 3 rd;wr A2, A1 = high
encAddr[7] = 0b10000110;
encoder_number = 0;
encoder_new_pos = 0;
state = AMS_ENC_IDLE;
//setup I2C port I2C1
encoderSetupPeripheral();
amsEncoderResetPos();
}
void amsEncoderResetPos(void) {
// initialize structure
int i;
for(i = 0; i< NUM_ENC; i++) {
//amsEncoderBlockingRead(i); // get initial values w/o setting oticks
//encPos[i].offset = encPos[i].pos; // initialize encoder
encPos[i].calibPos = 0;
encPos[i].oticks = 0; // set revolution counter to 0
}
//Set up offset
//TODO: maybe move these to NVM somewhere in the flash, rather than project defines
#ifdef AMS_ENC_OFFSET_0
encPos[0].offset = AMS_ENC_OFFSET_0;
#else
encPos[0].offset = 0;
#endif
#ifdef AMS_ENC_OFFSET_1
encPos[1].offset = AMS_ENC_OFFSET_1;
#else
encPos[1].offset = 0;
#endif
#ifdef AMS_ENC_OFFSET_2
encPos[2].offset = AMS_ENC_OFFSET_2;
#else
encPos[2].offset = 0;
#endif
#ifdef AMS_ENC_OFFSET_3
encPos[3].offset = AMS_ENC_OFFSET_3;
#else
encPos[3].offset = 0;
#endif
}
/*****************************************************************************
* Function Name : encoderSetupPeripheral
* Description : Setup I2C for encoders
* Parameters : None
* Return Value : None
*****************************************************************************/
static inline void encoderSetupPeripheral(void) { //same setup as ITG3200 for compatibility
unsigned int I2C1CONvalue, I2C1BRGvalue;
I2C1CONvalue = I2C1_ON & I2C1_IDLE_CON & I2C1_CLK_HLD &
I2C1_IPMI_DIS & I2C1_7BIT_ADD & I2C1_SLW_DIS &
I2C1_SM_DIS & I2C1_GCALL_DIS & I2C1_STR_DIS &
I2C1_NACK & I2C1_ACK_DIS & I2C1_RCV_DIS &
I2C1_STOP_DIS & I2C1_RESTART_DIS & I2C1_START_DIS &
MI2C1_INT_PRI_6;
// BRG = Fcy(1/Fscl - 1/10000000)-1, Fscl = 909KHz
I2C1BRGvalue = 40;
OpenI2C1(I2C1CONvalue, I2C1BRGvalue);
SetPriorityIntMI2C1(6);
_MI2C1IF = 0;
EnableIntMI2C1;
}
// Blocking encoder read. This will fail if the encoders are in a weird state
void amsEncoderBlockingRead(unsigned char num) {
unsigned char enc_data[2];
CRITICAL_SECTION_START
i2cStartTx(ENC_I2C_CHAN); //Setup to burst read both registers, 0xFE and 0xFF
i2cSendByte(ENC_I2C_CHAN, encAddr[2*num+1]); //Write address
i2cSendByte(ENC_I2C_CHAN, AMS_ENC_ANGLE_REG);
i2cEndTx(ENC_I2C_CHAN);
i2cStartTx(ENC_I2C_CHAN);
i2cSendByte(ENC_I2C_CHAN, encAddr[2*num]); //Read address
i2cReadString(1,2,enc_data,10000);
i2cEndTx(ENC_I2C_CHAN);
IdleI2C1();
_MI2C1IF = 0;
CRITICAL_SECTION_END
amsEncoderUpdatePos(num,((enc_data[1] << 6)+(enc_data[0] & 0x3F)));
}
//kick off asynchrounous read of both encoders
unsigned char amsEncoderStartAsyncRead(void) {
if(state == AMS_ENC_IDLE) {
encoder_number = 0;
encoder_new_pos = 0;
state = AMS_ENC_WRITE_START;
I2C1CONbits.SEN = 1;
return 1;
} else {
return 0;
}
}
void __attribute__((interrupt, no_auto_psv)) _MI2C1Interrupt(void) {
//LED_3 = 1;
switch(state) {
case AMS_ENC_WRITE_START:
I2C1TRN = encAddr[2*encoder_number+1];
state = AMS_ENC_WRITE_ADDR;
break;
case AMS_ENC_WRITE_ADDR:
I2C1TRN = AMS_ENC_ANGLE_REG;
state = AMS_ENC_WRITE_REG;
break;
case AMS_ENC_WRITE_REG:
I2C1CONbits.RSEN = 1;
state = AMS_ENC_READ_START;
break;
case AMS_ENC_READ_START:
I2C1TRN = encAddr[2*encoder_number];
state = AMS_ENC_READ_ADDR;
break;
case AMS_ENC_READ_ADDR:
I2C1CONbits.RCEN = 1;
state = AMS_ENC_READ_0;
break;
case AMS_ENC_READ_0:
encoder_new_pos = I2C1RCV <<6;
I2C1CONbits.ACKDT = 0;
I2C1CONbits.ACKEN = 1;
state = AMS_ENC_READ_0_ACK;
break;
case AMS_ENC_READ_0_ACK:
I2C1CONbits.RCEN = 1;
state = AMS_ENC_READ_1;
break;
case AMS_ENC_READ_1:
encoder_new_pos |= (I2C1RCV & 0x3F);
I2C1CONbits.ACKDT = 1;
I2C1CONbits.ACKEN = 1;
state = AMS_ENC_READ_1_NACK;
break;
case AMS_ENC_READ_1_NACK:
I2C1CONbits.PEN = 1;
state = AMS_ENC_READ_STOP;
break;
case AMS_ENC_READ_STOP:
amsEncoderUpdatePos(encoder_number,encoder_new_pos);
if(++encoder_number < NUM_ENC) {
I2C1CONbits.SEN = 1;
state = AMS_ENC_WRITE_START;
} else {
state = AMS_ENC_IDLE;
}
break;
default:
state = AMS_ENC_IDLE;
break;
}
//LED_3 = 0;
_MI2C1IF = 0;
}
inline void amsEncoderUpdatePos(unsigned char encoder_number, unsigned int new_pos) {
unsigned int prev_pos = encPos[encoder_number].pos;
if (new_pos > prev_pos) {
if( (new_pos-prev_pos) > MAX_HALL/2 ) {//Subtract one Rev count if diff > 180
encPos[encoder_number].oticks--;
}
} else {
if( (prev_pos-new_pos) > MAX_HALL/2 ) {//Add one Rev count if -diff > 180
encPos[encoder_number].oticks++;
}
}
encPos[encoder_number].pos = new_pos;
}
float amsEncoderGetFloatPos(unsigned char num) {
float pos;
pos = encPos[num].pos* LSB2ENCDEG; //calculate Float
return pos;
}
int amsEncoderGetPos(unsigned char num) {
if(num < NUM_ENC){
return encPos[num].pos;
}
else{
return 0;
}
}
long amsEncoderGetOticks(unsigned char num) {
if(num < NUM_ENC){
return encPos[num].oticks;
}
else{
return 0;
}
}
unsigned int amsEncoderGetOffset(unsigned char num){
if(num < NUM_ENC){
return encPos[num].offset;
}
else{
return 0;
}
}