#[repr(C)]
pub struct spi_bus_config_t {
Show 13 fields pub __bindgen_anon_1: spi_bus_config_t__bindgen_ty_1, pub __bindgen_anon_2: spi_bus_config_t__bindgen_ty_2, pub sclk_io_num: c_int, pub __bindgen_anon_3: spi_bus_config_t__bindgen_ty_3, pub __bindgen_anon_4: spi_bus_config_t__bindgen_ty_4, pub data4_io_num: c_int, pub data5_io_num: c_int, pub data6_io_num: c_int, pub data7_io_num: c_int, pub max_transfer_sz: c_int, pub flags: u32, pub isr_cpu_id: intr_cpu_id_t, pub intr_flags: c_int,
}
Expand description

@brief This is a configuration structure for a SPI bus.

You can use this structure to specify the GPIO pins of the bus. Normally, the driver will use the GPIO matrix to route the signals. An exception is made when all signals either can be routed through the IO_MUX or are -1. In that case, the IO_MUX is used, allowing for >40MHz speeds.

@note Be advised that the slave driver does not use the quadwp/quadhd lines and fields in spi_bus_config_t refering to these lines will be ignored and can thus safely be left uninitialized.

Fields§

§__bindgen_anon_1: spi_bus_config_t__bindgen_ty_1§__bindgen_anon_2: spi_bus_config_t__bindgen_ty_2§sclk_io_num: c_int

< GPIO pin for SPI Clock signal, or -1 if not used.

§__bindgen_anon_3: spi_bus_config_t__bindgen_ty_3§__bindgen_anon_4: spi_bus_config_t__bindgen_ty_4§data4_io_num: c_int

< GPIO pin for spi data4 signal in octal mode, or -1 if not used.

§data5_io_num: c_int

< GPIO pin for spi data5 signal in octal mode, or -1 if not used.

§data6_io_num: c_int

< GPIO pin for spi data6 signal in octal mode, or -1 if not used.

§data7_io_num: c_int

< GPIO pin for spi data7 signal in octal mode, or -1 if not used.

§max_transfer_sz: c_int

< Maximum transfer size, in bytes. Defaults to 4092 if 0 when DMA enabled, or to SOC_SPI_MAXIMUM_BUFFER_SIZE if DMA is disabled.

§flags: u32

< Abilities of bus to be checked by the driver. Or-ed value of SPICOMMON_BUSFLAG_* flags.

§isr_cpu_id: intr_cpu_id_t

< Select cpu core to register SPI ISR.

§intr_flags: c_int

< Interrupt flag for the bus to set the priority, and IRAM attribute, see esp_intr_alloc.h. Note that the EDGE, INTRDISABLED attribute are ignored by the driver. Note that if ESP_INTR_FLAG_IRAM is set, ALL the callbacks of the driver, and their callee functions, should be put in the IRAM.

Trait Implementations§

source§

impl Clone for spi_bus_config_t

source§

fn clone(&self) -> spi_bus_config_t

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for spi_bus_config_t

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for spi_bus_config_t

Auto Trait Implementations§

§

impl RefUnwindSafe for spi_bus_config_t

§

impl Send for spi_bus_config_t

§

impl Sync for spi_bus_config_t

§

impl Unpin for spi_bus_config_t

§

impl UnwindSafe for spi_bus_config_t

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.