Skip to content

Commit

Permalink
Fix SPI inverted clock on ESP8266 (esphome#5416)
Browse files Browse the repository at this point in the history
  • Loading branch information
clydebarrow authored Sep 22, 2023
1 parent 1100f67 commit 518ecb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 2 additions & 4 deletions esphome/components/spi/spi.h
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ class SPIClient {
: bit_order_(bit_order), mode_(mode), data_rate_(data_rate) {}

virtual void spi_setup() {
esph_log_d("spi_device", "mode %u, data_rate %ukHz", (unsigned) this->mode_, (unsigned) (this->data_rate_ / 1000));
this->delegate_ = this->parent_->register_device(this, this->mode_, this->bit_order_, this->data_rate_, this->cs_);
}

Expand Down Expand Up @@ -398,10 +399,7 @@ class SPIDevice : public SPIClient {

void set_data_rate(uint32_t data_rate) { this->data_rate_ = data_rate; }

void set_bit_order(SPIBitOrder order) {
this->bit_order_ = order;
esph_log_d("spi.h", "bit order set to %d", order);
}
void set_bit_order(SPIBitOrder order) { this->bit_order_ = order; }

void set_mode(SPIMode mode) { this->mode_ = mode; }

Expand Down
5 changes: 5 additions & 0 deletions esphome/components/spi/spi_arduino.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ class SPIDelegateHw : public SPIDelegate {
void begin_transaction() override {
#ifdef USE_RP2040
SPISettings const settings(this->data_rate_, static_cast<BitOrder>(this->bit_order_), this->mode_);
#elif defined(ESP8266)
// Arduino ESP8266 library has mangled values for SPI modes :-(
auto mode = (this->mode_ & 0x01) + ((this->mode_ & 0x02) << 3);
ESP_LOGV(TAG, "8266 mangled SPI mode 0x%X", mode);
SPISettings const settings(this->data_rate_, this->bit_order_, mode);
#else
SPISettings const settings(this->data_rate_, this->bit_order_, this->mode_);
#endif
Expand Down

0 comments on commit 518ecb4

Please sign in to comment.