mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Use HW SPI for rp2040 (#4955)
This commit is contained in:
parent
e1b0d86098
commit
d4099d68a7
1 changed files with 24 additions and 0 deletions
|
@ -87,6 +87,30 @@ void SPIComponent::setup() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif // USE_ESP32
|
#endif // USE_ESP32
|
||||||
|
#ifdef USE_RP2040
|
||||||
|
static uint8_t spi_bus_num = 0;
|
||||||
|
if (spi_bus_num >= 2) {
|
||||||
|
use_hw_spi = false;
|
||||||
|
}
|
||||||
|
if (use_hw_spi) {
|
||||||
|
SPIClassRP2040 *spi;
|
||||||
|
if (spi_bus_num == 0) {
|
||||||
|
spi = &SPI;
|
||||||
|
} else {
|
||||||
|
spi = &SPI1;
|
||||||
|
}
|
||||||
|
spi_bus_num++;
|
||||||
|
|
||||||
|
if (miso_pin != -1)
|
||||||
|
spi->setRX(miso_pin);
|
||||||
|
if (mosi_pin != -1)
|
||||||
|
spi->setTX(mosi_pin);
|
||||||
|
spi->setSCK(clk_pin);
|
||||||
|
this->hw_spi_ = spi;
|
||||||
|
this->hw_spi_->begin();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif // USE_RP2040
|
||||||
#endif // USE_SPI_ARDUINO_BACKEND
|
#endif // USE_SPI_ARDUINO_BACKEND
|
||||||
|
|
||||||
if (this->miso_ != nullptr) {
|
if (this->miso_ != nullptr) {
|
||||||
|
|
Loading…
Reference in a new issue