pub struct Configuration {
pub power_mode: PowerMode,
pub hysteresis: Hysteresis,
pub output_stage: OutputStage,
pub pwm_frequency: PwmFrequency,
pub slow_filter: SlowFilter,
pub fast_filter_threshold: FastFilterThreshold,
pub watchdog: bool,
}Expand description
Full configuration of the AS5600 chip.
This struct maps to the CONF_HI and CONF_LO registers.
Fields§
§power_mode: PowerModeCurrent power mode.
hysteresis: HysteresisHysteresis setting.
output_stage: OutputStageOutput pin functionality.
pwm_frequency: PwmFrequencyFrequency for PWM output.
slow_filter: SlowFilterSlow filter averaging factor.
fast_filter_threshold: FastFilterThresholdThreshold for fast filter bypass.
watchdog: boolEnable/Disable the watchdog timer (auto-low-power after 1 minute of inactivity).
Trait Implementations§
Source§impl Clone for Configuration
impl Clone for Configuration
Source§fn clone(&self) -> Configuration
fn clone(&self) -> Configuration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Configuration
impl Debug for Configuration
Source§impl Default for Configuration
impl Default for Configuration
impl Copy for Configuration
Auto Trait Implementations§
impl Freeze for Configuration
impl RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnwindSafe for Configuration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more