RadioLib
Universal wireless communication library for Arduino
BuildOptUser.h
1 #if !defined(_RADIOLIB_USER_BUILD_OPTIONS_H)
2 #define _RADIOLIB_USER_BUILD_OPTIONS_H
3 
4 // this file can be used to define any user build options
5 // most commonly, RADIOLIB_EXCLUDE_* macros
6 // or enabling debug output
7 
8 //#define RADIOLIB_DEBUG_BASIC (1) // basic debugging (e.g. reporting GPIO timeouts or module not being found)
9 //#define RADIOLIB_DEBUG_PROTOCOL (1) // protocol information (e.g. LoRaWAN internal information)
10 //#define RADIOLIB_DEBUG_SPI (1) // verbose transcription of all SPI communication - produces large debug logs!
11 
12 #endif