X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/5366852335044c1e68a5c32548d3051cc943552f..289f6a146c0b2087607d8d8659531ea90142779a:/fatfs/doc/en/dinit.html diff --git a/fatfs/doc/en/dinit.html b/fatfs/doc/en/dinit.html deleted file mode 100644 index c22df47..0000000 --- a/fatfs/doc/en/dinit.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - -FatFs - disk_initialize - - - - -
-

disk_initialize

-

The disk_initialize function initializes the storage device.

-
-DSTATUS disk_initialize (
-  BYTE pdrv           /* [IN] Physical drive number */
-);
-
-
- -
-

Parameter

-
-
pdrv
-
Physical drive number to identify the target device.
-
-
- - -
-

Return Values

-

This function returns a disk status as the result. For details of the disk status, refer to the disk_status() function.

-
- -
-

Description

-

This function initializes a storage device and put it ready to generic read/write data. When the function succeeded, STA_NOINIT flag in the return value is cleared.

-

Application program MUST NOT call this function, or FAT structure on the volume can be broken. To re-initialize the file system, use f_mount() function instead. This function is called at volume mount process by FatFs module to manage the media change.

-
- -

Return

- -