Struct StabilizerDevices

Source
pub struct StabilizerDevices<C: Settings + 'static, const Y: usize> {
Show 14 fields pub temperature_sensor: CpuTempSensor, pub afes: [Pgia; 2], pub adcs: (Adc0Input, Adc1Input), pub dacs: (Dac0Output, Dac1Output), pub timestamper: InputStamper, pub adc_dac_timer: SamplingTimer, pub timestamp_timer: TimestampTimer, pub net: NetworkDevices, pub digital_inputs: (DigitalInput0, DigitalInput1), pub eem: Eem, pub usb_serial: SerialTerminal<C, Y>, pub usb: UsbDevice, pub metadata: &'static ApplicationMetadata, pub settings: C,
}
Expand description

The available hardware interfaces on Stabilizer.

Fields§

§temperature_sensor: CpuTempSensor§afes: [Pgia; 2]§adcs: (Adc0Input, Adc1Input)§dacs: (Dac0Output, Dac1Output)§timestamper: InputStamper§adc_dac_timer: SamplingTimer§timestamp_timer: TimestampTimer§net: NetworkDevices§digital_inputs: (DigitalInput0, DigitalInput1)§eem: Eem§usb_serial: SerialTerminal<C, Y>§usb: UsbDevice§metadata: &'static ApplicationMetadata§settings: C

Auto Trait Implementations§

§

impl<C, const Y: usize> Freeze for StabilizerDevices<C, Y>
where C: Freeze,

§

impl<C, const Y: usize> !RefUnwindSafe for StabilizerDevices<C, Y>

§

impl<C, const Y: usize> !Send for StabilizerDevices<C, Y>

§

impl<C, const Y: usize> !Sync for StabilizerDevices<C, Y>

§

impl<C, const Y: usize> Unpin for StabilizerDevices<C, Y>
where C: Unpin,

§

impl<C, const Y: usize> !UnwindSafe for StabilizerDevices<C, Y>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T, M> ForwardCompat<T, M> for T

§

fn forward(self) -> Forward<T, M>

Create an e-h-c forward compatibility wrapper around and e-h object Available methods depend on the wrapped type
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> ReverseCompat<T> for T

§

fn reverse(self) -> Reverse<T>

Create an e-h-c wrapper around and e-h object Available methods depend on the wrapped type

§

fn reverse_cell(self) -> Reverse<RefCell<T>>

Create an e-h-c reverse compatibility wrapper using a ref-cell for interior mutability (required for InputPin types)

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.