Merge branch 'master' into t5-epaper-pro

This commit is contained in:
Manuel
2025-10-19 22:08:25 +02:00
committed by GitHub
24 changed files with 945 additions and 103 deletions

View File

@@ -854,7 +854,14 @@ void setup()
SPI.begin();
}
#elif !defined(ARCH_ESP32) // ARCH_RP2040
#if defined(RAK3401) || defined(RAK13302)
pinMode(WB_IO2, OUTPUT);
digitalWrite(WB_IO2, HIGH);
SPI1.setPins(LORA_MISO, LORA_SCK, LORA_MOSI);
SPI1.begin();
#else
SPI.begin();
#endif
#else
// ESP32
#if defined(HW_SPI1_DEVICE)