|
libxr
1.0
Want to be the best embedded framework
|
Data Structures | |
| struct | Resources |
Public Member Functions | |
| MSPM0SPI (Resources res, RawData dma_rx_buffer, RawData dma_tx_buffer, uint32_t dma_enable_min_size=3, SPI::Configuration config={SPI::ClockPolarity::LOW, SPI::ClockPhase::EDGE_1, SPI::Prescaler::DIV_4, false}) | |
| ErrorCode | ReadAndWrite (RawData read_data, ConstRawData write_data, OperationRW &op, bool in_isr=false) 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, bool in_isr=false) override |
| 从 SPI 设备的寄存器读取数据。 Reads data from a specific register of the SPI device. | |
| ErrorCode | MemWrite (uint16_t reg, ConstRawData write_data, OperationRW &op, bool in_isr=false) 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, bool in_isr=false) 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, bool in_isr=false) |
| 进行 SPI 读取操作。Performs SPI read operation. | |
| virtual ErrorCode | Write (ConstRawData write_data, OperationRW &op, bool in_isr=false) |
| 进行 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. | |
Static Public Member Functions | |
| static void | OnInterrupt (uint8_t index) |
| static constexpr uint8_t | ResolveIndex (IRQn_Type irqn) |
Static Public Member Functions inherited from LibXR::SPI | |
| static constexpr uint32_t | PrescalerToDiv (Prescaler prescaler) |
| 将分频系数转换为除数。Converts a prescaler to a divisor. | |
Private Types | |
| enum class | DmaMode : uint8_t { DUPLEX , RX_ONLY , TX_ONLY } |
Private Member Functions | |
| ErrorCode | PollingTransfer (uint8_t *rx, const uint8_t *tx, uint32_t len) |
| ErrorCode | CompleteDmaOperation (OperationRW &op, bool in_isr) |
| void | StartDmaDuplex (uint32_t count) |
| void | StartDmaRxOnly (uint32_t offset, uint32_t count) |
| void | StartDmaTxOnly (uint32_t count) |
| void | StopDma () |
| void | HandleInterrupt () |
| bool | DmaBusy () const |
Private Attributes | |
| Resources | res_ |
| uint32_t | dma_enable_min_size_ |
| OperationRW | rw_op_ |
| volatile ErrorCode | dma_result_ = ErrorCode::OK |
| RawData | read_buff_ |
| bool | mem_read_ = false |
| DmaMode | dma_mode_ = DmaMode::DUPLEX |
| uint32_t | masked_interrupts_for_tx_only_ = 0 |
| uint32_t | rx_only_offset_ = 0 |
| uint32_t | rx_only_remaining_ = 0 |
| volatile bool | busy_ = false |
Static Private Attributes | |
| static constexpr uint8_t | MAX_SPI_INSTANCES = 2 |
| static constexpr uint8_t | INVALID_INSTANCE_INDEX = 0xFF |
| static constexpr uint32_t | RX_ONLY_REPEAT_TX_MAX_FRAMES = 256U |
| static MSPM0SPI * | instance_map_ [MAX_SPI_INSTANCES] = {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. | |
Definition at line 11 of file mspm0_spi.hpp.
|
strongprivate |
Definition at line 66 of file mspm0_spi.hpp.
| MSPM0SPI::MSPM0SPI | ( | Resources | res, |
| RawData | dma_rx_buffer, | ||
| RawData | dma_tx_buffer, | ||
| uint32_t | dma_enable_min_size = 3, | ||
| SPI::Configuration | config = {SPI::ClockPolarity::LOW, SPI::ClockPhase::EDGE_1, SPI::Prescaler::DIV_4, false} ) |
Definition at line 19 of file mspm0_spi.cpp.
|
private |
Definition at line 254 of file mspm0_spi.cpp.
|
private |
Definition at line 150 of file mspm0_spi.cpp.
|
overridevirtual |
获取 SPI 设备的最大时钟速度。Gets the maximum clock speed of the SPI device.
Implements LibXR::SPI.
Definition at line 76 of file mspm0_spi.cpp.
|
overridevirtual |
获取 SPI 设备的最大分频系数。Gets the maximum prescaler of the SPI device.
Implements LibXR::SPI.
Definition at line 78 of file mspm0_spi.cpp.
|
private |
Definition at line 584 of file mspm0_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). |
| in_isr | 是否在中断中进行操作。Whether the operation is performed in an ISR. |
Implements LibXR::SPI.
Definition at line 449 of file mspm0_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). |
| in_isr | 是否在中断中进行操作。Whether the operation is performed in an ISR. |
Implements LibXR::SPI.
Definition at line 512 of file mspm0_spi.cpp.
|
static |
Definition at line 568 of file mspm0_spi.cpp.
|
private |
Definition at line 80 of file mspm0_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. |
| in_isr | 是否在中断中进行操作。Whether the operation is performed in an ISR. |
Implements LibXR::SPI.
Definition at line 301 of file mspm0_spi.cpp.
|
inlinestaticconstexpr |
Definition at line 48 of file mspm0_spi.hpp.
|
overridevirtual |
设置 SPI 配置参数。Sets SPI configuration parameters.
Implements LibXR::SPI.
Definition at line 43 of file mspm0_spi.cpp.
|
private |
Definition at line 161 of file mspm0_spi.cpp.
|
private |
Definition at line 182 of file mspm0_spi.cpp.
|
private |
Definition at line 211 of file mspm0_spi.cpp.
|
private |
Definition at line 234 of file mspm0_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. |
| in_isr | 是否在中断中进行操作。Whether the operation is performed in an ISR. |
Implements LibXR::SPI.
Definition at line 397 of file mspm0_spi.cpp.
|
private |
Definition at line 103 of file mspm0_spi.hpp.
|
private |
Definition at line 94 of file mspm0_spi.hpp.
|
private |
Definition at line 99 of file mspm0_spi.hpp.
|
private |
Definition at line 96 of file mspm0_spi.hpp.
|
staticprivate |
Definition at line 105 of file mspm0_spi.hpp.
|
staticconstexprprivate |
Definition at line 74 of file mspm0_spi.hpp.
|
private |
Definition at line 100 of file mspm0_spi.hpp.
|
staticconstexprprivate |
Definition at line 73 of file mspm0_spi.hpp.
|
private |
Definition at line 98 of file mspm0_spi.hpp.
|
private |
Definition at line 97 of file mspm0_spi.hpp.
|
private |
Definition at line 93 of file mspm0_spi.hpp.
|
private |
Definition at line 95 of file mspm0_spi.hpp.
|
private |
Definition at line 101 of file mspm0_spi.hpp.
|
private |
Definition at line 102 of file mspm0_spi.hpp.
|
staticconstexprprivate |
Definition at line 75 of file mspm0_spi.hpp.