375 * Uncomment to enable god mode - all methods and member variables in all classes will be made public, thus making them accessible from Arduino code.
376 * Warning: Come on, it's called GOD mode - obviously only use this if you know what you're doing.
377 * Failure to heed the above warning may result in bricked module.
378 */
379//#define RADIOLIB_GODMODE
380
381/*
382 * Uncomment to enable pre-defined modules when using RadioShield.
383 */
384//#define RADIOLIB_RADIOSHIELD
385
386/*
387 * Uncomment to enable static-only memory management: no dynamic allocation will be performed.
388 * Warning: Large static arrays will be created in some methods. It is not advised to send large packets in this mode.
389 */
390
391//#define RADIOLIB_STATIC_ONLY
392
393/*
394 * Uncomment to enable "paranoid" SPI mode
395 * Every write to an SPI register using SPI set function will be verified by a subsequent read operation.
396 * This improves reliablility, but slightly slows down communication.