MIP_SDK  v3.0.0-170-g6440bd3
MicroStrain Communications Library for embedded systems
Other Considerations

Known Issues and Workarounds

suppress_ack parameters are not supported

Some commands accept a parameter named suppress_ack which prevents the standard ack/nack reply from being returned by the device, e.g. the 3DM Poll Data command. Use of this parameter is not fully supported by the MIP SDK and will cause the command to appear to time out after a short delay.

If you wish to use this feature, (i.e. just send the command without waiting for an ACK/NACK), you can build and send the command manually:

// Create the command with required parameters.
cmd.suppress_ack = true; // We can set this since we're not calling the standard cmd handling functions.
// Build a packet.
mip::PacketBuf packet(cmd);
// Send it to the device.
device.sendCommand(packet);

Some commands take longer and may time out

This applies to the following commands:

The device timeout must be sufficiently long when sending these commands. There are 3 potential ways to avoid erroneous timeouts:

  • Set a high overall device timeout. This is the easiest solution but may cause excess delays in your application if the device is unplugged, not powered, etc.
  • Temporarily set the timeout higher, and restore it after running the long command.
  • If using C++, use the mip::Interface::runCommand function and pass a large enough value for the additionalTime parameter. This raises the timeout specifically for that one command instance and is the recommended option.
mip::commands_3dm::PollData::descriptors
uint8_t descriptors[82]
Descriptor format list.
Definition: commands_3dm.hpp:909
mip::SizedPacketBuf
A mip packet with a self-contained buffer (useful with std::vector).
Definition: mip_packet.hpp:303
mip::data_sensor::DESCRIPTOR_SET
@ DESCRIPTOR_SET
Definition: data_sensor.hpp:31
mip::data_sensor::ScaledGyro::FIELD_DESCRIPTOR
static constexpr const uint8_t FIELD_DESCRIPTOR
Definition: data_sensor.hpp:275
mip::commands_3dm::PollData::suppress_ack
bool suppress_ack
Suppress the usual ACK/NACK reply.
Definition: commands_3dm.hpp:907
mip::commands_3dm::PollData::num_descriptors
uint8_t num_descriptors
Number of descriptors in the format list.
Definition: commands_3dm.hpp:908
mip::commands_3dm::PollData
Definition: commands_3dm.hpp:903
mip::data_sensor::ScaledAccel::FIELD_DESCRIPTOR
static constexpr const uint8_t FIELD_DESCRIPTOR
Definition: data_sensor.hpp:237
mip::commands_3dm::PollData::desc_set
uint8_t desc_set
Parameters.
Definition: commands_3dm.hpp:906