2015-08-12 10:53:41 +00:00
|
|
|
/**
|
|
|
|
* Class definition for MicroBit Accelerometer.
|
|
|
|
*
|
|
|
|
* Represents an implementation of the Freescale MMA8653 3 axis accelerometer
|
|
|
|
* Also includes basic data caching and on demand activation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MicroBit.h"
|
|
|
|
|
2015-09-08 22:16:15 +00:00
|
|
|
/**
|
|
|
|
* Configures the accelerometer for G range and sample rate defined
|
|
|
|
* in this object. The nearest values are chosen to those defined
|
|
|
|
* that are supported by the hardware. The instance variables are then
|
|
|
|
* updated to reflect reality.
|
2015-10-25 21:51:33 +00:00
|
|
|
*
|
|
|
|
* @return MICROBIT_OK on success, MICROBIT_I2C_ERROR if the accelerometer could not be configured.
|
2015-09-08 22:16:15 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int MicroBitAccelerometer::configure()
|
2015-09-08 22:16:15 +00:00
|
|
|
{
|
|
|
|
const MMA8653SampleRangeConfig *actualSampleRange;
|
|
|
|
const MMA8653SampleRateConfig *actualSampleRate;
|
2015-10-25 21:51:33 +00:00
|
|
|
int result;
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// First find the nearest sample rate to that specified.
|
|
|
|
actualSampleRate = &MMA8653SampleRate[MMA8653_SAMPLE_RATES-1];
|
|
|
|
for (int i=MMA8653_SAMPLE_RATES-1; i>=0; i--)
|
|
|
|
{
|
|
|
|
if(MMA8653SampleRate[i].sample_period < this->samplePeriod * 1000)
|
|
|
|
break;
|
|
|
|
|
|
|
|
actualSampleRate = &MMA8653SampleRate[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now find the nearest sample range to that specified.
|
|
|
|
actualSampleRange = &MMA8653SampleRange[MMA8653_SAMPLE_RANGES-1];
|
|
|
|
for (int i=MMA8653_SAMPLE_RANGES-1; i>=0; i--)
|
|
|
|
{
|
|
|
|
if(MMA8653SampleRange[i].sample_range < this->sampleRange)
|
|
|
|
break;
|
|
|
|
|
|
|
|
actualSampleRange = &MMA8653SampleRange[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// OK, we have the correct data. Update our local state.
|
|
|
|
this->samplePeriod = actualSampleRate->sample_period / 1000;
|
|
|
|
this->sampleRange = actualSampleRange->sample_range;
|
|
|
|
|
|
|
|
// Now configure the accelerometer accordingly.
|
|
|
|
// First place the device into standby mode, so it can be configured.
|
2015-10-25 21:51:33 +00:00
|
|
|
result = writeCommand(MMA8653_CTRL_REG1, 0x00);
|
|
|
|
if (result != 0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// Enable high precisiosn mode. This consumes a bit more power, but still only 184 uA!
|
2015-10-25 21:51:33 +00:00
|
|
|
result = writeCommand(MMA8653_CTRL_REG2, 0x10);
|
|
|
|
if (result != 0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// Enable the INT1 interrupt pin.
|
2015-10-25 21:51:33 +00:00
|
|
|
result = writeCommand(MMA8653_CTRL_REG4, 0x01);
|
|
|
|
if (result != 0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// Select the DATA_READY event source to be routed to INT1
|
2015-10-25 21:51:33 +00:00
|
|
|
result = writeCommand(MMA8653_CTRL_REG5, 0x01);
|
|
|
|
if (result != 0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// Configure for the selected g range.
|
2015-10-25 21:51:33 +00:00
|
|
|
result = writeCommand(MMA8653_XYZ_DATA_CFG, actualSampleRange->xyz_data_cfg);
|
|
|
|
if (result != 0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// Bring the device back online, with 10bit wide samples at the requested frequency.
|
2015-10-25 21:51:33 +00:00
|
|
|
result = writeCommand(MMA8653_CTRL_REG1, actualSampleRate->ctrl_reg1 | 0x01);
|
|
|
|
if (result != 0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
|
|
|
|
|
|
|
return MICROBIT_OK;
|
2015-09-08 22:16:15 +00:00
|
|
|
}
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
/**
|
|
|
|
* Issues a standard, 2 byte I2C command write to the accelerometer.
|
|
|
|
* Blocks the calling thread until complete.
|
|
|
|
*
|
|
|
|
* @param reg The address of the register to write to.
|
|
|
|
* @param value The value to write.
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return MICROBIT_OK on success, MICROBIT_I2C_ERROR if the the write request failed.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int MicroBitAccelerometer::writeCommand(uint8_t reg, uint8_t value)
|
2015-08-12 10:53:41 +00:00
|
|
|
{
|
|
|
|
uint8_t command[2];
|
|
|
|
command[0] = reg;
|
|
|
|
command[1] = value;
|
|
|
|
|
2015-10-25 21:51:33 +00:00
|
|
|
return uBit.i2c.write(address, (const char *)command, 2);
|
2015-08-12 10:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Issues a read command into the specified buffer.
|
|
|
|
* Blocks the calling thread until complete.
|
|
|
|
*
|
|
|
|
* @param reg The address of the register to access.
|
|
|
|
* @param buffer Memory area to read the data into.
|
|
|
|
* @param length The number of bytes to read.
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return MICROBIT_OK on success, MICROBIT_INVALID_PARAMETER or MICROBIT_I2C_ERROR if the the read request failed.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int MicroBitAccelerometer::readCommand(uint8_t reg, uint8_t* buffer, int length)
|
2015-08-12 10:53:41 +00:00
|
|
|
{
|
2015-10-25 21:51:33 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
if (buffer == NULL || length <= 0 )
|
|
|
|
return MICROBIT_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
result = uBit.i2c.write(address, (const char *)®, 1, true);
|
|
|
|
if (result !=0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
|
|
|
|
|
|
|
result = uBit.i2c.read(address, (char *)buffer, length);
|
|
|
|
if (result !=0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
|
|
|
|
|
|
|
return MICROBIT_OK;
|
2015-08-12 10:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
* Create an accelerometer representation with the given ID.
|
|
|
|
* @param id the ID of the new object.
|
|
|
|
* @param address the default base address of the accelerometer.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* accelerometer(MICROBIT_ID_ACCELEROMETER, MMA8653_DEFAULT_ADDR)
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
MicroBitAccelerometer::MicroBitAccelerometer(uint16_t id, uint16_t address) : sample(), int1(MICROBIT_PIN_ACCEL_DATA_READY)
|
|
|
|
{
|
|
|
|
// Store our identifiers.
|
|
|
|
this->id = id;
|
|
|
|
this->address = address;
|
|
|
|
|
2015-09-08 22:16:15 +00:00
|
|
|
// Update our internal state for 50Hz at +/- 2g (50Hz has a period af 20ms).
|
|
|
|
this->samplePeriod = 20;
|
|
|
|
this->sampleRange = 2;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-09-08 22:16:15 +00:00
|
|
|
// Configure and enable the accelerometer.
|
2015-10-25 21:51:33 +00:00
|
|
|
if (this->configure() == MICROBIT_OK)
|
|
|
|
uBit.flags |= MICROBIT_FLAG_ACCELEROMETER_RUNNING;
|
2015-08-12 10:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to determine the 8 bit ID from the accelerometer.
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return the 8 bit ID returned by the accelerometer, or MICROBIT_I2C_ERROR if the request fails.
|
2015-08-12 10:53:41 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.whoAmI();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::whoAmI()
|
|
|
|
{
|
|
|
|
uint8_t data;
|
2015-10-25 21:51:33 +00:00
|
|
|
int result;
|
|
|
|
|
|
|
|
result = readCommand(MMA8653_WHOAMI, &data, 1);
|
|
|
|
if (result !=0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
return (int)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the acceleration data from the accelerometer, and stores it in our buffer.
|
|
|
|
* This is called by the tick() member function, if the interrupt is set!
|
2015-10-25 21:51:33 +00:00
|
|
|
*
|
|
|
|
* @return MICROBIT_OK on success, MICROBIT_I2C_ERROR is the read request fails.
|
2015-08-12 10:53:41 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int MicroBitAccelerometer::update()
|
2015-08-12 10:53:41 +00:00
|
|
|
{
|
|
|
|
int8_t data[6];
|
2015-10-25 21:51:33 +00:00
|
|
|
int result;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
2015-10-25 21:51:33 +00:00
|
|
|
result = readCommand(MMA8653_OUT_X_MSB, (uint8_t *)data, 6);
|
|
|
|
if (result !=0)
|
|
|
|
return MICROBIT_I2C_ERROR;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
// read MSB values...
|
|
|
|
sample.x = data[0];
|
|
|
|
sample.y = data[2];
|
|
|
|
sample.z = data[4];
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
// Normalize the data in the 0..1024 range.
|
|
|
|
sample.x *= 8;
|
|
|
|
sample.y *= 8;
|
|
|
|
sample.z *= 8;
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
// Invert the x and y axes, so that the reference frame aligns with micro:bit expectations
|
|
|
|
sample.x = -sample.x;
|
|
|
|
sample.y = -sample.y;
|
|
|
|
|
2015-09-02 11:42:24 +00:00
|
|
|
#if CONFIG_ENABLED(USE_ACCEL_LSB)
|
2015-08-12 10:53:41 +00:00
|
|
|
// Add in LSB values.
|
|
|
|
sample.x += (data[1] / 64);
|
|
|
|
sample.y += (data[3] / 64);
|
|
|
|
sample.z += (data[5] / 64);
|
|
|
|
#endif
|
|
|
|
|
2015-09-08 22:16:15 +00:00
|
|
|
// Scale into millig (approx!)
|
|
|
|
sample.x *= this->sampleRange;
|
|
|
|
sample.y *= this->sampleRange;
|
|
|
|
sample.z *= this->sampleRange;
|
|
|
|
|
2015-09-19 20:00:38 +00:00
|
|
|
// Indicate that a new sample is available
|
|
|
|
MicroBitEvent e(id, MICROBIT_ACCELEROMETER_EVT_DATA_UPDATE);
|
2015-10-25 21:51:33 +00:00
|
|
|
|
|
|
|
return MICROBIT_OK;
|
2015-08-12 10:53:41 +00:00
|
|
|
};
|
|
|
|
|
2015-09-08 22:16:15 +00:00
|
|
|
/**
|
|
|
|
* Attempts to set the sample rate of the accelerometer to the specified value (in ms).
|
|
|
|
* n.b. the requested rate may not be possible on the hardware. In this case, the
|
|
|
|
* nearest lower rate is chosen.
|
|
|
|
* @param period the requested time between samples, in milliseconds.
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return MICROBIT_OK on success, MICROBIT_I2C_ERROR is the request fails.
|
2015-09-08 22:16:15 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int MicroBitAccelerometer::setPeriod(int period)
|
2015-09-08 22:16:15 +00:00
|
|
|
{
|
|
|
|
this->samplePeriod = period;
|
2015-10-25 21:51:33 +00:00
|
|
|
return this->configure();
|
2015-09-08 22:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the currently configured sample rate of the accelerometer.
|
|
|
|
* @return The time between samples, in milliseconds.
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::getPeriod()
|
|
|
|
{
|
|
|
|
return (int)samplePeriod;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to set the sample range of the accelerometer to the specified value (in g).
|
|
|
|
* n.b. the requested range may not be possible on the hardware. In this case, the
|
|
|
|
* nearest lower rate is chosen.
|
|
|
|
* @param range The requested sample range of samples, in g.
|
2015-10-25 21:51:33 +00:00
|
|
|
* @return MICROBIT_OK on success, MICROBIT_I2C_ERROR is the request fails.
|
2015-09-08 22:16:15 +00:00
|
|
|
*/
|
2015-10-25 21:51:33 +00:00
|
|
|
int MicroBitAccelerometer::setRange(int range)
|
2015-09-08 22:16:15 +00:00
|
|
|
{
|
|
|
|
this->sampleRange = range;
|
2015-10-25 21:51:33 +00:00
|
|
|
return this->configure();
|
2015-09-08 22:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the currently configured sample range of the accelerometer.
|
|
|
|
* @return The sample range, in g.
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::getRange()
|
|
|
|
{
|
|
|
|
return (int)sampleRange;
|
|
|
|
}
|
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
/**
|
|
|
|
* Reads the X axis value of the latest update from the accelerometer.
|
|
|
|
* Currently limited to +/- 2g
|
|
|
|
* @return The force measured in the X axis, in milli-g.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getX();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::getX()
|
|
|
|
{
|
|
|
|
return sample.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the Y axis value of the latest update from the accelerometer.
|
|
|
|
* Currently limited to +/- 2g
|
|
|
|
* @return The force measured in the Y axis, in milli-g.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getY();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::getY()
|
|
|
|
{
|
|
|
|
return sample.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the Z axis value of the latest update from the accelerometer.
|
|
|
|
* Currently limited to +/- 2g
|
|
|
|
* @return The force measured in the Z axis, in milli-g.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* @code
|
|
|
|
* uBit.accelerometer.getZ();
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::getZ()
|
|
|
|
{
|
|
|
|
return sample.z;
|
|
|
|
}
|
2015-09-19 20:00:38 +00:00
|
|
|
|
2015-08-12 10:53:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* periodic callback from MicroBit clock.
|
|
|
|
* Check if any data is ready for reading by checking the interrupt flag on the accelerometer
|
|
|
|
*/
|
|
|
|
void MicroBitAccelerometer::idleTick()
|
|
|
|
{
|
|
|
|
// Poll interrupt line from accelerometer.
|
|
|
|
// n.b. Default is Active LO. Interrupt is cleared in data read.
|
2015-09-08 22:16:15 +00:00
|
|
|
//
|
2015-08-12 10:53:41 +00:00
|
|
|
if(!int1)
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns 0 or 1. 1 indicates data is waiting to be read, zero means data is not ready to be read.
|
|
|
|
*/
|
|
|
|
int MicroBitAccelerometer::isIdleCallbackNeeded()
|
|
|
|
{
|
|
|
|
return !int1;
|
|
|
|
}
|
2015-09-08 22:16:15 +00:00
|
|
|
|
|
|
|
const MMA8653SampleRangeConfig MMA8653SampleRange[MMA8653_SAMPLE_RANGES] = {
|
|
|
|
{2, 0},
|
|
|
|
{4, 1},
|
|
|
|
{8, 2}
|
|
|
|
};
|
|
|
|
|
|
|
|
const MMA8653SampleRateConfig MMA8653SampleRate[MMA8653_SAMPLE_RATES] = {
|
|
|
|
{1250, 0x00},
|
|
|
|
{2500, 0x08},
|
|
|
|
{5000, 0x10},
|
|
|
|
{10000, 0x18},
|
|
|
|
{20000, 0x20},
|
|
|
|
{80000, 0x28},
|
|
|
|
{160000, 0x30},
|
|
|
|
{640000, 0x38}
|
|
|
|
};
|