mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
[wpilib] Fix ADIS16448 IMU default constructor not working in Java (#3989)
Also fixes a few related uninitialized variables in C++.
This commit is contained in:
@@ -169,7 +169,7 @@ public class ADIS16448_IMU implements AutoCloseable, NTSendable {
|
||||
|
||||
/* State variables */
|
||||
private volatile boolean m_thread_active = false;
|
||||
private CalibrationTime m_calibration_time = CalibrationTime._512ms;
|
||||
private CalibrationTime m_calibration_time = CalibrationTime._32ms;
|
||||
private volatile boolean m_first_run = true;
|
||||
private volatile boolean m_thread_idle = false;
|
||||
private boolean m_auto_configured = false;
|
||||
|
||||
Reference in New Issue
Block a user