Skip to content

Commit 31dc8f3

Browse files
Fix: Rename parameter uxIndexToNotify to uxIndexToWaitOn (#174)
1 parent acee77b commit 31dc8f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/task.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2558,7 +2558,7 @@ uint32_t ulTaskGenericNotifyTake( UBaseType_t uxIndexToWaitOn,
25582558
#define ulTaskNotifyTake( xClearCountOnExit, xTicksToWait ) \
25592559
ulTaskGenericNotifyTake( ( tskDEFAULT_INDEX_TO_NOTIFY ), ( xClearCountOnExit ), ( xTicksToWait ) )
25602560
#define ulTaskNotifyTakeIndexed( uxIndexToWaitOn, xClearCountOnExit, xTicksToWait ) \
2561-
ulTaskGenericNotifyTake( ( uxIndexToNotify ), ( xClearCountOnExit ), ( xTicksToWait ) )
2561+
ulTaskGenericNotifyTake( ( uxIndexToWaitOn ), ( xClearCountOnExit ), ( xTicksToWait ) )
25622562

25632563
/**
25642564
* task. h

0 commit comments

Comments
 (0)