Skip to content

Commit 57e0063

Browse files
committed
Add the Doxygen note to non-supported RTOS kernel APIs.
1 parent 28ef753 commit 57e0063

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rtos/Kernel.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,15 @@ uint64_t get_ms_count();
4949
@param fptr pointer to the function to be called
5050
5151
@note You may call this function from ISR context.
52+
@note Bare metal profile: This API is not supported.
5253
*/
5354
void attach_idle_hook(void (*fptr)(void));
5455

5556
/** Attach a function to be called when a thread terminates.
5657
@param fptr pointer to the function to be called
5758
5859
@note You may call this function from ISR context.
60+
@note Bare metal profile: This API is not supported.
5961
*/
6062
void attach_thread_terminate_hook(void (*fptr)(osThreadId_t id));
6163

0 commit comments

Comments
 (0)