diff --git a/src/fatfs/include/ffconf.h b/src/fatfs/include/ffconf.h index 2140d2e14..2b8ac1dcc 100644 --- a/src/fatfs/include/ffconf.h +++ b/src/fatfs/include/ffconf.h @@ -97,7 +97,7 @@ / 1 - ASCII (No extended character. Valid for only non-LFN configuration.) */ -#define _USE_LFN 1 +#define _USE_LFN 2 #define _MAX_LFN 255 /* The _USE_LFN option switches the LFN feature. / diff --git a/src/omv/stm32f4xx.ld.S b/src/omv/stm32f4xx.ld.S index 5d053f307..9e1e31492 100755 --- a/src/omv/stm32f4xx.ld.S +++ b/src/omv/stm32f4xx.ld.S @@ -60,7 +60,7 @@ _ram_end = 0x10010000; /* 64KB CCM */ _fb_base = 0x20000000; _stack_size = 0xC00; /* minimum amount of stack */ -_heap_size = 0xCD00; /* required amount of heap */ +_heap_size = 0xCF00; /* required amount of heap */ _fs_cache = 0x20030000-(16*1024); /* This needs to be max_line * 4 (VGA_line * 4)*/ _line_buf = _fs_cache - (640*4);