mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 21:51:46 +00:00
10 lines
309 B
C++
10 lines
309 B
C++
#include "SX1280Interface.h"
|
|
#include "configuration.h"
|
|
#include "error.h"
|
|
|
|
SX1280Interface::SX1280Interface(LockingArduinoHal *hal, RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst,
|
|
RADIOLIB_PIN_TYPE busy)
|
|
: SX128xInterface(hal, cs, irq, rst, busy)
|
|
{
|
|
}
|