Skip to content

Tags: wycox/fatfs

Tags

R0.13c

Toggle R0.13c's commit message
R0.13c patch 4

April 13, 2019

Some compiler warns about unused variable and something.

R0.13b

Toggle R0.13b's commit message
R0.13b patch 3

Sep 3, 2018

f_getcwd function uses memory location beyond the output buffer length specified by argument if
the buffer has a valid drive number. It can collapse the data located next to the output buffer.
This problem was reported via email.

R0.13a

Toggle R0.13a's commit message
R0.13a patch 1

October 27, 2017

File open and directory listing of any file on the exFAT root directory
beyond the cluster boundary can fail with FR_INT_ERR.

R0.13

Toggle R0.13's commit message
R0.13 patch 2

September 2, 2017

f_fdisk function and f_mkfs function create the partition table with
wrong C-H-S parameters.

R0.12

Toggle R0.12's commit message
FatFs R0.12, released April 12, 2016

R0.12c

Toggle R0.12c's commit message
R0.12c patch 3

April 22, 2017

On the exFAT volume, new cluster allocation for directory fails with
FR_INT_ERR. (Appeared at R0.12c)

R0.12b

Toggle R0.12b's commit message
FatFs R0.12b, released September 4, 2016

R0.12a

Toggle R0.12a's commit message
FatFs R0.12a, released July 10, 2016

R0.11a

Toggle R0.11a's commit message
FatFs R0.11a, released September 5, 2015

R0.11

Toggle R0.11's commit message
R0.11 with patch 1

March 9, 2015

At the thread-safe configuration (_FS_REENTRANT == 1), an unexpected
operation to the volume can result a wrong volume lock. For example,
f_open() ==> media change ==> f_close(), in this case the volume gets
left locked and following function calls to the volume will be locked
out until a forced initialization of the volume by f_mount(). To solve
this problem, apply this patch to the ff.c.