X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/7b78a5a287827db9e9b16286f3604aef69b37c5c..70702af1370e44e32fb2c3c507e4759a187b4fe5:/fatfs/doc/en/rc.html diff --git a/fatfs/doc/en/rc.html b/fatfs/doc/en/rc.html index 306671a..0e45fbe 100644 --- a/fatfs/doc/en/rc.html +++ b/fatfs/doc/en/rc.html @@ -6,34 +6,43 @@ -FatFs - Return Codes +FatFs - API Return Code -

Return Code of the File Functions

-

On the FatFs API, most of file functions return common result code as enum type FRESULT. When a function succeeded, it returns zero, otherwise returns non-zero value that indicates type of error.

+

Return Code of API Functions

+

Most of API functions return common result code as enum type FRESULT. When an API function succeeded, it returns zero (FR_OK), otherwise it returns non-zero value indicates type of error.

+
FR_OK (0)
The function succeeded.
+
FR_DISK_ERR
-
An unrecoverable hard error occured in the lower layer, disk_read(), disk_write() or disk_ioctl() function.
Note that if once this error occured at any operation to an open file, the file object is aborted and all operations to the file except for close will be rejected.
+
An unrecoverable hard error occured in the lower layer, disk_read, disk_write or disk_ioctl function.
Note that if once this error occured at any operation to an open file, the file object is aborted and all operations to the file except for close will be rejected.
+
FR_INT_ERR
Assertion failed. An insanity is detected in the internal process. One of the following possibilities is suspected. Note that if once this error occured at any operation to an open file, the file object is aborted and all operations to the file except for close will be rejected.
+
FR_NOT_READY
-
The disk drive cannot work due to incorrect medium removal or disk_initialize() function failed.
+
The storage device cannot work due to a failure of disk_initialize function due to no medium or any other reason.
+
FR_NO_FILE
Could not find the file.
+
FR_NO_PATH
Could not find the path.
+
FR_INVALID_NAME
The given string is invalid as the path name.
+
FR_DENIED
The required access was denied due to one of the following reasons:
+
FR_EXIST
-
Name collision. Any object that has the same name is already existing.
+
Name collision. An object with the same name is already existing.
+
FR_INVALID_OBJECT
-
The file/directory object structure is invalid or a null pointer is given. All open objects of the logical drive are invalidated by the voulme mount process.
+
The file/directory object is invalid or a null pointer is given. There are some reasons as follows: + +
+
FR_WRITE_PROTECTED
-
Any write mode operation against the write-protected media.
+
A write mode operation against the write-protected media.
+
FR_INVALID_DRIVE
-
Invalid drive number is specified in the path name. A null pointer is given as the path name. (Related option: _VOLUMES)
+
Invalid drive number is specified in the path name. A null pointer is given as the path name. (Related option: _VOLUMES)
+
FR_NOT_ENABLED
-
Work area for the logical drive has not been registered by f_mount() function.
+
Work area for the logical drive has not been registered by f_mount function.
+
FR_NO_FILESYSTEM
There is no valid FAT volume on the drive.
+
FR_MKFS_ABORTED
-
The f_mkfs() function aborted before start in format due to a reason as follows: +
The f_mkfs function aborted before start in format due to a reason as follows:
+
FR_TIMEOUT
-
The function was canceled due to a timeout of thread-safe control. (Related option: _TIMEOUT)
+
The function was canceled due to a timeout of thread-safe control. (Related option: _TIMEOUT)
+
FR_LOCKED
-
The operation to the object was rejected by file sharing control. (Related option: _FS_LOCK)
+
The operation to the object was rejected by file sharing control. (Related option: _FS_LOCK)
+
FR_NOT_ENOUGH_CORE
Not enough memory for the operation. There is one of the following reasons:
+
FR_TOO_MANY_OPEN_FILES
-
Number of open objects has been reached maximum value and no more object can be opened. (Related option: _FS_LOCK)
+
Number of open objects has been reached maximum value and no more object can be opened. (Related option: _FS_LOCK)
+
FR_INVALID_PARAMETER
-
The given parameter is invalid or there is any inconsistent.
+
The given parameter is invalid or there is an inconsistent for the volume.
+

Return