mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 19:59:55 +00:00
12 lines
282 B
C++
12 lines
282 B
C++
#pragma once
|
|
|
|
#include "SX126xInterface.h"
|
|
|
|
/**
|
|
* Our adapter for SX1262 radios
|
|
*/
|
|
class SX1262Interface : public SX126xInterface<SX1262>
|
|
{
|
|
public:
|
|
SX1262Interface(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE busy, SPIClass &spi);
|
|
}; |