mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-10 14:41:26 +00:00
17 lines
321 B
C++
17 lines
321 B
C++
#pragma once
|
|
|
|
#include "SX128xInterface.h"
|
|
|
|
/**
|
|
* Our adapter for SX1281 radios
|
|
*/
|
|
|
|
#if !defined(ARCH_PORTDUINO)
|
|
|
|
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);
|
|
};
|
|
|
|
#endif |