acid-drop- Hacking the planet from a LilyGo T-Deck using custom firmware |
git clone git://git.acid.vegas/acid-drop.git |
Log | Files | Refs | Archive | README | LICENSE |
SX1282.h (533B)
1 #if !defined(_RADIOLIB_SX1282_H) 2 #define _RADIOLIB_SX1282_H 3 4 #include "../../TypeDef.h" 5 6 #if !defined(RADIOLIB_EXCLUDE_SX128X) 7 8 #include "../../Module.h" 9 #include "SX128x.h" 10 #include "SX1280.h" 11 12 /*! 13 \class SX1282 14 15 \brief Derived class for %SX1282 modules. 16 */ 17 class SX1282: public SX1280 { 18 public: 19 /*! 20 \brief Default constructor. 21 22 \param mod Instance of Module that will be used to communicate with the radio. 23 */ 24 SX1282(Module* mod); 25 26 #if !defined(RADIOLIB_GODMODE) 27 private: 28 #endif 29 30 }; 31 32 #endif 33 34 #endif