usecrate::Tilt;/// Represents current estimates on the tilt status of a controller
#[derive(Copy, Clone, Debug, Default, PartialEq)]pubstructTiltEstimates{/// Estimated only using the accelerometer average
pubaccel_avg: Tilt,
/// Estimated only using last accelerometer reading
pubaccel_instant: Tilt,
/// Estimated only using last gyro reading
pubgyro_instant: Tilt,
/// Estimated tilt using gyro+accelerometer fusion
pubaccel_corrected_gyro: Tilt,
}