RadioLib
Universal wireless communication library for Arduino
SX1282.h
1 #if !defined(_RADIOLIB_SX1282_H)
2 #define _RADIOLIB_SX1282_H
3 
4 #include "../../TypeDef.h"
5 
6 #if !RADIOLIB_EXCLUDE_SX128X
7 
8 #include "../../Module.h"
9 #include "SX128x.h"
10 #include "SX1280.h"
11 
16 class SX1282: public SX1280 {
17  public:
22  SX1282(Module* mod);
23 
24 #if !RADIOLIB_GODMODE
25  private:
26 #endif
27 
28 };
29 
30 #endif
31 
32 #endif
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition: Module.h:68
Derived class for SX1280 modules.
Definition: SX1280.h:16
Derived class for SX1282 modules.
Definition: SX1282.h:16
SX1282(Module *mod)
Default constructor.
Definition: SX1282.cpp:5