git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9924 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2016-11-19 16:58:52 +00:00
parent ec21937070
commit dd512e0fbd
6 changed files with 1 additions and 5 deletions

View File

@ -96,7 +96,6 @@ struct ch_mutex {
/* External declarations. */ /* External declarations. */
/*===========================================================================*/ /*===========================================================================*/
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif

View File

@ -297,7 +297,6 @@ static inline bool chThdQueueIsEmptyI(threads_queue_t *tqp) {
return queue_isempty(tqp); return queue_isempty(tqp);
} }
/** /**
* @brief Dequeues and wakes up one thread from the threads queue object. * @brief Dequeues and wakes up one thread from the threads queue object.
* @details Dequeues one thread from the queue without checking if the queue * @details Dequeues one thread from the queue without checking if the queue

View File

@ -103,7 +103,6 @@ void _port_thread_start(msg_t (*pf)(void *), void *p) {
while(1); while(1);
} }
/** /**
* @brief Returns the current value of the realtime counter. * @brief Returns the current value of the realtime counter.
* *

View File

@ -217,7 +217,6 @@ struct context {
port_isr_context_flag = false; \ port_isr_context_flag = false; \
} }
/** /**
* @brief IRQ handler function declaration. * @brief IRQ handler function declaration.
* @note @p id can be a function name or a vector number depending on the * @note @p id can be a function name or a vector number depending on the

View File

@ -115,7 +115,6 @@
/* Module data structures and types. */ /* Module data structures and types. */
/*===========================================================================*/ /*===========================================================================*/
/* The following code is not processed when the file is included from an /* The following code is not processed when the file is included from an
asm module.*/ asm module.*/
#if !defined(_FROM_ASM_) #if !defined(_FROM_ASM_)

View File

@ -73,6 +73,7 @@
***************************************************************************** *****************************************************************************
*** 16.1.6 *** *** 16.1.6 ***
- RT: Fixed double empty lines (bug #793).
- HAL: Fixed wrong entries in STM32L4 registry (bug #792). - HAL: Fixed wrong entries in STM32L4 registry (bug #792).
- HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver - HAL: Fixed missing ARPE bit in CR1 initialization on STM32 GPT driver
(bug #791). (bug #791).