-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathAdafruit_LSM6DS3.cpp
51 lines (40 loc) · 1.28 KB
/
Adafruit_LSM6DS3.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*!
* @file Adafruit_LSM6DS3.cpp Adafruit LSM6DS3 6-DoF Accelerometer
* and Gyroscope library
*
* Bryan Siepert for Adafruit Industries
* BSD (see license.txt)
*/
#include "Arduino.h"
#include <Wire.h>
#include "Adafruit_LSM6DS3.h"
/*!
* @brief Instantiates a new LSM6DS3 class
*/
Adafruit_LSM6DS3::Adafruit_LSM6DS3(void) {}
bool Adafruit_LSM6DS3::_init(int32_t sensor_id) {
// make sure we're talking to the right chip
if (chipID() != LSM6DS3_CHIP_ID) {
return false;
}
_sensorid_accel = sensor_id;
_sensorid_gyro = sensor_id + 1;
_sensorid_temp = sensor_id + 2;
temperature_sensitivity = 16.0;
reset();
// call base class _init()
Adafruit_LSM6DS::_init(sensor_id);
return true;
}
/**************************************************************************/
/*!
@brief Enables and disables the I2C master bus pulllups.
@param enable_pullups true to enable the I2C pullups, false to disable.
*/
void Adafruit_LSM6DS3::enableI2CMasterPullups(bool enable_pullups) {
Adafruit_BusIO_Register master_config = Adafruit_BusIO_Register(
i2c_dev, spi_dev, ADDRBIT8_HIGH_TOREAD, LSM6DS3_MASTER_CONFIG);
Adafruit_BusIO_RegisterBits i2c_master_pu_en =
Adafruit_BusIO_RegisterBits(&master_config, 1, 3);
i2c_master_pu_en.write(enable_pullups);
}