git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@565 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
c93c50fbc4
commit
e04e6ada04
19
docs/ch.txt
19
docs/ch.txt
|
@ -435,6 +435,25 @@
|
||||||
* Non portable code.
|
* Non portable code.
|
||||||
* @ingroup Kernel
|
* @ingroup Kernel
|
||||||
* @file chcore.c Non portable code.
|
* @file chcore.c Non portable code.
|
||||||
|
* @file chcore.h Non portable macros and structures.
|
||||||
|
*/
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @defgroup Types Types
|
||||||
|
* @{
|
||||||
|
* System types and macros.
|
||||||
|
* @ingroup Kernel
|
||||||
|
* @file chtypes.h System types and code modifiers.
|
||||||
|
*/
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @defgroup Inline Inline
|
||||||
|
* @{
|
||||||
|
* System inline-able code.
|
||||||
|
* @ingroup Kernel
|
||||||
|
* @file inline.h Inline versions of some critical system routines.
|
||||||
*/
|
*/
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,11 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @addtogroup Inline
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef _INLINE_H_
|
#ifndef _INLINE_H_
|
||||||
#define _INLINE_H_
|
#define _INLINE_H_
|
||||||
|
|
||||||
|
@ -78,3 +83,5 @@ static INLINE Thread *list_remove(ThreadsList *tlp) {
|
||||||
#endif /* CH_OPTIMIZE_SPEED */
|
#endif /* CH_OPTIMIZE_SPEED */
|
||||||
|
|
||||||
#endif /* _INLINE_H_ */
|
#endif /* _INLINE_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @addtogroup Core
|
* @addtogroup Types
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue