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
This commit is contained in:
parent
ec21937070
commit
dd512e0fbd
|
@ -96,7 +96,6 @@ struct ch_mutex {
|
|||
/* External declarations. */
|
||||
/*===========================================================================*/
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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_)
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Reference in New Issue