Support for TLORA 2.1-1.8

This commit is contained in:
Thomas Göttgens
2022-11-02 13:12:15 +01:00
parent b1f2025558
commit 3e82cd7dd4
8 changed files with 54 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
#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