480 * Uncomment to enable god mode - all methods and member variables in all classes will be made public, thus making them accessible from Arduino code.
481 * Warning: Come on, it's called GOD mode - obviously only use this if you know what you're doing.
482 * Failure to heed the above warning may result in bricked module.
483 */
484//#define RADIOLIB_GODMODE
485
486/*
487 * Uncomment to enable low-level hardware access
488 * This will make some hardware methods like SPI get/set accessible from the user sketch - think of it as "god mode lite"
489 * Warning: RadioLib won't stop you from writing invalid stuff into your device, so it's quite easy to brick your module with this.
490 */
491//#define RADIOLIB_LOW_LEVEL
492
493/*
494 * Uncomment to enable pre-defined modules when using RadioShield.
495 */
496//#define RADIOLIB_RADIOSHIELD
497
498/*
499 * Uncomment to enable static-only memory management: no dynamic allocation will be performed.
500 * Warning: Large static arrays will be created in some methods. It is not advised to send large packets in this mode.