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

SX1281.h (513B)

      1 #if !defined(_RADIOLIB_SX1281_H)
      2 #define _RADIOLIB_SX1281_H
      3 
      4 #include "../../TypeDef.h"
      5 
      6 #if !defined(RADIOLIB_EXCLUDE_SX128X)
      7 
      8 #include "../../Module.h"
      9 #include "SX128x.h"
     10 
     11 /*!
     12   \class SX1281
     13 
     14   \brief Derived class for %SX1281 modules.
     15 */
     16 class SX1281: public SX128x {
     17   public:
     18     /*!
     19       \brief Default constructor.
     20 
     21       \param mod Instance of Module that will be used to communicate with the radio.
     22     */
     23     SX1281(Module* mod);
     24 
     25 #if !defined(RADIOLIB_GODMODE)
     26   private:
     27 #endif
     28 
     29 };
     30 
     31 #endif
     32 
     33 #endif