mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-23 03:00:56 +00:00
12 lines
282 B
C
12 lines
282 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "SX128xInterface.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Our adapter for SX1281 radios
|
||
|
|
*/
|
||
|
|
class SX1281Interface : public SX128xInterface<SX1281>
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SX1281Interface(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE busy, SPIClass &spi);
|
||
|
|
};
|