MPU9255
MPU9255 Arduino Library
MPU9255_Communication.cpp
1 
6 // This file is a part of MPU9255 library.
7 // Copyright (c) 2017-2020 Krzysztof Adamkiewicz <kadamkiewicz835@gmail.com>
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy of
10 // this software and associated documentation files (the “Software”), to deal in the
11 // Software without restriction, including without limitation the rights to use, copy,
12 // modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
13 // and to permit persons to whom the Software is furnished to do so, subject to the
14 // following conditions: THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
18 // OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 
20 #include "MPU9255.h"
21 #include "Arduino.h"
22 
29 void MPU9255::requestBytes(uint8_t address, uint8_t subAddress, uint8_t bytes)
30 {
31  Wire.beginTransmission(address);
32  Wire.write(subAddress);
33  Wire.endTransmission(false);
34  Wire.requestFrom(address, bytes);
35 }
36 
43 void MPU9255::readArray(uint8_t* output, char size)
44 {
45  for(char i = 0; i<size; i++)
46  {
47  output[i] = Wire.read();//read byte and put it into rawData table
48  }
49 }
50 
57 uint8_t MPU9255::read(uint8_t address, uint8_t subAddress)
58 {
59  requestBytes(address,subAddress,1);//request one byte from the register
60  uint8_t data = Wire.read();//read one byte of data
61  return data;
62 }
63 
70 void MPU9255::write(uint8_t address, uint8_t subAddress, uint8_t data)
71 {
72  Wire.beginTransmission(address);
73  Wire.write(subAddress);
74  Wire.write(data);
75  Wire.endTransmission();
76 }
77 
84 void MPU9255::write_OR(uint8_t address, uint8_t subAddress, uint8_t data)
85 {
86  uint8_t c = read(address,subAddress);
87  c = c | data;
88  write(address,subAddress,c);
89 }
90 
97 void MPU9255::write_AND(uint8_t address, uint8_t subAddress, uint8_t data)
98 {
99  uint8_t c = read(address,subAddress);
100  c = c & data;
101  write(address,subAddress,c);
102 }
Main header of the library.