mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 13:41:28 +00:00
11 lines
348 B
C++
11 lines
348 B
C++
#if RADIOLIB_EXCLUDE_SX126X != 1
|
|
#include "SX1262Interface.h"
|
|
#include "configuration.h"
|
|
#include "error.h"
|
|
|
|
SX1262Interface::SX1262Interface(LockingArduinoHal *hal, RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst,
|
|
RADIOLIB_PIN_TYPE busy)
|
|
: SX126xInterface(hal, cs, irq, rst, busy)
|
|
{
|
|
}
|
|
#endif |