From 5fe44ddecf3a6c2b534547f6c290ac7e33babc86 Mon Sep 17 00:00:00 2001 From: Henrik Stickann <4376396-Mithradir@users.noreply.gitlab.com> Date: Thu, 31 Mar 2022 13:57:03 +0200 Subject: [PATCH] Rename startup related functions --- include/sta/system_event.hpp | 4 ++-- src/system_event.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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); }