lock settings for spi (unused at this time)

This commit is contained in:
Andrew J. Kroll 2013-10-08 11:36:15 -04:00
parent 8efdf711fd
commit 02b685e329

View file

@ -40,6 +40,9 @@
/* Set this to 1 if you are using a Black Widdow */ /* Set this to 1 if you are using a Black Widdow */
#define USE_UHS_BLACK_WIDDOW 0 #define USE_UHS_BLACK_WIDDOW 0
/* Set this to 1 if you are using xmem2 and expanded memory and multitasking */
#define USE_XMEM_SPI_LOCK 0
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// MASS STORAGE // MASS STORAGE
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
@ -75,4 +78,11 @@
#include <avr/io.h> #include <avr/io.h>
#endif #endif
#if USE_XMEM_SPI_LOCK
#include <xmem.h>
#else
#define XMEM_ACQUIRE_SPI() (void(0))
#define XMEM_RELEASE_SPI() (void(0))
#endif
#endif /* SETTINGS_H */ #endif /* SETTINGS_H */