|
libxr
1.0
Want to be the best embedded framework
|
Public Member Functions | |
| STM32SPI (SPI_HandleTypeDef *spi_handle, RawData dma_buff_rx, RawData dma_buff_tx, uint32_t dma_enable_min_size=3) | |
| ErrorCode | ReadAndWrite (RawData read_data, ConstRawData write_data, OperationRW &op) override |
| 进行 SPI 读写操作。Performs SPI read and write operations. | |
| ErrorCode | SetConfig (SPI::Configuration config) override |
| 设置 SPI 配置参数。Sets SPI configuration parameters. | |
| ErrorCode | MemRead (uint16_t reg, RawData read_data, OperationRW &op) override |
| 从 SPI 设备的寄存器读取数据。 Reads data from a specific register of the SPI device. | |
| ErrorCode | MemWrite (uint16_t reg, ConstRawData write_data, OperationRW &op) override |
| 向 SPI 设备的寄存器写入数据。 Writes data to a specific register of the SPI device. | |
| uint32_t | GetMaxBusSpeed () const override |
| 获取 SPI 设备的最大时钟速度。Gets the maximum clock speed of the SPI device. | |
| Prescaler | GetMaxPrescaler () const override |
| 获取 SPI 设备的最大分频系数。Gets the maximum prescaler of the SPI device. | |
| ErrorCode | Transfer (size_t size, OperationRW &op) override |
| 进行一次SPI传输(使用当前缓冲区数据,零拷贝,支持双缓冲)。 Performs a SPI transfer (zero-copy, supports double buffering). | |
Public Member Functions inherited from LibXR::SPI | |
| SPI (RawData rx_buffer, RawData tx_buffer) | |
| 构造函数。Constructor. | |
| virtual ErrorCode | Read (RawData read_data, OperationRW &op) |
| 进行 SPI 读取操作。Performs SPI read operation. | |
| virtual ErrorCode | Write (ConstRawData write_data, OperationRW &op) |
| 进行 SPI 写入操作。Performs SPI write operation. | |
| uint32_t | GetBusSpeed () const |
| 获取 SPI 设备的当前总线速度。Gets the current bus speed of the SPI device. | |
| Prescaler | CalcPrescaler (uint32_t target_max_bus_speed, uint32_t target_min_bus_speed, bool increase) |
| 计算 SPI 分频系数。Calculates the SPI prescaler. | |
| RawData | GetRxBuffer () |
| 获取接收数据的缓冲区。Gets the buffer for storing received data. | |
| RawData | GetTxBuffer () |
| 获取发送数据的缓冲区。Gets the buffer for storing data to be sent. | |
| void | SwitchBuffer () |
| 切换缓冲区。Switches the buffer. | |
| void | SetActiveLength (size_t len) |
| 设置缓冲区的有效数据长度。Sets the length of valid data in the buffer. | |
| size_t | GetActiveLength () const |
| 获取缓冲区的有效数据长度。Gets the length of valid data in the buffer. | |
| Configuration & | GetConfig () |
| 获取 SPI 配置参数。Gets the SPI configuration parameters. | |
| bool | IsDoubleBuffer () const |
| 检查是否使用双缓冲区。Checks if double buffering is enabled. | |
Data Fields | |
| SPI_HandleTypeDef * | spi_handle_ |
| stm32_spi_id_t | id_ = STM32_SPI_ID_ERROR |
| uint32_t | dma_enable_min_size_ = 3 |
| OperationRW | rw_op_ |
| RawData | read_buff_ |
| bool | mem_read_ = false |
Static Public Attributes | |
| static STM32SPI * | map [STM32_SPI_NUMBER] = {nullptr} |
Additional Inherited Members | |
Public Types inherited from LibXR::SPI | |
| enum class | ClockPolarity : uint8_t { LOW = 0 , HIGH = 1 } |
| 定义 SPI 时钟极性。Defines the SPI clock polarity. More... | |
| enum class | ClockPhase : uint8_t { EDGE_1 = 0 , EDGE_2 = 1 } |
| 定义 SPI 时钟相位。Defines the SPI clock phase. More... | |
| enum class | Prescaler : uint8_t { DIV_1 = 0 , DIV_2 = 1 , DIV_4 = 2 , DIV_8 = 3 , DIV_16 = 4 , DIV_32 = 5 , DIV_64 = 6 , DIV_128 = 7 , DIV_256 = 8 , DIV_512 = 9 , DIV_1024 = 10 , DIV_2048 = 11 , DIV_4096 = 12 , DIV_8192 = 13 , DIV_16384 = 14 , DIV_32768 = 15 , DIV_65536 = 16 , UNKNOWN = 0xFF } |
| using | OperationRW = WriteOperation |
| 定义读写操作类型的别名。Defines an alias for the read/write operation type. | |
Static Public Member Functions inherited from LibXR::SPI | |
| static constexpr uint32_t | PrescalerToDiv (Prescaler prescaler) |
| 将分频系数转换为除数。Converts a prescaler to a divisor. | |
Definition at line 51 of file stm32_spi.hpp.
| STM32SPI::STM32SPI | ( | SPI_HandleTypeDef * | spi_handle, |
| RawData | dma_buff_rx, | ||
| RawData | dma_buff_tx, | ||
| uint32_t | dma_enable_min_size = 3 ) |
Definition at line 71 of file stm32_spi.cpp.
|
overridevirtual |
获取 SPI 设备的最大时钟速度。Gets the maximum clock speed of the SPI device.
Implements LibXR::SPI.
Definition at line 484 of file stm32_spi.cpp.
|
overridevirtual |
获取 SPI 设备的最大分频系数。Gets the maximum prescaler of the SPI device.
Implements LibXR::SPI.
Definition at line 626 of file stm32_spi.cpp.
|
overridevirtual |
从 SPI 设备的寄存器读取数据。 Reads data from a specific register of the SPI device.
| reg | 寄存器地址。Register address. |
| read_data | 读取的数据缓冲区。Buffer to store read data. |
| op | 操作类型(同步/异步)。Operation mode (sync/async). |
Implements LibXR::SPI.
Definition at line 345 of file stm32_spi.cpp.
|
overridevirtual |
向 SPI 设备的寄存器写入数据。 Writes data to a specific register of the SPI device.
| reg | 寄存器地址。Register address. |
| write_data | 写入的数据缓冲区。Buffer containing data to write. |
| op | 操作类型(同步/异步)。Operation mode (sync/async). |
Implements LibXR::SPI.
Definition at line 420 of file stm32_spi.cpp.
|
overridevirtual |
进行 SPI 读写操作。Performs SPI read and write operations.
| read_data | 存储读取数据的缓冲区。Buffer to store the read data. |
| write_data | 需要写入的数据缓冲区。Buffer containing the data to be written. |
| op | 读写操作类型。Type of read/write operation. |
Implements LibXR::SPI.
Definition at line 83 of file stm32_spi.cpp.
|
overridevirtual |
设置 SPI 配置参数。Sets SPI configuration parameters.
Implements LibXR::SPI.
Definition at line 245 of file stm32_spi.cpp.
|
overridevirtual |
进行一次SPI传输(使用当前缓冲区数据,零拷贝,支持双缓冲)。 Performs a SPI transfer (zero-copy, supports double buffering).
| size | 需要传输的数据大小。The size of the data to be transferred. |
| op | 读写操作类型。Type of read/write operation. |
Implements LibXR::SPI.
Definition at line 655 of file stm32_spi.cpp.
| uint32_t LibXR::STM32SPI::dma_enable_min_size_ = 3 |
Definition at line 76 of file stm32_spi.hpp.
| stm32_spi_id_t LibXR::STM32SPI::id_ = STM32_SPI_ID_ERROR |
Definition at line 74 of file stm32_spi.hpp.
|
static |
Definition at line 84 of file stm32_spi.hpp.
| bool LibXR::STM32SPI::mem_read_ = false |
Definition at line 82 of file stm32_spi.hpp.
| RawData LibXR::STM32SPI::read_buff_ |
Definition at line 80 of file stm32_spi.hpp.
| OperationRW LibXR::STM32SPI::rw_op_ |
Definition at line 78 of file stm32_spi.hpp.
| SPI_HandleTypeDef* LibXR::STM32SPI::spi_handle_ |
Definition at line 72 of file stm32_spi.hpp.