Reordered compile options

pull/261/head
jgromes 2021-02-12 21:05:27 +01:00
rodzic 9a9af85fdc
commit 6b46623133
1 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -371,6 +371,13 @@
#define RADIOLIB_VERBOSE_PRINTLN(...) {}
#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.
* 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
/*
* 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
#if !defined(RADIOLIB_STATIC_ARRAY_SIZE)
#define RADIOLIB_STATIC_ARRAY_SIZE 256