Added Parse_KEvent_ID()

This commit is contained in:
Joe Kearney 2026-02-27 20:55:40 -06:00
parent daa1a2a1ec
commit 77118fbd4e
3 changed files with 37 additions and 4 deletions

View file

@ -24,8 +24,8 @@
*
*/
#ifndef EVENTS_H
#define EVENTS_H
#ifndef KEVENTS_H
#define KEVENTS_H
//! Event identifiers used by the SystemK.
typedef enum
@ -103,5 +103,6 @@ void Init_KEvents(void);
void Post_KEvent(KEvent_T *event);
void Post_KEvent_From_ISR(KEvent_T *event, portBASE_TYPE *xHigherPriorityTaskWoken);
portBASE_TYPE Receive_KEvent(KEvent_T *event);
SystemKResult_T Parse_KEvent_ID(const char *str, KEvent_T *event);
#endif // EVENTS_H
#endif // KEVENTS_H