![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class implements the SPI interface using the Arduino Framework. More...
This class implements the SPI interface using the Arduino Framework.
Note: The Pin assignments for SCK, MOSI, MISO are set/determined by the Arduino framework when it creates the SPI, SPI1, SPI2, etc. instances.
#include <Master.h>
Classes | |
struct | SPIConfig_T |
SPI Settings (note: needed because the SPISettings class does not allow changing the baudrate once instantiated) More... | |
Public Member Functions | |
Master (SPIClass &spiInstance, SPIConfig_T spiConfig) | |
Constructor. | |
bool | start (size_t newBaudRateHz=0) noexcept |
See Driver::SPI::Master. | |
void | stop () noexcept |
See Driver::SPI::Master. | |
bool | transfer (size_t numBytes, const void *srcData, void *dstData=nullptr) noexcept |
See Driver::SPI::Master. | |
![]() | |
virtual | ~Master () |
Virtual destructor. | |
Protected Attributes | |
SPIClass & | m_spiDevice |
Handle the Arduino driver instance. | |
SPIConfig_T | m_spiConfig |
Handle the SPI configuration. | |
uint8_t | m_buf [OPTION_DRIVER_SPI_ARDUINO_OUTPUT_ONLY_BUF_SIZE] |
Temporary buffer need to performing transfer since the Arduino SPI interface uses a single buffer for writing/reading data. | |
bool | m_started |
Track my started state. | |
Driver::SPI::Arduino::Master::Master | ( | SPIClass & | spiInstance, |
SPIConfig_T | spiConfig | ||
) |
Constructor.
|
virtualnoexcept |
See Driver::SPI::Master.
Implements Driver::SPI::Master.
|
virtualnoexcept |
See Driver::SPI::Master.
Implements Driver::SPI::Master.
|
virtualnoexcept |
See Driver::SPI::Master.
Implements Driver::SPI::Master.
|
protected |
|
protected |
Handle the SPI configuration.
|
protected |
Handle the Arduino driver instance.
|
protected |
Track my started state.