Reordered compile options
This commit is contained in:
parent
9a9af85fdc
commit
6b46623133
1 changed files with 7 additions and 7 deletions
|
@ -371,6 +371,13 @@
|
||||||
#define RADIOLIB_VERBOSE_PRINTLN(...) {}
|
#define RADIOLIB_VERBOSE_PRINTLN(...) {}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Uncomment to enable "paranoid" SPI mode
|
||||||
|
* Every write to an SPI register using SPI set function will be verified by a subsequent read operation.
|
||||||
|
* This improves reliablility, but slightly slows down communication.
|
||||||
|
*/
|
||||||
|
#define RADIOLIB_SPI_PARANOID
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Uncomment to enable god mode - all methods and member variables in all classes will be made public, thus making them accessible from Arduino code.
|
* Uncomment to enable god mode - all methods and member variables in all classes will be made public, thus making them accessible from Arduino code.
|
||||||
* Warning: Come on, it's called GOD mode - obviously only use this if you know what you're doing.
|
* Warning: Come on, it's called GOD mode - obviously only use this if you know what you're doing.
|
||||||
|
@ -390,13 +397,6 @@
|
||||||
|
|
||||||
//#define RADIOLIB_STATIC_ONLY
|
//#define RADIOLIB_STATIC_ONLY
|
||||||
|
|
||||||
/*
|
|
||||||
* Uncomment to enable "paranoid" SPI mode
|
|
||||||
* Every write to an SPI register using SPI set function will be verified by a subsequent read operation.
|
|
||||||
* This improves reliablility, but slightly slows down communication.
|
|
||||||
*/
|
|
||||||
#define RADIOLIB_SPI_PARANOID
|
|
||||||
|
|
||||||
// set the size of static arrays to use
|
// set the size of static arrays to use
|
||||||
#if !defined(RADIOLIB_STATIC_ARRAY_SIZE)
|
#if !defined(RADIOLIB_STATIC_ARRAY_SIZE)
|
||||||
#define RADIOLIB_STATIC_ARRAY_SIZE 256
|
#define RADIOLIB_STATIC_ARRAY_SIZE 256
|
||||||
|
|
Loading…
Add table
Reference in a new issue