KBrat-SSD645-HW-7_1

Fork of MMA8451Q8 by Stanley Cohen

Committer:
tisbrat
Date:
Mon Mar 06 17:39:43 2017 +0000
Revision:
8:65da360cf088
Parent:
7:7812354ef684
Revised

Who changed what in which revision?

UserRevisionLine numberNew contents of line
samux 1:d2630136d51e 1 /* Copyright (c) 2010-2011 mbed.org, MIT License
samux 1:d2630136d51e 2 *
samux 1:d2630136d51e 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
samux 1:d2630136d51e 4 * and associated documentation files (the "Software"), to deal in the Software without
samux 1:d2630136d51e 5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
samux 1:d2630136d51e 6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
samux 1:d2630136d51e 7 * Software is furnished to do so, subject to the following conditions:
samux 1:d2630136d51e 8 *
samux 1:d2630136d51e 9 * The above copyright notice and this permission notice shall be included in all copies or
samux 1:d2630136d51e 10 * substantial portions of the Software.
samux 1:d2630136d51e 11 *
samux 1:d2630136d51e 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
samux 1:d2630136d51e 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
samux 1:d2630136d51e 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
samux 1:d2630136d51e 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
samux 1:d2630136d51e 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
samux 1:d2630136d51e 17 */
scohennm 5:be042e8c1756 18 // Modify to change full scale gravity range 141207 sc
samux 1:d2630136d51e 19
scohennm 5:be042e8c1756 20
scohennm 5:be042e8c1756 21 #include "MMA8451Q8.h"
emilmont 0:6149091f755d 22
samux 1:d2630136d51e 23 #define REG_WHO_AM_I 0x0D
samux 1:d2630136d51e 24 #define REG_CTRL_REG_1 0x2A
emilmont 0:6149091f755d 25 #define REG_OUT_X_MSB 0x01
emilmont 0:6149091f755d 26 #define REG_OUT_Y_MSB 0x03
emilmont 0:6149091f755d 27 #define REG_OUT_Z_MSB 0x05
scohennm 5:be042e8c1756 28 #define XYZ_DATA_CFG 0x0E
emilmont 0:6149091f755d 29
samux 1:d2630136d51e 30 #define UINT14_MAX 16383
emilmont 0:6149091f755d 31
scohennm 5:be042e8c1756 32 #define MAX_2G 0x00
scohennm 5:be042e8c1756 33 #define MAX_4G 0x01
scohennm 6:c29386367dcf 34 #define MAX_8G 0x02
scohennm 5:be042e8c1756 35
scohennm 5:be042e8c1756 36 #define GSCALING 1024.0
scohennm 5:be042e8c1756 37
emilmont 0:6149091f755d 38 MMA8451Q::MMA8451Q(PinName sda, PinName scl, int addr) : m_i2c(sda, scl), m_addr(addr) {
emilmont 0:6149091f755d 39 // activate the peripheral
emilmont 0:6149091f755d 40 uint8_t data[2] = {REG_CTRL_REG_1, 0x01};
samux 1:d2630136d51e 41 writeRegs(data, 2);
emilmont 0:6149091f755d 42 }
emilmont 0:6149091f755d 43
emilmont 0:6149091f755d 44 MMA8451Q::~MMA8451Q() { }
emilmont 0:6149091f755d 45
emilmont 0:6149091f755d 46 uint8_t MMA8451Q::getWhoAmI() {
emilmont 0:6149091f755d 47 uint8_t who_am_i = 0;
samux 1:d2630136d51e 48 readRegs(REG_WHO_AM_I, &who_am_i, 1);
emilmont 0:6149091f755d 49 return who_am_i;
emilmont 0:6149091f755d 50 }
tisbrat 8:65da360cf088 51
tisbrat 8:65da360cf088 52 void MMA8451Q::standbyMode(void){
tisbrat 8:65da360cf088 53 byte n;
tisbrat 8:65da360cf088 54 uint8_t data[2] = {REG_CTRL_REG_1, 0x00};
tisbrat 8:65da360cf088 55 n= readRegs(data, 2);
tisbrat 8:65da360cf088 56 data[0] = XYZ_DATA_CFG;
tisbrat 8:65da360cf088 57 data[1] = MAX_8G;
tisbrat 8:65da360cf088 58 writeRegs(data, 2 , n);
tisbrat 8:65da360cf088 59
tisbrat 8:65da360cf088 60 }
tisbrat 8:65da360cf088 61
tisbrat 8:65da360cf088 62 void MMA8451Q::activeMode(){
tisbrat 8:65da360cf088 63 data[0] = REG_CTRL_REG_1;
tisbrat 8:65da360cf088 64 data[1] = 0x01;
tisbrat 8:65da360cf088 65 writeRegs(data, 2, (readRegs(data, 2)));
tisbrat 8:65da360cf088 66 }
tisbrat 8:65da360cf088 67
scohennm 5:be042e8c1756 68 void MMA8451Q::setGLimit() {
tisbrat 8:65da360cf088 69 standbyMode();
tisbrat 8:65da360cf088 70 activeMode();
tisbrat 8:65da360cf088 71 }
tisbrat 8:65da360cf088 72
tisbrat 8:65da360cf088 73 /*void MMA8451Q::setGLimit() {
scohennm 5:be042e8c1756 74 uint8_t data[2] = {REG_CTRL_REG_1, 0x00};
scohennm 5:be042e8c1756 75 writeRegs(data, 2); // put in standby
scohennm 5:be042e8c1756 76 data[0] = XYZ_DATA_CFG;
scohennm 7:7812354ef684 77 data[1] = MAX_8G;
scohennm 5:be042e8c1756 78 writeRegs(data, 2);// change g limit
scohennm 5:be042e8c1756 79 data[0] = REG_CTRL_REG_1;
scohennm 5:be042e8c1756 80 data[1] = 0x01;
scohennm 5:be042e8c1756 81 writeRegs(data, 2); // make active
tisbrat 8:65da360cf088 82 }*/
emilmont 0:6149091f755d 83
chris 3:db7126dbd63f 84 float MMA8451Q::getAccX() {
scohennm 5:be042e8c1756 85 return (float(getAccAxis(REG_OUT_X_MSB))/GSCALING);
emilmont 0:6149091f755d 86 }
emilmont 0:6149091f755d 87
chris 3:db7126dbd63f 88 float MMA8451Q::getAccY() {
scohennm 5:be042e8c1756 89 return (float(getAccAxis(REG_OUT_Y_MSB))/GSCALING);
emilmont 0:6149091f755d 90 }
emilmont 0:6149091f755d 91
chris 3:db7126dbd63f 92 float MMA8451Q::getAccZ() {
scohennm 5:be042e8c1756 93 return (float(getAccAxis(REG_OUT_Z_MSB))/GSCALING);
emilmont 0:6149091f755d 94 }
emilmont 0:6149091f755d 95
chris 3:db7126dbd63f 96 void MMA8451Q::getAccAllAxis(float * res) {
emilmont 0:6149091f755d 97 res[0] = getAccX();
emilmont 0:6149091f755d 98 res[1] = getAccY();
emilmont 0:6149091f755d 99 res[2] = getAccZ();
emilmont 0:6149091f755d 100 }
emilmont 0:6149091f755d 101
emilmont 0:6149091f755d 102 int16_t MMA8451Q::getAccAxis(uint8_t addr) {
emilmont 0:6149091f755d 103 int16_t acc;
emilmont 0:6149091f755d 104 uint8_t res[2];
samux 1:d2630136d51e 105 readRegs(addr, res, 2);
emilmont 0:6149091f755d 106
emilmont 0:6149091f755d 107 acc = (res[0] << 6) | (res[1] >> 2);
emilmont 0:6149091f755d 108 if (acc > UINT14_MAX/2)
emilmont 0:6149091f755d 109 acc -= UINT14_MAX;
emilmont 0:6149091f755d 110
emilmont 0:6149091f755d 111 return acc;
emilmont 0:6149091f755d 112 }
emilmont 0:6149091f755d 113
samux 1:d2630136d51e 114 void MMA8451Q::readRegs(int addr, uint8_t * data, int len) {
emilmont 0:6149091f755d 115 char t[1] = {addr};
emilmont 0:6149091f755d 116 m_i2c.write(m_addr, t, 1, true);
emilmont 0:6149091f755d 117 m_i2c.read(m_addr, (char *)data, len);
emilmont 0:6149091f755d 118 }
emilmont 0:6149091f755d 119
samux 1:d2630136d51e 120 void MMA8451Q::writeRegs(uint8_t * data, int len) {
emilmont 0:6149091f755d 121 m_i2c.write(m_addr, (char *)data, len);
emilmont 0:6149091f755d 122 }