From 72ddebfb8bff38bcd9cf48fc025b4ecc5c0cd3b8 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Sun, 1 Oct 2023 19:38:58 +0200 Subject: [PATCH] Minor update to function comment --- src/W800_SDK_v1.00.10/app/gfx/compass_screen.h | 2 +- src/W800_SDK_v1.00.10/app/gfx/find_my_phone_screen.h | 2 +- src/W800_SDK_v1.00.10/app/gfx/watch_face.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/W800_SDK_v1.00.10/app/gfx/compass_screen.h b/src/W800_SDK_v1.00.10/app/gfx/compass_screen.h index ef4fcf6..e03a730 100644 --- a/src/W800_SDK_v1.00.10/app/gfx/compass_screen.h +++ b/src/W800_SDK_v1.00.10/app/gfx/compass_screen.h @@ -43,7 +43,7 @@ typedef struct CompassScreen * @brief Initializes the compass screen object structure. * @note This function has to be called first before any others. * - * @param compassScreen a pointer to the compass screen object structure. + * @param compassScreen a pointer to the compass screen object structure to initialize. */ void compass_screen_init(CompassScreen_t * const compassScreen); diff --git a/src/W800_SDK_v1.00.10/app/gfx/find_my_phone_screen.h b/src/W800_SDK_v1.00.10/app/gfx/find_my_phone_screen.h index ec709f6..e2a293b 100644 --- a/src/W800_SDK_v1.00.10/app/gfx/find_my_phone_screen.h +++ b/src/W800_SDK_v1.00.10/app/gfx/find_my_phone_screen.h @@ -32,7 +32,7 @@ typedef struct FindMyPhoneScreen /** * @brief Initializes the find my phone screen object structure. * - * @param findMyPhoneScreen a pointer to the find my phone screen object structure. + * @param findMyPhoneScreen a pointer to the find my phone screen object structure to initialize. */ void find_my_phone_screen_init(FindMyPhoneScreen_t * const findMyPhoneScreen); diff --git a/src/W800_SDK_v1.00.10/app/gfx/watch_face.h b/src/W800_SDK_v1.00.10/app/gfx/watch_face.h index 317995b..b566e9f 100644 --- a/src/W800_SDK_v1.00.10/app/gfx/watch_face.h +++ b/src/W800_SDK_v1.00.10/app/gfx/watch_face.h @@ -82,7 +82,7 @@ typedef struct WatchFace * @brief Initializes the watch face context object * @note This function has to be called first before any others * - * @param watchFace a pointer to the watch face context structure. + * @param watchFace a pointer to the watch face context structure to initialize. */ void watch_face_init(WatchFace_t * const watchFace);