From 57e0063e8db9ab95022ca9075d2ef7d37ae248ce Mon Sep 17 00:00:00 2001 From: Rajkumar Kanagaraj Date: Mon, 27 Apr 2020 14:38:14 +0100 Subject: [PATCH] Add the Doxygen note to non-supported RTOS kernel APIs. --- rtos/Kernel.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtos/Kernel.h b/rtos/Kernel.h index e6e7a61e28..0f26c4245c 100644 --- a/rtos/Kernel.h +++ b/rtos/Kernel.h @@ -49,6 +49,7 @@ uint64_t get_ms_count(); @param fptr pointer to the function to be called @note You may call this function from ISR context. + @note Bare metal profile: This API is not supported. */ void attach_idle_hook(void (*fptr)(void)); @@ -56,6 +57,7 @@ void attach_idle_hook(void (*fptr)(void)); @param fptr pointer to the function to be called @note You may call this function from ISR context. + @note Bare metal profile: This API is not supported. */ void attach_thread_terminate_hook(void (*fptr)(osThreadId_t id));