Remove LFN support from the loader FatFs as it is not used. Slims down the binary by ~4 KBs

This commit is contained in:
Aurora
2016-04-18 04:47:53 +02:00
parent d2d6e786c7
commit a11124a3d6
3 changed files with 3 additions and 351 deletions

View File

@@ -10,7 +10,7 @@ static u32 loadPayload(const char *pattern)
char path[30] = "/aurei/payloads";
DIR dir;
FILINFO info = { .lfname = NULL };
FILINFO info;
FRESULT result = f_findfirst(&dir, &info, path, pattern);