* Tbeam fix: GPIO assignments wrong

このコミットが含まれているのは:
Scott Powell
2025-03-31 13:03:33 +11:00
コミット 3a920986ca
+2 -2
ファイルの表示
@@ -5,9 +5,9 @@ TBeamBoard board;
#if defined(P_LORA_SCLK) #if defined(P_LORA_SCLK)
static SPIClass spi; static SPIClass spi;
RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY, spi); RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_0, P_LORA_RESET, P_LORA_DIO_1, spi);
#else #else
RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_1, P_LORA_RESET, P_LORA_BUSY); RADIO_CLASS radio = new Module(P_LORA_NSS, P_LORA_DIO_0, P_LORA_RESET, P_LORA_DIO_1);
#endif #endif
WRAPPER_CLASS radio_driver(radio, board); WRAPPER_CLASS radio_driver(radio, board);