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 |
RFM22.h (404B)
1 #if !defined(_RADIOLIB_RFM22_H) 2 #define _RADIOLIB_RFM22_H 3 4 #include "../../TypeDef.h" 5 6 #if !defined(RADIOLIB_EXCLUDE_RFM2X) 7 8 #include "../../Module.h" 9 #include "../Si443x/Si443x.h" 10 #include "../Si443x/Si4432.h" 11 12 /*! 13 \class RFM22 14 15 \brief Only exists as alias for Si4432, since there seems to be no difference between %RFM22 and %Si4432 modules. 16 */ 17 RADIOLIB_TYPE_ALIAS(Si4432, RFM22); 18 19 #endif 20 21 #endif