19 #ifndef BOSCH_IMU_DEVICE
20 #define BOSCH_IMU_DEVICE
67 #define START_BYTE 0xAA
68 #define WRITE_CMD 0x00
72 #define REPLY_HEAD 0xBB
73 #define ERROR_HEAD 0xEE
74 #define WRITE_SUCC 0x01
75 #define READ_FAIL 0x02
76 #define WRITE_FAIL 0x03
79 #define REGISTER_NOT_READY 0x07
83 #define REG_CHIP_ID 0x00
84 #define REG_SW_VERSION 0x04
85 #define REG_BOOTLOADER 0x06
86 #define REG_PAGE_ID 0x07
88 #define REG_ACC_DATA 0x08
89 #define REG_MAGN_DATA 0x0E
90 #define REG_GYRO_DATA 0x14
91 #define REG_RPY_DATA 0x1A
92 #define REG_QUATERN_DATA 0x20
93 #define REG_GRAVITY 0x2E
94 #define REG_CALIB_STATUS 0x35
95 #define REG_SYS_CLK_STATUS 0x38
96 #define REG_SYS_STATUS 0x39
97 #define REG_SYS_ERR 0x3A
98 #define REG_UNIT_SEL 0x3B
99 #define REG_OP_MODE 0x3D
100 #define REG_POWER_MODE 0x3E
101 #define REG_SYS_TRIGGER 0x3F
104 #define CONFIG_MODE 0x00
105 #define AMG_MODE 0x07
106 #define IMU_MODE 0x08
107 #define M4G_MODE 0x0A
108 #define NDOF_MODE 0x0C
111 #define TRIG_EXT_CLK_SEL 0x80
112 #define TRIG_RESET_INT 0x40
113 #define TRIG_RESET_SYSTEM 0x20
114 #define TRIG_SELF_TEST 0x01
116 #define BNO055_ID 0xA0
118 #define RESP_HEADER_SIZE 2
120 #define SWITCHING_TIME 0.020
121 #define TIME_REPORT_INTERVAL 30
123 #define ATTEMPTS_NUM_OF_SEND_CONFIG_CMD 3
194 bool sendReadCommandSer(
unsigned char register_add,
int len,
unsigned char* buf, std::string comment =
"");
195 bool sendWriteCommandSer(
unsigned char register_add,
int len,
unsigned char* cmd, std::string comment =
"");
199 bool sendReadCommandI2c(
unsigned char register_add,
int len,
unsigned char* buf, std::string comment =
"");
220 bool close()
override;
242 bool calibrate(
int ch,
double v)
override;
419 bool genericGetSensorName(
size_t sens_index, std::string &name)
const;
420 bool genericGetFrameName(
size_t sens_index, std::string &frameName)
const;
422 std::string m_sensorName;
423 std::string m_frameName;
contains the definition of a Vector type
void threadRelease() override
Terminate communication with the device and release the thread.
yarp::sig::Vector errorReading
unsigned char command[MAX_MSG_LENGTH]
packet to be written to the device
bool getThreeAxisGyroscopeMeasure(size_t sens_index, yarp::sig::Vector &out, double ×tamp) const override
Get three axis gyroscope measurements.
bool sendReadCommandSer(unsigned char register_add, int len, unsigned char *buf, std::string comment="")
std::atomic< bool > dataIsValid
std::mutex mutex
mutex to avoid resource clash
short status
device status - UNUSED
bool checkReadResponse(unsigned char *response)
ReadFuncPtr readFunc
Functor object.
yarp::math::Quaternion quaternion_tmp
orientation in quaternion representation
size_t getNrOfThreeAxisMagnetometers() const override
Get the number of three axis magnetometers in the device.
void printBuffer(unsigned char *buffer, int length)
bool checkError
flag to check read error of sensor data
yarp::sig::Vector data
sensor data buffer
yarp::os::ResourceFinder rf
resource finder object to load config parameters
bool getChannels(int *nc) override
Get the number of channels of the sensor.
bool sendReadCommandI2c(unsigned char register_add, int len, unsigned char *buf, std::string comment="")
bool getThreeAxisLinearAccelerometerFrameName(size_t sens_index, std::string &frameName) const override
Get the name of the frame in which three axis linear accelerometer measurements are expressed.
bool getThreeAxisGyroscopeFrameName(size_t sens_index, std::string &frameName) const override
Get the name of the frame in which three axis gyroscope measurements are expressed.
bool close() override
Close the device.
bool i2c_flag
flag to check if device connected through i2c commununication
double m_timeStamp
device timestamp
unsigned char response[MAX_MSG_LENGTH]
packet to be read from the device
bool getOrientationSensorFrameName(size_t sens_index, std::string &frameName) const override
Get the name of the frame in which orientation sensor measurements are expressed.
bool threadInit() override
Initialize process with desired device configurations.
bool verbose
Flag to get verbose output.
bool sendAndVerifyCommandSer(unsigned char register_add, int len, unsigned char *cmd, std::string comment)
bool getThreeAxisGyroscopeName(size_t sens_index, std::string &name) const override
Get the name of three axis gyroscope.
bool getOrientationSensorMeasureAsRollPitchYaw(size_t sens_index, yarp::sig::Vector &rpy, double ×tamp) const override
Get orientation sensor measurements.
bool checkWriteResponse(unsigned char *response)
bool calibrate(int ch, double v) override
Calibrate the sensor, single channel.
yarp::sig::Vector errorCounter
bool getThreeAxisMagnetometerFrameName(size_t sens_index, std::string &frameName) const override
Get the name of the frame in which three axis magnetometer measurements are expressed.
int nChannels
number of channels in the output port. Default 12. If 16, also includes quaternion data
yarp::dev::MAS_status getOrientationSensorStatus(size_t sens_index) const override
Get the status of orientation sensor.
bool getThreeAxisLinearAccelerometerName(size_t sens_index, std::string &name) const override
Get the name of three axis linear accelerometer.
bool read(yarp::sig::Vector &out) override
Read a vector from the sensor.
bool getOrientationSensorName(size_t sens_index, std::string &name) const override
Get the name of orientation sensor.
yarp::dev::MAS_status getThreeAxisGyroscopeStatus(size_t sens_index) const override
Get the status of three axis gyroscope.
bool getThreeAxisMagnetometerName(size_t sens_index, std::string &name) const override
Get the name of three axis magnetometer.
yarp::math::Quaternion quaternion
orientation in quaternion representation
bool sendWriteCommandSer(unsigned char register_add, int len, unsigned char *cmd, std::string comment="")
yarp::dev::MAS_status getThreeAxisMagnetometerStatus(size_t sens_index) const override
Get the status of three axis magnetometer.
double timeLastReport
timestamp of last reported data
int readBytes(unsigned char *buffer, int bytes)
size_t getNrOfThreeAxisGyroscopes() const override
Get the number of three axis gyroscopes in the device.
int fd
file descriptor to open device at system level
size_t getNrOfThreeAxisLinearAccelerometers() const override
Get the number of three axis linear accelerometers in the device.
bool open(yarp::os::Searchable &config) override
Open the device and set up parameters/communication.
yarp::sig::Vector data_tmp
sensor data temporary buffer
size_t getNrOfOrientationSensors() const override
Get the number of orientation sensors in the device.
bool getThreeAxisLinearAccelerometerMeasure(size_t sens_index, yarp::sig::Vector &out, double ×tamp) const override
Get three axis linear accelerometer measurements.
yarp::sig::Vector RPY_angle
orientation in Euler angle representation
bool(BoschIMU::*)(unsigned char, int, unsigned char *, std::string) ReadFuncPtr
Functor to choose between i2c or serial comm.
yarp::dev::MAS_status getThreeAxisLinearAccelerometerStatus(size_t sens_index) const override
Get the status of three axis linear accelerometer.
bool getThreeAxisMagnetometerMeasure(size_t sens_index, yarp::sig::Vector &out, double ×tamp) const override
Get three axis magnetometer measurements.
void run() override
Update loop where measurements are read from the device.
Interface implemented by all device drivers.
A generic interface to sensors – gyro, a/d converters etc.
Device interface to one or multiple orientation sensors, such as IMUs with on board estimation algori...
Device interface to one or multiple three axis gyroscopes.
Device interface to one or multiple three axis linear accelerometers.
Device interface to one or multiple three axis magnetometers.
An abstraction for a periodic thread.
Helper class for finding config files and other external resources.
A base class for nested structures that can be searched.
constexpr int MAX_MSG_LENGTH
MAS_status
Status of a given analog sensor exposed by a multiple analog sensors interface.