Hi,
I am trying to read angular measurements from the ADIS16505. I came across the following formula to read the values. However, I don't understand the need to multiply the register values by 1/2621440 term.
RATE_X_IMU = f(X_GYRO_OUT, X_GYRO_LOW) * 1/2621440 * π/180 (rad/s)
RATE_Y_IMU = f(Y_GYRO_OUT, Y_GYRO_LOW) * 1/2621440 * π/180 (rad/s)
RATE_Z_IMU = f(Z_GYRO_OUT, Z_GYRO_LOW) * 1/2621440 * π/180 (rad/s)
Could you please tell me why do I need to multiply by 1/2621440 to get the angular rates?