- SPI
- Overview
- Summary
- Files
- Data Structures
- Macros
- Enumerations
- Functions
- Details
- Macro Definition Documentation
- SPI_CLK_PHASE
- SPI_CLK_POLARITY
- SPI_MODE_3WIRE
- SPI_MODE_CS_HIGH
- SPI_MODE_LOOP
- SPI_MODE_LSBFE
- SPI_MODE_NOCS
- SPI_MODE_READY
- Enumeration Type Documentation
- SpiTransferMode
- Function Documentation
- SpiClose()
- SpiGetCfg()
- SpiOpen()
- SpiRead()
- SpiSetCfg()
- SpiTransfer()
- SpiWrite()
SPI
Overview
Defines standard APIs of the Serial Peripheral Interface (SPI) capabilities.
The SPI module abstracts the SPI capabilities of different system platforms to provide stable APIs for driver development. This module can create and destroy SPI device handles, read and write SPI data, and obtain and set configuration parameters.
Since:
1.0
Summary
Files
Defines standard SPI-specific interfaces for driver development. |
Data Structures
Defines the general SPI device descriptor, which can be used as the unique identifier of an SPI device. When operating an SPI device, you need to specify a descriptor of the SpiDevInfo type, and obtain the handle of the SPI device by calling SpiOpen. |
|
Macros
SPI_CLK_PHASE (1 << 0) |
Indicates the SPI clock phase. The value 0 indicates that data will be sampled on the first clock edge, and 1 indicates that data will be sampled on the second clock edge. |
SPI_CLK_POLARITY (1 << 1) |
Indicates the SPI clock polarity. The value 0 indicates a low-level clock signal in the idle state, and 1 indicates a high-level clock signal in the idle state. |
SPI_MODE_3WIRE (1 << 2) |
Indicates that a single data line is used for both input and output. |
SPI_MODE_LOOP (1 << 3) |
|
SPI_MODE_LSBFE (1 << 4) |
Indicates the SPI data transfer order. The value 0 indicates that data is transferred from the most significant bit (MSB) to the least significant bit (LSB), and 1 indicates the opposite. |
SPI_MODE_NOCS (1 << 5) |
Indicates that there is only one SPI device, and no chip select (CS) is required. |
SPI_MODE_CS_HIGH (1 << 6) |
Indicates that the CS level is high when an SPI device is selected. |
SPI_MODE_READY (1 << 7) |
Indicates that the SPI device is set to low for pausing data transfer. |
Enumerations
SpiTransferMode { SPI_INTERRUPT_TRANSFER = 0, SPI_POLLING_TRANSFER, SPI_DMA_TRANSFER } |
Functions
SpiOpen (const struct SpiDevInfo info) |
struct DevHandle |
SpiTransfer (struct DevHandle handle, struct SpiMsg msgs, uint32_t count) |
|
SpiRead (struct DevHandle handle, uint8_t buf, uint32_t len) |
|
SpiWrite (struct DevHandle handle, uint8_t buf, uint32_t len) |
|
Details
Macro Definition Documentation
SPI_CLK_PHASE
#define SPI_CLK_PHASE (1 << 0)
Description:
Indicates the SPI clock phase. The value 0 indicates that data will be sampled on the first clock edge, and 1 indicates that data will be sampled on the second clock edge.
SPI_CLK_POLARITY
#define SPI_CLK_POLARITY (1 << 1)
Description:
Indicates the SPI clock polarity. The value 0 indicates a low-level clock signal in the idle state, and 1 indicates a high-level clock signal in the idle state.
SPI_MODE_3WIRE
#define SPI_MODE_3WIRE (1 << 2)
Description:
Indicates that a single data line is used for both input and output.
SPI_MODE_CS_HIGH
#define SPI_MODE_CS_HIGH (1 << 6)
Description:
Indicates that the CS level is high when an SPI device is selected.
SPI_MODE_LOOP
#define SPI_MODE_LOOP (1 << 3)
Description:
Indicates the SPI loopback mode.
SPI_MODE_LSBFE
#define SPI_MODE_LSBFE (1 << 4)
Description:
Indicates the SPI data transfer order. The value 0 indicates that data is transferred from the most significant bit (MSB) to the least significant bit (LSB), and 1 indicates the opposite.
SPI_MODE_NOCS
#define SPI_MODE_NOCS (1 << 5)
Description:
Indicates that there is only one SPI device, and no chip select (CS) is required.
SPI_MODE_READY
#define SPI_MODE_READY (1 << 7)
Description:
Indicates that the SPI device is set to low for pausing data transfer.
Enumeration Type Documentation
SpiTransferMode
enum [SpiTransferMode]($api-api-SmartVision-Devices-SPI.md#ga55946d1d895fc2b7b33007019de1668f)
Description:
Enumerates transfer modes of SPI data.
Attention:
The specific SPI controller determines which variables in this structure are supported.
SPI_INTERRUPT_TRANSFER | |
SPI_POLLING_TRANSFER | |
SPI_DMA_TRANSFER |
Function Documentation
SpiClose()
void SpiClose (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle)
Description:
Releases the handle of an SPI device.
Parameters:
handle | Indicates the pointer to the SPI device handle obtained via SpiOpen. |
SpiGetCfg()
int32_t SpiGetCfg (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, struct [SpiCfg]($api-api-SmartVision-Devices-SpiCfg.md) * cfg )
Description:
Obtains the configuration parameters of an SPI device.
Parameters:
handle | Indicates the pointer to the SPI device handle obtained via SpiOpen. |
cfg | Indicates the pointer to the configuration parameters. |
Returns:
Returns 0 if the operation is successful; returns a negative value otherwise.
SpiOpen()
struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md)* SpiOpen (const struct [SpiDevInfo]($api-api-SmartVision-Devices-SpiDevInfo.md) * info)
Description:
Obtains the handle of an SPI device.
Parameters:
info | Indicates the pointer to the SPI device information. |
Returns:
Returns the pointer to the handle of the SPI device if the operation is successful; returns NULL otherwise.
SpiRead()
int32_t SpiRead (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, uint8_t * buf, uint32_t len )
Description:
Reads data of a specified length from an SPI device.
Parameters:
handle | Indicates the pointer to the SPI device handle obtained via SpiOpen. |
buf | Indicates the pointer to the buffer for receiving the data. |
len | Indicates the length of the data to read. |
Returns:
Returns 0 if the operation is successful; returns a negative value otherwise.
SpiSetCfg()
int32_t SpiSetCfg (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, struct [SpiCfg]($api-api-SmartVision-Devices-SpiCfg.md) * cfg )
Description:
Sets configuration parameters for an SPI device.
Parameters:
handle | Indicates the pointer to the SPI device handle obtained via SpiOpen. |
cfg | Indicates the pointer to the configuration parameters. |
Returns:
Returns 0 if the operation is successful; returns a negative value otherwise.
SpiTransfer()
int32_t SpiTransfer (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, struct [SpiMsg]($api-api-SmartVision-Devices-SpiMsg.md) * msgs, uint32_t count )
Description:
Launches a custom transfer to an SPI device.
Parameters:
handle | Indicates the pointer to the SPI device handle obtained via SpiOpen. |
msgs | Indicates the pointer to the data to transfer. |
count | Indicates the length of the message structure array. |
Returns:
Returns 0 if the operation is successful; returns a negative value otherwise.
See also:
SpiWrite()
int32_t SpiWrite (struct [DevHandle]($api-api-SmartVision-Devices-DevHandle.md) * handle, uint8_t * buf, uint32_t len )
Description:
Writes data of a specified length to an SPI device.
Parameters:
handle | Indicates the pointer to the SPI device handle obtained via SpiOpen. |
buf | Indicates the pointer to the data to write. |
len | Indicates the length of the data to write. |
Returns:
Returns 0 if the operation is successful; returns a negative value otherwise.