Added getIRQGpio to return DIO0 for Lilygo T3S3 SX1276

This commit is contained in:
Kevin Le
2026-05-28 15:13:14 +07:00
parent cd964cd9c7
commit f576767d28
3 changed files with 13 additions and 3 deletions
@@ -0,0 +1,10 @@
#pragma once
#include <helpers/ESP32Board.h>
class LilygoT3S3SX1276Board : public ESP32Board {
public:
uint32_t getIRQGpio() override {
return P_LORA_DIO_0; // default for SX1276
}
};