RadioLibSmol/src/modules/SX128x/SX1281.h
2021-03-13 19:57:44 +01:00

33 lines
513 B
C++

#if !defined(_RADIOLIB_SX1281_H)
#define _RADIOLIB_SX1281_H
#include "../../TypeDef.h"
#if !defined(RADIOLIB_EXCLUDE_SX128X)
#include "../../Module.h"
#include "SX128x.h"
/*!
\class SX1281
\brief Derived class for %SX1281 modules.
*/
class SX1281: public SX128x {
public:
/*!
\brief Default constructor.
\param mod Instance of Module that will be used to communicate with the radio.
*/
SX1281(Module* mod);
#if !defined(RADIOLIB_GODMODE)
private:
#endif
};
#endif
#endif