From 8561671cb8c8c81cca6407d47437a7238b111ada Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 24 Jun 2017 16:35:31 +1000 Subject: Upgrade to from FATFS-0.10b to FATFS-0.13 --- 3rdparty/fatfs-0.10b/doc/en/error.html | 62 ---------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 3rdparty/fatfs-0.10b/doc/en/error.html (limited to '3rdparty/fatfs-0.10b/doc/en/error.html') diff --git a/3rdparty/fatfs-0.10b/doc/en/error.html b/3rdparty/fatfs-0.10b/doc/en/error.html deleted file mode 100644 index 2a875189..00000000 --- a/3rdparty/fatfs-0.10b/doc/en/error.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - -FatFs - f_error - - - - -
-

f_error

-

The f_error tests for an error on a file.

-
-int f_error (
-  FIL* fp   /* [IN] File object */
-);
-
-
- - -
-

Parameters

-
-
fp
-
Pointer to the open file object structure.
-
-
- - -
-

Return Values

-

Returns a non-zero value if a hard error has occured; otherwise it returns a zero.

-
- - -
-

Description

-

In this revision, this function is implemented as a macro.

-
-#define f_error(fp) (((fp)->flag & FA__ERROR) ? 1 : 0)
-
-
- - -
-

QuickInfo

-

Always available.

-
- - -
-

See Also

-

f_open, FIL

-
- -

Return

- - -- cgit v1.2.3