summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 6a5c881013..4a25b915ed 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -218,7 +218,8 @@
218 218
219/* Enable the directory cache and tagcache in RAM if we have 219/* Enable the directory cache and tagcache in RAM if we have
220 * plenty of RAM. Both features can be enabled independently. */ 220 * plenty of RAM. Both features can be enabled independently. */
221#if defined(MEMORYSIZE) && (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER) 221#if (!defined(MEMORYSIZE) || (MEMORYSIZE > 8) || (MEM > 8)) && \
222 !defined(BOOTLOADER)
222#define HAVE_DIRCACHE 223#define HAVE_DIRCACHE
223#ifdef HAVE_TAGCACHE 224#ifdef HAVE_TAGCACHE
224#define HAVE_TC_RAMCACHE 225#define HAVE_TC_RAMCACHE