Skip to content
GitLab
Explore
Sign in
Register
Changes
Page history
Update Events
authored
Mar 07, 2023
by
Angelo Zangari
Show whitespace changes
Inline
Side-by-side
Events.md
View page @
aa216d07
Events are widely used in _skyward-boardcore_ as a form of communication among software components.
Events are widely used in _skyward-boardcore_ as a form of communication among software components.
The
`src/shared/events/Event.h`
file defines the
**Event**
struct which only contains the event ID as a member
:
The
`src/shared/events/Event.h`
file defines the
**Event**
with its event ID
:
```
cpp
```
cpp
typedef
uint8_t
Event
;
typedef
uint8_t
Event
;
```
```
...
...