mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-09 22:21:23 +00:00
17 lines
321 B
C++
17 lines
321 B
C++
#pragma once
|
|
|
|
#include "SX128xInterface.h"
|
|
|
|
/**
|
|
* Our adapter for SX1280 radios
|
|
*/
|
|
|
|
#if !defined(ARCH_PORTDUINO)
|
|
|
|
class SX1280Interface : public SX128xInterface<SX1280>
|
|
{
|
|
public:
|
|
SX1280Interface(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE busy, SPIClass &spi);
|
|
};
|
|
|
|
#endif |