edits to standard MMA8451Q lib

Dependents:   KL05_accel-test

Fork of MMA8451Q by Emilio Monti

MMA8451Q.cpp

Committer:
angusg
Date:
2015-11-19
Revision:
6:aca483d0fa8d
Parent:
5:4e7dd6eb7829

File content as of revision 6:aca483d0fa8d:

/* Copyright (c) 2010-2011 mbed.org, MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
* and associated documentation files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "MMA8451Q.h"

#define REG_WHO_AM_I      0x0D //13
#define REG_CTRL_REG_1    0x2A
#define REG_CTRL_REG_2    0x2B
#define REG_OUT_X_MSB     0x01
#define REG_OUT_Y_MSB     0x03
#define REG_OUT_Z_MSB     0x05

#define XYZ_DATA_CFG      0x0E
#define HP_FILTER_CUTOFF  0x0F
#define PL_CFG            0x11 //configure 
#define TRANSIENT_COUNT   0x20

#define UINT14_MAX        16383

//#define LNOISE

MMA8451Q::MMA8451Q(PinName sda, PinName scl, int addr) : m_i2c(sda, scl), m_addr(addr) {  

#ifdef LNOISE

    // LNOISE
    uint8_t dataExt[3];
    uint8_t data[2] = {REG_CTRL_REG_1, 0x0c}; // 0x1100 = DR0 & LNOISE (2.5ms b/w samples)
    writeRegs(data, 2);    
    
    /*
    data[0] = REG_CTRL_REG_2;
    data[1] = 0x02;                 // Set MODS[1:0] to 0b10 for High Res mode
    writeRegs(data, 3); 
    */
    
    // activate the peripheral
    dataExt[0] = HP_FILTER_CUTOFF;
    dataExt[1] = 0x00;                 
    dataExt[2] = 0x01;                 /* Set the Pulse_LPF_EN */
    writeRegs(dataExt, 3);      
  
    // activate the peripheral
    data[1] = 0x01;   
    writeRegs(data, 2);    
    
#else

    // activate
    //uint8_t data[2] = {REG_CTRL_REG_1, 0x01};
    //writeRegs(data, 2);   
    
    // activate
    uint8_t data[2] = {REG_CTRL_REG_1, 0x08}; 
    writeRegs(data, 2);   
    
    // activate the peripheral
    data[1] = 0x01;   
    writeRegs(data, 2); 
    
    
    
#endif
      
}

MMA8451Q::~MMA8451Q() { }

uint8_t MMA8451Q::getWhoAmI() {
    uint8_t who_am_i = 0;
    readRegs(REG_WHO_AM_I, &who_am_i, 1);
    return who_am_i;
}

float MMA8451Q::getAccX() {
    return (float(getAccAxis(REG_OUT_X_MSB))/4096.0);
}

float MMA8451Q::getAccY() {
    return (float(getAccAxis(REG_OUT_Y_MSB))/4096.0);
}

float MMA8451Q::getAccZ() {
    return (float(getAccAxis(REG_OUT_Z_MSB))/4096.0);
}

void MMA8451Q::getAccAllAxis(float * res) {
    res[0] = getAccX();
    res[1] = getAccY();
    res[2] = getAccZ();
}

int16_t MMA8451Q::getAccAxis(uint8_t addr) {
    int16_t acc;
    uint8_t res[2];
    readRegs(addr, res, 2);

    acc = (res[0] << 6) | (res[1] >> 2);
    if (acc > UINT14_MAX/2)
        acc -= UINT14_MAX;

    return acc;
}

void MMA8451Q::readRegs(int addr, uint8_t * data, int len) {
    char t[1] = {addr};
    m_i2c.write(m_addr, t, 1, true);
    m_i2c.read(m_addr, (char *)data, len);
}

void MMA8451Q::writeRegs(uint8_t * data, int len) {
    m_i2c.write(m_addr, (char *)data, len);
}