modify the error check of rt_event_recv()

This commit is contained in:
Han Xinrong
2020-12-13 19:11:04 +08:00
parent 3bb8edf4c1
commit a1fe7b1ddf
2 changed files with 21 additions and 3 deletions

View File

@@ -603,7 +603,13 @@ static void _stack_thread(void *parameter)
result = rt_event_recv(stack_event, STACK_EV_DISCON | STACK_EV_DISPATCH | STACK_EV_KEY,
RT_EVENT_FLAG_OR | RT_EVENT_FLAG_CLEAR, next_timeout, &event);
RT_ASSERT(result == RT_EOK);
if (result == -RT_ETIMEOUT) {
LOG_E("wait completed timeout");
continue;
}else if (result == -RT_ERROR) {
LOG_E("event received error");
continue;
}
if (evt_dispatch_worker() != RT_EOK)
{