freertos: remove semicolon in xTaskNotifyGive
This commit is contained in:
parent
f5b9366999
commit
54b813ad69
1 changed files with 1 additions and 1 deletions
|
@ -1965,7 +1965,7 @@ BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClea
|
|||
*
|
||||
* \ingroup TaskNotifications
|
||||
*/
|
||||
#define xTaskNotifyGive( xTaskToNotify ) xTaskNotify( ( xTaskToNotify ), 0, eIncrement );
|
||||
#define xTaskNotifyGive( xTaskToNotify ) xTaskNotify( ( xTaskToNotify ), 0, eIncrement )
|
||||
|
||||
/**
|
||||
* Simplified macro for sending task notification from ISR.
|
||||
|
|
Loading…
Reference in a new issue