Fixed bug 2692510 and some other small documentation errors.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@852 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
ac4e799160
commit
07e6ae3a59
|
@ -62,7 +62,7 @@
|
||||||
* subject to jitter, see @ref article_jitter. Such sources are not
|
* subject to jitter, see @ref article_jitter. Such sources are not
|
||||||
* supported on all the architectures.<br>
|
* supported on all the architectures.<br>
|
||||||
* Fast interrupts are not allowed to invoke any operating system API from
|
* Fast interrupts are not allowed to invoke any operating system API from
|
||||||
* within their handlers. Fast interrupt sources may however pend a lower
|
* within their handlers. Fast interrupt sources may, however, pend a lower
|
||||||
* priority regular interrupt where access to the operating system is
|
* priority regular interrupt where access to the operating system is
|
||||||
* possible.
|
* possible.
|
||||||
* - <b>Non Maskable Interrupts</b>. Non maskable interrupt sources are
|
* - <b>Non Maskable Interrupts</b>. Non maskable interrupt sources are
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
* <b>and</b> an error is detected <b>or</b> after explicitly invoking
|
* <b>and</b> an error is detected <b>or</b> after explicitly invoking
|
||||||
* @p chSysHalt().
|
* @p chSysHalt().
|
||||||
* .
|
* .
|
||||||
* Note that the above state are just <b>Logical States</b> that may have no
|
* Note that the above states are just <b>Logical States</b> that may have no
|
||||||
* real associated machine state on some architectures. The following diagram
|
* real associated machine state on some architectures. The following diagram
|
||||||
* shows the possible transitions between the states:
|
* shows the possible transitions between the states:
|
||||||
*
|
*
|
||||||
|
|
|
@ -90,6 +90,7 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
|
||||||
- FIX: Fixed makefile problems in the AT91SAM7X256 and STM32 demos (bugs
|
- FIX: Fixed makefile problems in the AT91SAM7X256 and STM32 demos (bugs
|
||||||
2686347 and 2686451).
|
2686347 and 2686451).
|
||||||
- FIX: Fixed AT91SAM7X256 EMAC driver (bug 2686349).
|
- FIX: Fixed AT91SAM7X256 EMAC driver (bug 2686349).
|
||||||
|
- FIX: Fixed small some errors in the documentation (bug 2692510).
|
||||||
- OPT: Small optimization to the Cortex-M3 thread startup code, improved thread
|
- OPT: Small optimization to the Cortex-M3 thread startup code, improved thread
|
||||||
related performance scores and smaller code.
|
related performance scores and smaller code.
|
||||||
- OPT: Alternative, non-inlined and more compact, implementations for
|
- OPT: Alternative, non-inlined and more compact, implementations for
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
/**
|
/**
|
||||||
* @file chdebug.c
|
* @file chdebug.c
|
||||||
* @brief ChibiOS/RT Debug code.
|
* @brief ChibiOS/RT Debug code.
|
||||||
* @addtogroup CondVars
|
* @addtogroup Debug
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -123,15 +123,17 @@ extern "C" {
|
||||||
/**
|
/**
|
||||||
* Provided for backward compatibility.
|
* Provided for backward compatibility.
|
||||||
* @deprecated Will be removed in 1.2.0.
|
* @deprecated Will be removed in 1.2.0.
|
||||||
|
* @see chTimeNow()
|
||||||
*/
|
*/
|
||||||
#define chSysGetTime() chTimeNow()
|
#define chSysGetTime() chTimeNow()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provided for backward compatibility.
|
* Provided for backward compatibility.
|
||||||
* @deprecated Will be removed in 1.2.0.
|
* @deprecated Will be removed in 1.2.0.
|
||||||
|
* @see chTimeIsWithin()
|
||||||
*/
|
*/
|
||||||
#define chSysInTimeWindow(start, end) chTimeIsWithin(start, end)
|
#define chSysInTimeWindow(start, end) chTimeIsWithin(start, end)
|
||||||
|
|
||||||
#endif /* _VT_H_ */
|
#endif /* _VT_H_ */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
Loading…
Reference in New Issue