From 1e0eee8bc4cda865471b0e9bd3caaf4c690ac068 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 14 Feb 2009 21:28:10 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@769 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- readme.txt | 4 +++- src/chevents.c | 2 +- src/chlists.c | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 9ee439f12..51ddc1db1 100644 --- a/readme.txt +++ b/readme.txt @@ -73,9 +73,11 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process, ***************************************************************************** *** 1.1.1unstable *** -- FIX: Fixed a small problem in the chcore.c template file. +- FIX: Fixed a problem with some event APIs not showing in the documentation + (backported in stable branch). - FIX: Fixed wrong assertions in chThdWait() and chHeapFree() (backported in stable branch). +- FIX: Fixed a small problem in the chcore.c template file. - NEW: Mode flexible debug configuration options, removed the old CH_USE_DEBUG and CH_USE_TRACE. diff --git a/src/chevents.c b/src/chevents.c index c49b90874..01437079e 100644 --- a/src/chevents.c +++ b/src/chevents.c @@ -193,7 +193,7 @@ void chEvtDispatch(const evhandler_t handlers[], eventmask_t mask) { } } -#if CH_OPTIMIZE_SPEED || !CH_USE_EVENTS_TIMEOUT || defined(__DOXIGEN__) +#if CH_OPTIMIZE_SPEED || !CH_USE_EVENTS_TIMEOUT || defined(__DOXYGEN__) /** * @brief A pending event among those specified in @p ewmask is selected, * cleared and its mask returned. diff --git a/src/chlists.c b/src/chlists.c index 82526feb2..39bea02cc 100644 --- a/src/chlists.c +++ b/src/chlists.c @@ -25,7 +25,7 @@ */ #include -#if !CH_OPTIMIZE_SPEED || defined(__DOXIGEN__) +#if !CH_OPTIMIZE_SPEED || defined(__DOXYGEN__) /** * @brief Inserts a thread into a priority ordered queue. * -- cgit v1.2.3