diff --git a/include/sta/system_event.hpp b/include/sta/system_event.hpp index 62ba480..990322b 100644 --- a/include/sta/system_event.hpp +++ b/include/sta/system_event.hpp @@ -35,14 +35,14 @@ namespace sta /** * @brief Signal startup system event */ - void signalStartupCompleted(); + void signalStartupEvent(); /** * @brief Wait for startup system event. * * Blocking while waiting */ - void waitForStartup(); + void waitForStartupEvent(); } // namespace sta diff --git a/src/system_event.cpp b/src/system_event.cpp index 57efb46..fbd1649 100644 --- a/src/system_event.cpp +++ b/src/system_event.cpp @@ -22,12 +22,12 @@ namespace sta } - void signalStartupCompleted() + void signalStartupEvent() { signalSystemEvents(STA_SYSTEM_EVENT_STARTUP); } - void waitForStartup() + void waitForStartupEvent() { waitForSystemEvents(STA_SYSTEM_EVENT_STARTUP, osFlagsWaitAll, osWaitForever); }