Merge pull request #12872 from rajkan01/kernel_interface_func_doxygen

Add the Doxygen note to non-supported RTOS kernel APIs.
pull/12896/head
Martin Kojtal 2020-04-29 22:17:14 +02:00 committed by GitHub
commit 6052b4540a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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));