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

63 lines
1.2 KiB
C++

#if !defined(_RADIOLIB_SX1280_H)
#define _RADIOLIB_SX1280_H
#include "../../TypeDef.h"
#if !defined(RADIOLIB_EXCLUDE_SX128X)
#include "../../Module.h"
#include "SX128x.h"
#include "SX1281.h"
/*!
\class SX1280
\brief Derived class for %SX1280 modules.
*/
class SX1280: public SX1281 {
public:
/*!
\brief Default constructor.
\param mod Instance of Module that will be used to communicate with the radio.
*/
SX1280(Module* mod);
/*!
\brief Blocking ranging method.
\param master Whether to execute ranging in master mode (true) or slave mode (false).
\param addr Ranging address to be used.
\returns \ref status_codes
*/
int16_t range(bool master, uint32_t addr);
/*!
\brief Interrupt-driven ranging method.
\param master Whether to execute ranging in master mode (true) or slave mode (false).
\param addr Ranging address to be used.
\returns \ref status_codes
*/
int16_t startRanging(bool master, uint32_t addr);
/*!
\brief Gets ranging result of the last ranging exchange.
\returns Ranging result in meters.
*/
float getRangingResult();
#if !defined(RADIOLIB_GODMODE)
private:
#endif
};
#endif
#endif