2025-06-03 1:04 AM
Hi everyone!
What is the benefit of setting the accelerometer ODR to 416.0f Hz when setting up the motion detection features? All motion detection features use this value. Why?
An example would be the 6D Orientation detection:
int32_t ISM330DHCX_ACC_Enable_6D_Orientation(ISM330DHCX_Object_t *pObj, ISM330DHCX_SensorIntPin_t IntPin)
{
/* ... */
/* Output Data Rate selection */
if (ISM330DHCX_ACC_SetOutputDataRate(pObj, 416.0f) != ISM330DHCX_OK)
{
return ISM330DHCX_ERROR;
}
/* ... */
}
Why was this 416.0f Hz value chosen? I cannot find this in the driver documentation or anywhere else. Is this written down somewhere?
Thanks!