diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-01-03 11:32:45 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-01-03 11:32:45 +0000 |
commit | 87a513da86eb78349a66d08f266672eb1201f4c4 (patch) | |
tree | c4cdbf8c465b923bc4b309b0652ca441a7158fdb /os/fs | |
parent | 5a73ea36d8c957c9c1041dcad676c1f6347767c7 (diff) | |
download | ChibiOS-87a513da86eb78349a66d08f266672eb1201f4c4.tar.gz ChibiOS-87a513da86eb78349a66d08f266672eb1201f4c4.tar.bz2 ChibiOS-87a513da86eb78349a66d08f266672eb1201f4c4.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5025 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/fs')
-rw-r--r-- | os/fs/fs.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/os/fs/fs.hpp b/os/fs/fs.hpp index 599205ff5..57f776844 100644 --- a/os/fs/fs.hpp +++ b/os/fs/fs.hpp @@ -32,6 +32,10 @@ #include <ch.hpp>
/**
+ * @name Error codes
+ * @{
+ */
+/**
* @brief No error return code.
*/
#define FILE_OK 0
@@ -40,7 +44,11 @@ * @brief Error code from the file stream methods.
*/
#define FILE_ERROR 0xFFFFFFFFUL
+/** @} */
+/**
+ * @brief ChibiOS FS-related interfaces.
+ */
namespace chibios_fs {
/**
|