Skip to content

Commit ad88218

Browse files
committed
Kernel.h doxygen update
1 parent 13d6703 commit ad88218

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rtos/Kernel.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ uint64_t get_ms_count();
4747
/** Attach a function to be called by the RTOS idle task
4848
@param fptr pointer to the function to be called
4949
50-
@note You may call this function from ISR context.
50+
@note You can call this function from ISR context.
5151
*/
5252
void attach_idle_hook(void (*fptr)(void));
5353

54-
/** Attach a function to be called when a task is killed
54+
/** Attach a function to be called when a task is terminated
5555
@param fptr pointer to the function to be called
5656
57-
@note You may call this function from ISR context.
57+
@note You can call this function from ISR context.
5858
*/
5959
void attach_thread_terminate_hook(void (*fptr)(osThreadId_t id));
6060

0 commit comments

Comments
 (0)