mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 11:49:58 +00:00
9 lines
299 B
C++
9 lines
299 B
C++
|
#include "configuration.h"
|
||
|
#include "LLCC68Interface.h"
|
||
|
#include "error.h"
|
||
|
|
||
|
LLCC68Interface::LLCC68Interface(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE busy,
|
||
|
SPIClass &spi)
|
||
|
: SX126xInterface(cs, irq, rst, busy, spi)
|
||
|
{
|
||
|
}
|