Fixed bug #989.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12453 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
parent
e7234a42e4
commit
d4a83ebcce
|
@ -236,7 +236,7 @@ void chEvtBroadcastFlagsI(event_source_t *esp, eventflags_t flags) {
|
||||||
/* When flags == 0 the thread will always be signaled because the
|
/* When flags == 0 the thread will always be signaled because the
|
||||||
source does not emit any flag.*/
|
source does not emit any flag.*/
|
||||||
if ((flags == (eventflags_t)0) ||
|
if ((flags == (eventflags_t)0) ||
|
||||||
((elp->flags & elp->wflags) != (eventflags_t)0)) {
|
((flags & elp->wflags) != (eventflags_t)0)) {
|
||||||
chEvtSignalI(elp->listener, elp->events);
|
chEvtSignalI(elp->listener, elp->events);
|
||||||
}
|
}
|
||||||
elp = elp->next;
|
elp = elp->next;
|
||||||
|
|
|
@ -165,6 +165,8 @@
|
||||||
- EX: Updated LSM303DLHC to 1.1.0 (backported to 18.2.1).
|
- EX: Updated LSM303DLHC to 1.1.0 (backported to 18.2.1).
|
||||||
- HAL: Fixed ethernet registry error for STM32F469/479 (bug #990)
|
- HAL: Fixed ethernet registry error for STM32F469/479 (bug #990)
|
||||||
(backported to 18.2.2 and 17.6.5).
|
(backported to 18.2.2 and 17.6.5).
|
||||||
|
- RT: Fixed bug in chEvtBroadcastFlagsI (bug #989)
|
||||||
|
(backported to 18.2.2 and 17.6.5).
|
||||||
- HAL: Fixed OS-Less Cortex-M HAL functionality broken (bug #987)
|
- HAL: Fixed OS-Less Cortex-M HAL functionality broken (bug #987)
|
||||||
(backported to 18.2.2).
|
(backported to 18.2.2).
|
||||||
- HAL: Fixed broken functionality of MFS module (bug #986)
|
- HAL: Fixed broken functionality of MFS module (bug #986)
|
||||||
|
|
Loading…
Reference in New Issue