We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a93eb commit d95bee6Copy full SHA for d95bee6
settings.h
@@ -103,12 +103,18 @@
103
#define WIICAMERA
104
#endif
105
106
+// To use some other locking (e.g. freertos),
107
+// define XMEM_ACQUIRE_SPI and XMEM_RELEASE_SPI to point to your lock and unlock.
108
+// NOTE: NO argument is passed. You have to do this within your routine for
109
+// whatever you are using to lock and unlock.
110
+#if !defined(XMEM_ACQUIRE_SPI)
111
#if USE_XMEM_SPI_LOCK || defined(USE_MULTIPLE_APP_API)
112
#include <xmem.h>
113
#else
114
#define XMEM_ACQUIRE_SPI() (void(0))
115
#define XMEM_RELEASE_SPI() (void(0))
116
117
+#endif
118
119
#if !defined(EXT_RAM) && defined(EXT_RAM_STACK) || defined(EXT_RAM_HEAP)
120
0 commit comments