Merge pull request #4977 from pewpew-game/samd21-filesystem-size
Allow changing size of the filesystem on samd21 per board
This commit is contained in:
commit
0e88b77b3e
|
@ -92,11 +92,13 @@
|
||||||
|
|
||||||
#ifdef SAMD21
|
#ifdef SAMD21
|
||||||
|
|
||||||
|
#ifndef CIRCUITPY_INTERNAL_FLASH_FILESYSTEM_SIZE
|
||||||
#if INTERNAL_FLASH_FILESYSTEM
|
#if INTERNAL_FLASH_FILESYSTEM
|
||||||
#define CIRCUITPY_INTERNAL_FLASH_FILESYSTEM_SIZE (64 * 1024)
|
#define CIRCUITPY_INTERNAL_FLASH_FILESYSTEM_SIZE (64 * 1024)
|
||||||
#else
|
#else
|
||||||
#define CIRCUITPY_INTERNAL_FLASH_FILESYSTEM_SIZE (0)
|
#define CIRCUITPY_INTERNAL_FLASH_FILESYSTEM_SIZE (0)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef CIRCUITPY_INTERNAL_NVM_SIZE
|
#ifndef CIRCUITPY_INTERNAL_NVM_SIZE
|
||||||
#define CIRCUITPY_INTERNAL_NVM_SIZE (256)
|
#define CIRCUITPY_INTERNAL_NVM_SIZE (256)
|
||||||
|
|
Loading…
Reference in New Issue