mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-10 14:41:26 +00:00
13 lines
311 B
C
13 lines
311 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "LR11x0Interface.h"
|
||
|
|
||
|
/**
|
||
|
* Our adapter for LR1110 radios
|
||
|
*/
|
||
|
class LR1110Interface : public LR11x0Interface<LR1110>
|
||
|
{
|
||
|
public:
|
||
|
LR1110Interface(LockingArduinoHal *hal, RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst,
|
||
|
RADIOLIB_PIN_TYPE busy);
|
||
|
};
|