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