Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MMA8451Q.cpp 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* Copyright (c) 2010-2011 mbed.org, MIT License
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
  4. * and associated documentation files (the "Software"), to deal in the Software without
  5. * restriction, including without limitation the rights to use, copy, modify, merge, publish,
  6. * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
  7. * Software is furnished to do so, subject to the following conditions:
  8. *
  9. * The above copyright notice and this permission notice shall be included in all copies or
  10. * substantial portions of the Software.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
  13. * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  14. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  15. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. */
  18. #include "MMA8451Q.h"
  19. #define REG_WHO_AM_I 0x0D
  20. #define REG_CTRL_REG_1 0x2A
  21. #define REG_OUT_X_MSB 0x01
  22. #define REG_OUT_Y_MSB 0x03
  23. #define REG_OUT_Z_MSB 0x05
  24. #define UINT14_MAX 16383
  25. MMA8451Q::MMA8451Q(PinName sda, PinName scl, int addr) : m_i2c(sda, scl), m_addr(addr) {
  26. // activate the peripheral
  27. uint8_t data[2] = {REG_CTRL_REG_1, 0x01};
  28. writeRegs(data, 2);
  29. }
  30. MMA8451Q::~MMA8451Q() { }
  31. uint8_t MMA8451Q::getWhoAmI() {
  32. uint8_t who_am_i = 0;
  33. readRegs(REG_WHO_AM_I, &who_am_i, 1);
  34. return who_am_i;
  35. }
  36. int16_t MMA8451Q::getAccX() {
  37. return getAccAxis(REG_OUT_X_MSB);
  38. }
  39. int16_t MMA8451Q::getAccY() {
  40. return getAccAxis(REG_OUT_Y_MSB);
  41. }
  42. int16_t MMA8451Q::getAccZ() {
  43. return getAccAxis(REG_OUT_Z_MSB);
  44. }
  45. void MMA8451Q::getAccAllAxis(int16_t * res) {
  46. res[0] = getAccX();
  47. res[1] = getAccY();
  48. res[2] = getAccZ();
  49. }
  50. int16_t MMA8451Q::getAccAxis(uint8_t addr) {
  51. int16_t acc;
  52. uint8_t res[2];
  53. readRegs(addr, res, 2);
  54. acc = (res[0] << 6) | (res[1] >> 2);
  55. if (acc > UINT14_MAX/2)
  56. acc -= UINT14_MAX;
  57. return acc;
  58. }
  59. void MMA8451Q::readRegs(int addr, uint8_t * data, int len) {
  60. char t[1] = {addr};
  61. m_i2c.write(m_addr, t, 1, true);
  62. m_i2c.read(m_addr, (char *)data, len);
  63. }
  64. void MMA8451Q::writeRegs(uint8_t * data, int len) {
  65. m_i2c.write(m_addr, (char *)data, len);
  66. }