Closed peteole closed 3 years ago
Calibrating the gyro does not work on a gy-91 with an stm32 blue pill and platformio. By debugging I found out that this is due to the following code: if (setSrd(19) < 0) { return -3; } Just removing it from the implementation fixes the issue.
if (setSrd(19) < 0) { return -3; }
Calibration isn't included in newer versions of the driver, so we won't pull in any fixes.
Calibrating the gyro does not work on a gy-91 with an stm32 blue pill and platformio. By debugging I found out that this is due to the following code:
if (setSrd(19) < 0) { return -3; }
Just removing it from the implementation fixes the issue.