From dd512e0fbd352e48d92f79f11bc306ca12a8b3b6 Mon Sep 17 00:00:00 2001 From: Rocco Marco Guglielmi Date: Sat, 19 Nov 2016 16:58:52 +0000 Subject: [PATCH] Fixed Bug #793 git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9924 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/include/chmtx.h | 1 - os/rt/include/chthreads.h | 1 - os/rt/ports/SIMIA32/chcore.c | 1 - os/rt/ports/SIMIA32/chcore.h | 1 - os/rt/templates/chcore.h | 1 - readme.txt | 1 + 6 files changed, 1 insertion(+), 5 deletions(-) diff --git a/os/rt/include/chmtx.h b/os/rt/include/chmtx.h index caa0c8266..d40a7d64c 100644 --- a/os/rt/include/chmtx.h +++ b/os/rt/include/chmtx.h @@ -96,7 +96,6 @@ struct ch_mutex { /* External declarations. */ /*===========================================================================*/ - #ifdef __cplusplus extern "C" { #endif diff --git a/os/rt/include/chthreads.h b/os/rt/include/chthreads.h index 690c45f7f..d894d87c9 100644 --- a/os/rt/include/chthreads.h +++ b/os/rt/include/chthreads.h @@ -297,7 +297,6 @@ static inline bool chThdQueueIsEmptyI(threads_queue_t *tqp) { return queue_isempty(tqp); } - /** * @brief Dequeues and wakes up one thread from the threads queue object. * @details Dequeues one thread from the queue without checking if the queue diff --git a/os/rt/ports/SIMIA32/chcore.c b/os/rt/ports/SIMIA32/chcore.c index 92d0fed7f..adc18cbb8 100644 --- a/os/rt/ports/SIMIA32/chcore.c +++ b/os/rt/ports/SIMIA32/chcore.c @@ -103,7 +103,6 @@ void _port_thread_start(msg_t (*pf)(void *), void *p) { while(1); } - /** * @brief Returns the current value of the realtime counter. * diff --git a/os/rt/ports/SIMIA32/chcore.h b/os/rt/ports/SIMIA32/chcore.h index 0caa1ecfd..d40838045 100644 --- a/os/rt/ports/SIMIA32/chcore.h +++ b/os/rt/ports/SIMIA32/chcore.h @@ -217,7 +217,6 @@ struct context { port_isr_context_flag = false; \ } - /** * @brief IRQ handler function declaration. * @note @p id can be a function name or a vector number depending on the diff --git a/os/rt/templates/chcore.h b/os/rt/templates/chcore.h index bcc47a0f4..f12c06aa4 100644 --- a/os/rt/templates/chcore.h +++ b/os/rt/templates/chcore.h @@ -115,7 +115,6 @@ /* Module data structures and types. */ /*===========================================================================*/ - /* The following code is not processed when the file is included from an asm module.*/ #if !defined(_FROM_ASM_) diff --git a/readme.txt b/readme.txt index e6a19612a..0821ebc27 100644 --- a/readme.txt +++ b/readme.txt @@ -73,6 +73,7 @@ ***************************************************************************** *** 16.1.6 *** +- RT: Fixed double empty lines (bug #793). - HAL: Fixed wrong entries in STM32L4 registry (bug #792). - HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver (bug #791).