Struct pico_sdk::driver::ps2000a::PS2000ADriver[][src]

pub struct PS2000ADriver { /* fields omitted */ }

Implementations

impl PS2000ADriver[src]

pub fn new<P>(path: P) -> Result<PS2000ADriver, Error> where
    P: AsRef<OsStr>, 
[src]

Trait Implementations

impl Debug for PS2000ADriver[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl PicoDriver for PS2000ADriver[src]

pub fn get_driver(&self) -> Driver[src]

Gets the underlying driver type

pub fn get_version(&self) -> Result<String, PicoError>[src]

Gets the driver version string

pub fn get_path(&self) -> Result<Option<String>, PicoError>[src]

Gets the path to the loaded driver

pub fn enumerate_units(
    &self
) -> Result<Vec<EnumerationResult, Global>, PicoError>
[src]

Returns a list of discovered serial numbers

pub fn open_unit(&self, serial: Option<&str>) -> Result<i16, PicoError>[src]

Opens a device, optionally with a specific serial number

pub fn ping_unit(&self, handle: i16) -> Result<(), PicoError>[src]

Ping a unit to see if it’s still connected

pub fn maximum_value(&self, handle: i16) -> Result<i16, PicoError>[src]

Get the maximum expected ADC value. This is required to scale to volts

pub fn close(&self, handle: i16) -> Result<(), PicoError>[src]

Close the specified unit

pub fn get_unit_info(
    &self,
    handle: i16,
    info_type: PicoInfo
) -> Result<String, PicoError>
[src]

Get one of the unit info strings

pub fn get_channel_ranges(
    &self,
    handle: i16,
    channel: PicoChannel
) -> Result<Vec<PicoRange, Global>, PicoError>
[src]

Get valid ranges for the specified channel

pub fn enable_channel(
    &self,
    handle: i16,
    channel: PicoChannel,
    config: &ChannelConfig
) -> Result<(), PicoError>
[src]

Set up a channel with the supplied config

pub fn disable_channel(
    &self,
    handle: i16,
    channel: PicoChannel
) -> Result<(), PicoError>
[src]

Disable a channel

pub fn set_data_buffer(
    &self,
    handle: i16,
    channel: PicoChannel,
    buffer: Arc<RwLock<RawRwLock, Pin<Vec<i16, Global>>>>,
    buffer_len: usize
) -> Result<(), PicoError>
[src]

Give the driver a buffer to write data into

pub fn start_streaming(
    &self,
    handle: i16,
    sample_config: &SampleConfig
) -> Result<SampleConfig, PicoError>
[src]

Starts the device streaming

pub fn get_latest_streaming_values(
    &self,
    handle: i16,
    _channels: &[PicoChannel],
    callback: Box<dyn FnMut(usize, usize) + 'a, Global>
) -> Result<(), PicoError>
[src]

Gets the latest streaming values

pub fn stop(&self, handle: i16) -> Result<(), PicoError>[src]

Stops the device streaming

fn check_version(&self) -> Result<(), DriverLoadError>[src]

Check that the driver meets the minimum version tested with these wrappers

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

pub unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more

pub unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more

pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more

pub unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.