From 3395ea99d621cf4903f1fd29db51918c7b9a8689 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Fri, 9 Jan 2009 20:23:21 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@598 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- docs/ch.txt | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'docs/ch.txt') diff --git a/docs/ch.txt b/docs/ch.txt index a0baed6bb..151633ffc 100644 --- a/docs/ch.txt +++ b/docs/ch.txt @@ -25,7 +25,7 @@ * MinGW demo available. *
  • Preemptive scheduling.
  • *
  • 128 priority levels.
  • - *
  • Multiple threads at the same priorily level allowed.
  • + *
  • Multiple threads at the same priority level allowed.
  • *
  • Round robin scheduling for threads at the same priority level.
  • *
  • Unlimited number of threads.
  • *
  • Unlimited number of virtual timers.
  • @@ -67,7 +67,7 @@ * \a Evt, \a Msg, \a IQ, \a OQ, \a HQ,\a FDD, \a HDD, \a Dbg, \a Heap, \a Pool. * The suffix is not present for normal APIs but can be one of * the following: "I" for APIs meant to be invoked within the system mutex - * zone, "S" for APIs only useable from within the system mutex zone but not + * zone, "S" for APIs only usable from within the system mutex zone but not * from interrupt handlers.
    * The APIs without suffix can be invoked only from the user code outsize the * system mutex zone and not from interrupt handlers unless differently @@ -155,7 +155,7 @@ *
  • Pure THUMB mode, this is the preferred mode for code size. In this mode * the execution speed is slower than the ARM mode. This mode is enabled * when all the modules are compiled in THUMB mode, see the Makefiles.
  • - *
  • Interworking mode, when in the sistem there are ARM modules mixed with + *
  • Interworking mode, when in the system there are ARM modules mixed with * THUMB modules then the interworking compiler option is enabled. This is * usually the slowest mode and the code size is not as good as in pure * THUMB mode.
  • @@ -421,7 +421,6 @@ /** * @defgroup Kernel Kernel * @{ - * @file ch.h ChibiOS/RT main header file, it includes everything else. */ /** @} */ @@ -463,12 +462,12 @@ /** @} */ /** - * @defgroup System System Management + * @defgroup Initialization Initialization * @{ - * Initialization and system-related APIs and procedures. + * Initialization APIs and procedures. * @ingroup Kernel - * @file sys.h ChibiOS/RT system-related header file. - * @file chsys.c ChibiOS/RT system-related code. + * @file ch.h ChibiOS/RT main include file, it includes everything else. + * @file chinit.c ChibiOS/RT Initialization code. */ /** @} */ @@ -691,9 +690,9 @@ * threads).
    * There are several kind of queues:
    *