Possible fix for HW SPI on ESP32.

pull/2737/head
Blaz Kristan 2021-03-28 17:33:53 +02:00
rodzic 2e8d5311a5
commit 152ca63529
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -848,7 +848,8 @@ class PolyBus {
#ifdef ESP8266
if (pins[0] == P_8266_HS_MOSI && pins[1] == P_8266_HS_CLK) isHSPI = true;
#else
if(!num) isHSPI = true; // temporary hack to limit use of hardware SPI to a single SPI peripheral: only allow ESP32 hardware serial on segment 0
// temporary hack to limit use of hardware SPI to a single SPI peripheral: only allow ESP32 hardware serial on segment 0
if (!num && pins[0] == P_32_HS_MOSI && pins[1] == P_32_HS_CLK) isHSPI = true;
#endif
uint8_t t = I_NONE;
switch (busType) {