25 #if MRPT_HAS_xSENS_MT4 61 DeviceClass() : m_streamInterface(nullptr) {}
64 if (m_streamInterface)
66 delete m_streamInterface;
67 m_streamInterface =
nullptr;
82 if (m_streamInterface->open(portInfo) !=
XRV_OK)
return false;
90 if (m_streamInterface) m_streamInterface->close();
105 const int maxSz = 8192;
107 if (raw.size())
return XRV_OK;
126 if (rawIn.size()) m_dataBuffer.append(rawIn);
134 m_dataBuffer.data() + popped, m_dataBuffer.size() - popped);
142 messages.push_back(message);
146 if (popped) m_dataBuffer.pop_front(popped);
164 bool foundAck =
false;
167 readDataToBuffer(
data);
168 processBufferedData(
data, msgs);
171 if ((*it).getMessageId() == xmid)
189 return (m_streamInterface->writeData(raw) ==
XRV_OK);
206 bool gotoMeasurement()
224 const char* pc = (
const char*)rcv.getDataBuffer(0);
225 std::string result(pc ? pc :
"", rcv.getDataSize());
226 std::string::size_type thingy = result.find(
" ");
229 result.begin() + thingy, result.end());
247 return rcv.getDataLong();
264 sndOM.setDataShort((
uint16_t)outputMode);
270 snd.setDataLong((
uint32_t)outputSettings);
285 if (config.size() == 0)
288 snd.setDataShort(0, 2);
294 snd.setDataShort((
uint16_t)config[i].m_dataIdentifier, i * 4);
295 snd.setDataShort(config[i].m_frequency, i * 4 + 2);
310 #define my_xsens_device (*static_cast<DeviceClass*>(m_dev_ptr)) 311 #define my_xsens_devid (*static_cast<XsDeviceId*>(m_devid_ptr)) 314 #if MRPT_HAS_xSENS_MT4 315 #ifdef MRPT_OS_WINDOWS 317 #if defined(_MSC_VER) || defined(__BORLANDC__) 318 #pragma comment(lib, "SetupAPI.lib") 319 #pragma comment(lib, "WinUsb.lib") 321 #endif // MRPT_OS_WINDOWS 322 #endif // MRPT_HAS_xSENS_MT4 327 CIMUXSens_MT4::CIMUXSens_MT4()
339 #if MRPT_HAS_xSENS_MT4 344 "MRPT has been compiled with 'BUILD_XSENS_MT4'=OFF, so this class " 354 #if MRPT_HAS_xSENS_MT4 356 delete static_cast<DeviceClass*
>(
m_dev_ptr);
369 #if MRPT_HAS_xSENS_MT4 372 std::this_thread::sleep_for(200ms);
403 packet.setMessage((*it));
412 if (packet.containsOrientation())
414 XsEuler euler = packet.orientationEuler();
416 obs->dataIsPresent[
IMU_YAW] =
true;
420 obs->dataIsPresent[
IMU_ROLL] =
true;
433 if (packet.containsCalibratedAcceleration())
435 XsVector acc_data = packet.calibratedAcceleration();
436 obs->rawMeasurements[
IMU_X_ACC] = acc_data[0];
438 obs->rawMeasurements[
IMU_Y_ACC] = acc_data[1];
440 obs->rawMeasurements[
IMU_Z_ACC] = acc_data[2];
444 if (packet.containsCalibratedGyroscopeData())
446 XsVector gyr_data = packet.calibratedGyroscopeData();
455 if (packet.containsCalibratedMagneticField())
457 XsVector mag_data = packet.calibratedMagneticField();
458 obs->rawMeasurements[
IMU_MAG_X] = mag_data[0];
460 obs->rawMeasurements[
IMU_MAG_Y] = mag_data[1];
462 obs->rawMeasurements[
IMU_MAG_Z] = mag_data[2];
466 if (packet.containsVelocity())
468 XsVector vel_data = packet.velocity();
469 obs->rawMeasurements[
IMU_X_VEL] = vel_data[0];
471 obs->rawMeasurements[
IMU_Y_VEL] = vel_data[1];
473 obs->rawMeasurements[
IMU_Z_VEL] = vel_data[2];
477 if (packet.containsTemperature())
483 if (packet.containsAltitude())
490 if (packet.containsSampleTime64())
492 const uint64_t nowUI = packet.sampleTime64();
507 else if (packet.containsUtcTime())
532 if (packet.containsLatitudeLongitude())
534 XsVector lla_data = packet.latitudeLongitude();
543 if (packet.containsStatus() && packet.status() &
XSF_GpsValid)
548 if (packet.containsUtcTime())
558 ((obs->timestamp / (60 * 60 * ((
uint64_t)1000000 / 100))) %
561 ((obs->timestamp / (60 * ((
uint64_t)1000000 / 100))) % 60);
562 rGPS.
UTCTime.
sec = fmod(obs->timestamp / (1000000.0 / 100), 60);
565 if (packet.containsVelocity())
567 XsVector vel_data = packet.velocity();
570 sqrt(vel_data[0] * vel_data[0] + vel_data[1] * vel_data[1]);
578 obsGPS->setMsg(rGPSs);
579 obsGPS->timestamp = obs->timestamp;
580 obsGPS->originalReceivedTimestamp = obs->timestamp;
581 obsGPS->has_satellite_timestamp =
false;
588 std::cout << std::flush;
594 "MRPT has been compiled with 'BUILD_XSENS_MT4'=OFF, so this class " 604 #if MRPT_HAS_xSENS_MT4 615 cout <<
"[CIMUXSens_MT4] Scanning for USB devices...\n";
618 if (portInfoArray.empty())
620 "CIMUXSens_MT4: No 'portname' was specified and no XSens " 621 "device was found after scanning the system!")
624 cout <<
"[CIMUXSens_MT4] Found " << portInfoArray.size()
625 <<
" devices. Opening the first one.\n";
632 cout <<
"[CIMUXSens_MT4] Using user-supplied portname '" 634 portInfoArray.push_back(portInfo);
641 cout <<
"[CIMUXSens_MT4] Opening port " 642 << mtPort.portName().toStdString() << std::endl;
645 throw std::runtime_error(
"Could not open port. Aborting.");
649 cout <<
"[CIMUXSens_MT4] Putting device into configuration " 654 throw std::runtime_error(
655 "Could not put device into configuration mode. Aborting.");
663 if (!mtPort.deviceId().isMtix() && !mtPort.deviceId().isMtMk4())
665 throw std::runtime_error(
666 "No MTi / MTx / MTmk4 device found. Aborting.");
668 cout <<
"[CIMUXSens_MT4] Found a device with id: " 669 << mtPort.deviceId().toString().toStdString()
670 <<
" @ port: " << mtPort.portName().toStdString()
671 <<
", baudrate: " << mtPort.baudrate() << std::endl;
675 cout <<
"[CIMUXSens_MT4] Device: " 681 cout <<
"[CIMUXSens_MT4] Configuring the device..." << std::endl;
682 if (mtPort.deviceId().isMtix())
694 throw std::runtime_error(
695 "Could not configure MT device. Aborting.");
697 else if (mtPort.deviceId().isMtMk4())
700 configArray.push_back(
702 configArray.push_back(
704 configArray.push_back(
706 configArray.push_back(
708 configArray.push_back(
710 configArray.push_back(
712 configArray.push_back(
714 configArray.push_back(
716 configArray.push_back(
719 configArray.push_back(
721 configArray.push_back(
723 configArray.push_back(
725 configArray.push_back(
729 throw std::runtime_error(
730 "Could not configure MTmk4 device. Aborting.");
734 throw std::runtime_error(
735 "Unknown device while configuring. Aborting.");
740 cout <<
"[CIMUXSens_MT4] Putting device into measurement mode..." 743 throw std::runtime_error(
744 "Could not put device into measurement mode. Aborting.");
748 catch (std::exception&)
751 std::cerr <<
"Error Could not initialize the device" << std::endl;
757 "MRPT has been compiled with 'BUILD_XSENS_MT4'=OFF, so this class " 770 configSource.
read_float(iniSection,
"pose_x", 0,
false),
771 configSource.
read_float(iniSection,
"pose_y", 0,
false),
772 configSource.
read_float(iniSection,
"pose_z", 0,
false),
783 #ifdef MRPT_OS_WINDOWS XsOutputMode
Bit values for legacy output mode.
std::shared_ptr< CObservationIMU > Ptr
Operation was performed successfully.
mrpt::system::TTimeStamp m_timeStartTT
content_t fields
Message content, accesible by individual fields.
double longitude_degrees
The measured longitude, in degrees (East:+ , West:-)
Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
void XsDataPacket_assignFromXsLegacyDataPacket(struct XsDataPacket *thisPtr, struct LegacyDataPacket const *pack, int index)
unsigned __int16 uint16_t
void doProcess()
This method will be invoked at a minimum rate of "process_rate" (Hz)
virtual ~CIMUXSens_MT4()
Destructor.
void setMessage(const XsMessage &message)
Set the source message to msg.
mrpt::poses::CPose3D m_sensorPose
float read_float(const std::string §ion, const std::string &name, float defaultValue, bool failIfNotFound=false) const
std::string m_sensorLabel
See CGenericSensor.
#define THROW_EXCEPTION(msg)
orientation pitch absolute value (global/navigation frame) (rad)
mrpt::system::TTimeStamp buildTimestampFromParts(const mrpt::system::TTimeParts &p)
Builds a timestamp from the parts (Parts are in UTC)
struct XsByteArray XsByteArray
bool setDataFormat(const XsDataFormat &format, int32_t index=0)
Sets the data format of the device with the given index to format.
uint8_t m_day
The day of the month (if date is valid)
uint8_t day_of_week
Seconds (0.0000-59.9999)
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Contains classes for various device interfaces.
uint16_t m_year
The year (if date is valid)
temperature (degrees Celsius)
std::string read_string(const std::string §ion, const std::string &name, const std::string &defaultValue, bool failIfNotFound=false) const
x magnetic field value (local/vehicle frame) (gauss)
size_t XsSize
XsSize must be unsigned number!
y-axis acceleration (local/vehicle frame) (m/sec2)
Orientation Quaternion X (global/navigation frame)
struct XsOutputConfiguration XsOutputConfiguration
z-axis acceleration (local/vehicle frame) (m/sec2)
x-axis velocity (global/navigation frame) (m/sec)
int8_t validity_char
This will be: 'A'=OK or 'V'=void.
uint8_t m_minute
The minute (if time is valid)
UTC_time UTCTime
The GPS sensor measured timestamp (in UTC time)
std::string m_portname
The USB or COM port name (if blank -> autodetect)
int m_port_bauds
Baudrate, only for COM ports.
uint32_t m_nano
Nanosecond part of the time.
This class allows loading and storing values and vectors of different types from a configuration text...
struct XsMessageArray XsMessageArray
int read_int(const std::string §ion, const std::string &name, int defaultValue, bool failIfNotFound=false) const
pitch angular velocity (local/vehicle frame) (rad/sec)
int daylight_saving
Day of week (1:Sunday, 7:Saturday)
bool xsEnumerateUsbDevices(XsPortInfoList &ports)
Enumerate Xsens USB devices.
XsResultValue
Xsens result values.
Stores the location of a message in a buffer using a start position and a size.
Structure for storing a single message.
uint8_t m_hour
The hour (if time is valid)
The parts of a date/time (it's like the standard 'tm' but with fractions of seconds).
virtual MessageLocation findMessage(XsMessage &rcv, const XsByteArray &raw) const
Find the first message in the raw byte stream.
void initialize()
Turns on the xSens device and configure it for getting orientation data.
void setDeviceId(XsDeviceId deviceId, int32_t index)
Sets the device ID of the device with the given index to deviceid.
This namespace contains representation of robot actions and observations.
struct XsDeviceId XsDeviceId
Orientation Quaternion Y (global/navigation frame)
Orientation Quaternion Z (global/navigation frame)
static int composeMessage(XsByteArray &raw, const XsMessage &msg)
Compose a message for transmission.
z magnetic field value (local/vehicle frame) (gauss)
GLsizei const GLchar ** string
Orientation Quaternion W (global/navigation frame)
#define IMPLEMENTS_GENERIC_SENSOR(class_name, NameSpace)
This must be inserted in all CGenericSensor classes implementation files:
void appendObservation(const mrpt::utils::CSerializable::Ptr &obj)
Like appendObservations() but for just one observation.
XsXbusMessageId
Xsens Xbus Message Identifiers.
double second
Minute (0-59)
y magnetic field value (local/vehicle frame) (gauss)
void loadConfig_sensorSpecific(const mrpt::utils::CConfigFileBase &configSource, const std::string &iniSection)
See the class documentation at the top for expected parameters.
unsigned __int64 uint64_t
Message protocol handling class.
Contains an MTData XsMessage and supports functions for extracting contained data.
void setXbusSystem(bool xbus, bool convert=false)
Sets the xbus flag.
XsOutputSettings
Bit values for output settings.
The low-level serial communication class.
double speed_knots
Measured speed (in knots)
int m_size
The size of the message, when less than 0 it indicates the expected message size. ...
uint8_t minute
Hour (0-23)
A structure for storing UTC Time values.
double direction_degrees
Measured speed direction (in degrees)
struct XsPortInfoArray XsPortInfoArray
void setFromValues(const double x0, const double y0, const double z0, const double yaw=0, const double pitch=0, const double roll=0)
Set the pose from a 3D position (meters) and yaw/pitch/roll angles (radians) - This method recomputes...
std::shared_ptr< CObservationGPS > Ptr
Contains data received from a device or read from a file.
A class for interfacing XSens 4th generation Inertial Measuring Units (IMUs): MTi 10-series...
double latitude_degrees
The measured latitude, in degrees (North:+ , South:-)
uint8_t m_month
The month (if date is valid)
orientation yaw absolute value (global/navigation frame) (rad)
y-axis velocity (global/navigation frame) (m/sec)
orientation roll absolute value (global/navigation frame) (rad)
yaw angular velocity (local/vehicle frame) (rad/sec)
This class stores messages from GNSS or GNSS+IMU devices, from consumer-grade inexpensive GPS receive...
roll angular velocity (local/vehicle frame) (rad/sec)
unsigned __int32 uint32_t
GLsizei GLsizei GLenum GLenum const GLvoid * data
x-axis acceleration (local/vehicle frame) (m/sec2)
z-axis velocity (global/navigation frame) (m/sec)
uint8_t m_second
The second (if time is valid)
struct XsOutputConfigurationArray XsOutputConfigurationArray
An IoInterface for dealing specifically with Xsens USB devices.
altitude from an altimeter (meters)