git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5025 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2013-01-03 11:32:45 +00:00
parent 5a73ea36d8
commit 87a513da86
2 changed files with 11 additions and 0 deletions

View File

@ -31,6 +31,10 @@
#include <ch.hpp>
/**
* @name Error codes
* @{
*/
/**
* @brief No error return code.
*/
@ -40,7 +44,11 @@
* @brief Error code from the file stream methods.
*/
#define FILE_ERROR 0xFFFFFFFFUL
/** @} */
/**
* @brief ChibiOS FS-related interfaces.
*/
namespace chibios_fs {
/**

View File

@ -31,6 +31,9 @@
#ifndef _CH_HPP_
#define _CH_HPP_
/**
* @brief ChibiOS kernel-related classes and interfaces.
*/
namespace chibios_rt {
/*------------------------------------------------------------------------*