Skip to content

Commit 88a7c5f

Browse files
committed
Removed C comment since DoxyGen does not like it
1 parent 3876d4b commit 88a7c5f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CMSIS/RTOS2/FreeRTOS/Include/freertos_evr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,17 +119,17 @@ extern void EvrFreeRTOSTasks_TaskSwitchedOut (TCB_t pxCurrentTCB);
119119
\param[in] pxCurrentTCB handle to the task about to enter the running state.
120120
\param[in] uxTopPriority pxCurrentTCB task priority.
121121
*/
122-
extern void EvrFreeRTOSTasks_TaskSwitchedIn (TCB_t pxCurrentTCB, /*UBaseType_t*/uint32_t uxTopPriority);
122+
extern void EvrFreeRTOSTasks_TaskSwitchedIn (TCB_t pxCurrentTCB, uint32_t uxTopPriority);
123123

124124
/**
125-
\brief Event on task priority inherance (Op)
125+
\brief Event on task priority inheritance (Op)
126126
\param[in] pxTCBOfMutexHolder pointer to task handle.
127127
\param[in] uxInheritedPriority new (inherited) task priority.
128128
*/
129129
extern void EvrFreeRTOSTasks_TaskPriorityInherit (TCB_t pxTCBOfMutexHolder, uint32_t uxInheritedPriority);
130130

131131
/**
132-
\brief Event on task priority disinherance (Op)
132+
\brief Event on task priority disinheritance (Op)
133133
\param[in] pxTCBOfMutexHolder pointer to task handle.
134134
\param[in] uxOriginalPriority old (original) task priority.
135135
*/

DoxyGen/General/src/freertos_evr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The event \b TaskSwitchedOut is generated before a new task is selected to run.
134134
*/
135135

136136
/**
137-
\fn void EvrFreeRTOSTasks_TaskSwitchedIn (TCB_t pxCurrentTCB, /*UBaseType_t*/uint32_t uxTopPriority)
137+
\fn void EvrFreeRTOSTasks_TaskSwitchedIn (TCB_t pxCurrentTCB, uint32_t uxTopPriority)
138138
\details
139139
The event \b TaskSwitchedIn is generated after a task has been selected to run.
140140

0 commit comments

Comments
 (0)