Update FatFS library copies to the latest R0.09a version.
This commit is contained in:
parent
376160e2c0
commit
c4aeb6d5ab
12 changed files with 1036 additions and 711 deletions
|
@ -38,7 +38,7 @@ DRESULT disk_read (
|
|||
BYTE drv, /* Physical drive number (0..) */
|
||||
BYTE *buff, /* Data buffer to store read data */
|
||||
DWORD sector, /* Sector address (LBA) */
|
||||
BYTE count /* Number of sectors to read (1..255) */
|
||||
BYTE count /* Number of sectors to read (1..128) */
|
||||
)
|
||||
{
|
||||
DataflashManager_ReadBlocks_RAM(sector, count, buff);
|
||||
|
@ -55,7 +55,7 @@ DRESULT disk_write (
|
|||
BYTE drv, /* Physical drive number (0..) */
|
||||
const BYTE *buff, /* Data to be written */
|
||||
DWORD sector, /* Sector address (LBA) */
|
||||
BYTE count /* Number of sectors to write (1..255) */
|
||||
BYTE count /* Number of sectors to write (1..128) */
|
||||
)
|
||||
{
|
||||
DataflashManager_WriteBlocks_RAM(sector, count, buff);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue