Update fatfs in main application
This commit is contained in:
		@@ -1,8 +1,8 @@
 | 
			
		||||
/*----------------------------------------------------------------------------/
 | 
			
		||||
/  FatFs - Generic FAT Filesystem module  R0.14                               /
 | 
			
		||||
/  FatFs - Generic FAT Filesystem module  R0.14a                              /
 | 
			
		||||
/-----------------------------------------------------------------------------/
 | 
			
		||||
/
 | 
			
		||||
/ Copyright (C) 2019, ChaN, all right reserved.
 | 
			
		||||
/ Copyright (C) 2020, ChaN, all right reserved.
 | 
			
		||||
/
 | 
			
		||||
/ FatFs module is an open source software. Redistribution and use of FatFs in
 | 
			
		||||
/ source and binary forms, with or without modification, are permitted provided
 | 
			
		||||
@@ -20,7 +20,7 @@
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#ifndef FF_DEFINED
 | 
			
		||||
#define FF_DEFINED	86606	/* Revision ID */
 | 
			
		||||
#define FF_DEFINED	80196	/* Revision ID */
 | 
			
		||||
 | 
			
		||||
#ifdef __cplusplus
 | 
			
		||||
extern "C" {
 | 
			
		||||
@@ -345,10 +345,6 @@ TCHAR* f_gets (TCHAR* buff, int len, FIL* fp);						/* Get a string from the fil
 | 
			
		||||
#define f_rmdir(path) f_unlink(path)
 | 
			
		||||
#define f_unmount(path) f_mount(0, path, 0)
 | 
			
		||||
 | 
			
		||||
#ifndef EOF
 | 
			
		||||
#define EOF (-1)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
/  FatFs Functional Configurations
 | 
			
		||||
/---------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
#define FFCONF_DEF	86606	/* Revision ID */
 | 
			
		||||
#define FFCONF_DEF	80196	/* Revision ID */
 | 
			
		||||
 | 
			
		||||
/*---------------------------------------------------------------------------/
 | 
			
		||||
/ Function Configurations
 | 
			
		||||
@@ -205,8 +205,8 @@
 | 
			
		||||
/  To enable the 64-bit LBA, also exFAT needs to be enabled. (FF_FS_EXFAT == 1) */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#define FF_MIN_GPT		0x100000000
 | 
			
		||||
/* Minimum number of sectors to switch GPT format to create partition in f_mkfs and
 | 
			
		||||
#define FF_MIN_GPT		0x10000000
 | 
			
		||||
/* Minimum number of sectors to switch GPT as partitioning format in f_mkfs and
 | 
			
		||||
/  f_fdisk function. 0x100000000 max. This option has no effect when FF_LBA64 == 0. */
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@@ -237,7 +237,7 @@
 | 
			
		||||
#define FF_FS_NORTC		0
 | 
			
		||||
#define FF_NORTC_MON	1
 | 
			
		||||
#define FF_NORTC_MDAY	1
 | 
			
		||||
#define FF_NORTC_YEAR	2019
 | 
			
		||||
#define FF_NORTC_YEAR	2020
 | 
			
		||||
/* The option FF_FS_NORTC switches timestamp functiton. If the system does not have
 | 
			
		||||
/  any RTC function or valid timestamp is not needed, set FF_FS_NORTC = 1 to disable
 | 
			
		||||
/  the timestamp function. Every object modified by FatFs will have a fixed timestamp
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user