RadioLibSmol/src/modules/SX128x/SX1281.h
2020-04-07 13:30:05 +02:00

28 lines
453 B
C++

#ifndef _RADIOLIB_SX1281_H
#define _RADIOLIB_SX1281_H
#include "../../TypeDef.h"
#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);
#ifndef RADIOLIB_GODMODE
private:
#endif
};
#endif