-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathMA330.cpp
146 lines (134 loc) · 4.15 KB
/
MA330.cpp
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
#include "MA330.h"
MA330::MA330(SPISettings settings, int nCS) : settings(settings), nCS(nCS) {
};
MA330::~MA330() {
};
void MA330::init(SPIClass* _spi) {
spi = _spi;
if (nCS >= 0) {
pinMode(nCS, OUTPUT);
digitalWrite(nCS, HIGH);
}
};
float MA330::getCurrentAngle() {
return (readRawAngle() * _2PI)/MA330_CPR;
}; // angle in radians, return current value
uint16_t MA330::readRawAngle() {
uint16_t angle = transfer16(0x0000);
return angle;
}; // 9-14bit angle value
uint16_t MA330::getZero() {
uint16_t result = readRegister(MA330_REG_ZERO_POSITION_MSB)<<8;
result |= readRegister(MA330_REG_ZERO_POSITION_LSB);
return result;
};
uint8_t MA330::getBiasCurrentTrimming() {
return readRegister(MA330_REG_BCT);
};
bool MA330::isBiasCurrrentTrimmingX() {
return (readRegister(MA330_REG_ET) & 0x01)==0x01;
};
bool MA330::isBiasCurrrentTrimmingY() {
return (readRegister(MA330_REG_ET) & 0x02)==0x02;
};
uint16_t MA330::getPulsesPerTurn() {
uint16_t result = readRegister(MA330_REG_ILIP_PPT_LSB)>>6;
result |= ((uint16_t)readRegister(MA330_REG_PPT_MSB))<<2;
return result+1;
};
uint8_t MA330::getIndexLength() {
return (readRegister(MA330_REG_ILIP_PPT_LSB)>>2)&0x0F;
};
uint8_t MA330::getNumberPolePairs() {
return (readRegister(MA330_REG_NPP)>>5)&0x07;;
};
uint8_t MA330::getRotationDirection() {
return (readRegister(MA330_REG_RD)>>7);
};
uint8_t MA330::getFieldStrengthHighThreshold() {
return (readRegister(MA330_REG_MGLT_MGHT)>>2)&0x07;
};
uint8_t MA330::getFieldStrengthLowThreshold() {
return (readRegister(MA330_REG_MGLT_MGHT)>>5)&0x07;
};
uint8_t MA330::getFilterWidth() {
return readRegister(MA330_REG_FW);
};
uint8_t MA330::getHysteresis() {
return readRegister(MA330_REG_HYS);
};
FieldStrength MA330::getFieldStrength() {
return (FieldStrength)(readRegister(MA330_REG_MGH_MGL)>>6);
};
void MA330::setZero(uint16_t value) {
writeRegister(MA330_REG_ZERO_POSITION_MSB, value>>8);
writeRegister(MA330_REG_ZERO_POSITION_LSB, value&0x00FF);
};
void MA330::setBiasCurrentTrimming(uint8_t value) {
writeRegister(MA330_REG_BCT, value);
};
void MA330::setBiasCurrrentTrimmingEnabled(bool Xenabled, bool Yenabled) {
uint8_t val = Xenabled ? 0x01 : 0x00;
val |= (Yenabled ? 0x02 : 0x00);
writeRegister(MA330_REG_ET, val);
};
void MA330::setPulsesPerTurn(uint16_t value) {
uint16_t pptVal = value - 1;
writeRegister(MA330_REG_PPT_MSB, pptVal>>2);
uint8_t val = readRegister(MA330_REG_ILIP_PPT_LSB);
val &= 0x3F;
val |= (pptVal&0x03)<<6;
writeRegister(MA330_REG_ILIP_PPT_LSB, val);
};
void MA330::setIndexLength(uint8_t value) {
uint8_t val = readRegister(MA330_REG_ILIP_PPT_LSB);
val &= 0xC0;
val |= ((value<<2)&0x3F);
writeRegister(MA330_REG_ILIP_PPT_LSB, val);
};
void MA330::setNumberPolePairs(uint8_t value) {
uint8_t val = readRegister(MA330_REG_NPP);
val &= 0x1F;
val |= (value<<5);
writeRegister(MA330_REG_NPP, val);
};
void MA330::setRotationDirection(uint8_t value) {
if (value==0)
writeRegister(MA330_REG_RD, 0x00);
else
writeRegister(MA330_REG_RD, 0x80);
};
void MA330::setFilterWidth(uint8_t value) {
writeRegister(MA330_REG_FW, value);
};
void MA330::setHysteresis(uint8_t value) {
writeRegister(MA330_REG_HYS, value);
};
void MA330::setFieldStrengthThresholds(uint8_t high, uint8_t low) {
uint8_t val = (low<<5) | (high<<2);
writeRegister(MA330_REG_MGLT_MGHT, val);
};
uint16_t MA330::transfer16(uint16_t outValue) {
spi->beginTransaction(settings);
if (nCS >= 0)
digitalWrite(nCS, LOW);
uint16_t value = spi->transfer16(outValue);
if (nCS >= 0)
digitalWrite(nCS, HIGH);
spi->endTransaction();
return value;
};
uint8_t MA330::readRegister(uint8_t reg) {
uint16_t cmd = 0x4000 | ((reg&0x001F)<<8);
uint16_t value = transfer16(cmd);
delayMicroseconds(1);
value = transfer16(0x0000);
return value>>8;
};
uint8_t MA330::writeRegister(uint8_t reg, uint8_t value) {
uint16_t cmd = 0x8000 | ((reg&0x1F)<<8) | value;
uint16_t result = transfer16(cmd);
delay(20); // 20ms delay required
result = transfer16(0x0000);
return result>>8;
};