git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12453 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
Giovanni Di Sirio 2018-12-02 06:14:45 +00:00
parent e7234a42e4
commit d4a83ebcce
2 changed files with 3 additions and 1 deletions

View File

@ -236,7 +236,7 @@ void chEvtBroadcastFlagsI(event_source_t *esp, eventflags_t flags) {
/* When flags == 0 the thread will always be signaled because the
source does not emit any flag.*/
if ((flags == (eventflags_t)0) ||
((elp->flags & elp->wflags) != (eventflags_t)0)) {
((flags & elp->wflags) != (eventflags_t)0)) {
chEvtSignalI(elp->listener, elp->events);
}
elp = elp->next;

View File

@ -165,6 +165,8 @@
- EX: Updated LSM303DLHC to 1.1.0 (backported to 18.2.1).
- HAL: Fixed ethernet registry error for STM32F469/479 (bug #990)
(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)
(backported to 18.2.2).
- HAL: Fixed broken functionality of MFS module (bug #986)