Add support for SX1281 on 2.4 GHz

This commit is contained in:
Thomas Göttgens
2022-10-16 19:07:58 +02:00
parent fc57a9daa4
commit f6119639bb
8 changed files with 383 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
#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);
};