mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Merge branch 'xxxajk' of github.com:felis/USB_Host_Shield_2.0 into xxxajk
This commit is contained in:
commit
59d20a17c8
1 changed files with 10 additions and 0 deletions
10
settings.h
10
settings.h
|
@ -34,6 +34,9 @@
|
|||
/* Set this to 1 if you are using a Black Widdow */
|
||||
#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
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -66,4 +69,11 @@
|
|||
#include <avr/io.h>
|
||||
#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 */
|
||||
|
|
Loading…
Reference in a new issue