RadioLibSmol/src/protocols/ExternalRadio/ExternalRadio.h
2023-04-12 23:16:18 +02:00

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