From 20236a8a990cae729bca1f7a4e0d619e92a5e37d Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 20 Dec 2014 21:15:16 +0000 Subject: stmhal: Upgrade to latest fatfs driver. --- stmhal/fatfs/doc/en/dwrite.html | 68 ----------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 stmhal/fatfs/doc/en/dwrite.html (limited to 'stmhal/fatfs/doc/en/dwrite.html') diff --git a/stmhal/fatfs/doc/en/dwrite.html b/stmhal/fatfs/doc/en/dwrite.html deleted file mode 100644 index af1ae805f..000000000 --- a/stmhal/fatfs/doc/en/dwrite.html +++ /dev/null @@ -1,68 +0,0 @@ - - -
- - - - - -The disk_write writes sector(s) to the disk.
--DRESULT disk_write ( - BYTE drv, /* [IN] Physical drive number */ - const BYTE* buff, /* [IN] Write data (may be non aligned) */ - DWORD sector, /* [IN] Sector number to write */ - UINT count /* [IN] Number of sectors to write */ -); --
This function is not required in read only configuration. The specified memory address is not that always aligned to word boundary because the type of pointer is defined as BYTE. For more information, read description in disk_read function.
-Application program MUST NOT call this function while FatFs is in use, or FAT structure on the volume can be corrapted.
-