You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I recently changed the IMU model from 3DM-GX5-AHRS to 3DM-GV7-AHRS.
Before changing the model, I used a code snippet like the one below to disable a magnetometer.
Disable magnetometer usage in SensorConnect.
The magnetometer usage was set to be disabled, and this setup is saved as the initial settings.
I've checked that the disabled setting remained after disconnecting/reconnecting the IMU cable.
To test if the magnetometer is disabled, a small magnet was put close to the IMU.
Then, the estimated direction changed depending on the direction of the magnet.
I wonder how to completely disable its magnetometer.
Thank you.
The text was updated successfully, but these errors were encountered:
Hello, I recently changed the IMU model from 3DM-GX5-AHRS to 3DM-GV7-AHRS.
Before changing the model, I used a code snippet like the one below to disable a magnetometer.
"""
mscl::HeadingUpdateOptions headingUpdateOptions;
headingUpdateOptions.useInternalMagnetometer = false;
node_->setHeadingUpdateControl(headingUpdateOptions);
"""
However, for the GV7 model, "setHeadingUpdateControl" method doesn't work anymore.
The method gives "Error_NotSupported" error.
So, what I've tried to solve this problem are the ones below.
Disable aiding measurement source
"""
enableDisableAidingMeasurement(InertialTypes::AidingMeasurementSource::MAGNETOMETER_AIDING, false);
"""
Disable magnetometer usage in SensorConnect.
The magnetometer usage was set to be disabled, and this setup is saved as the initial settings.
I've checked that the disabled setting remained after disconnecting/reconnecting the IMU cable.
To test if the magnetometer is disabled, a small magnet was put close to the IMU.
Then, the estimated direction changed depending on the direction of the magnet.
I wonder how to completely disable its magnetometer.
Thank you.
The text was updated successfully, but these errors were encountered: