What's the best (or proper or safest) way to clear/reset an event object? The event object will have several (but not all, obviously) bits set in its AND mask. The event is also using an OR mask (it's what I use to "abort"). So without posting this abort event, how can I clear the event object?
My first thought is/was to just call Event_pend() with no timeout, i.e., BIOS_NO_WAIT, but the help documentation hints that this approach would be bad since it will be another task calling this Event_pend(). (It states that only one task can pend on an event, or something along those lines.)