Merge branch 'bugfix/freertos_xTaskNotifyGive_v3.0' into 'release/v3.0'

freertos: remove semicolon in xTaskNotifyGive (v3.0)

See merge request espressif/esp-idf!6273
release/v3.0 v3.0.9
Angus Gratton 2019-10-08 23:12:49 +08:00
commit f3704f027e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1951,7 +1951,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.