12 public spi::SPIDevice<spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_LOW, spi::CLOCK_PHASE_LEADING,
13 spi::DATA_RATE_8MHZ> {
17 void setup()
override;
22 bool read_reg(uint8_t reg, uint8_t *value)
override;
23 bool write_reg(uint8_t reg, uint8_t value)
override;
The SPIDevice is what components using the SPI will create.
void set_device_address(uint8_t device_addr)
void dump_config() override
Implementation of SPI Controller mode.
bool write_reg(uint8_t reg, uint8_t value) override
bool read_reg(uint8_t reg, uint8_t *value) override