22 lines
No EOL
422 B
C++
22 lines
No EOL
422 B
C++
#if !defined(_RADIOLIB_EXTERNAL_RADIO_H)
|
|
#define _RADIOLIB_EXTERNAL_RADIO_H
|
|
|
|
#include "../../TypeDef.h"
|
|
#include "../../Module.h"
|
|
#include "../../ArduinoHal.h"
|
|
|
|
#include "../PhysicalLayer/PhysicalLayer.h"
|
|
|
|
class ExternalRadio: public PhysicalLayer {
|
|
public:
|
|
#if defined(RADIOLIB_BUILD_ARDUINO)
|
|
ExternalRadio();
|
|
#endif
|
|
ExternalRadio(Hal *hal);
|
|
|
|
Module* getMod();
|
|
private:
|
|
Module* mod;
|
|
};
|
|
|
|
#endif |