mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-30 19:19:21 +00:00
refactor(freertos): Refactor usage of portBASE_TYPE to BaseType_t
portBASE_TYPE is an internal macro defined by the porting layer. This commit changes all references to BaseType_t which is the official type exposed by FreeRTOS.
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
*/
|
||||
static IRAM_ATTR bool cb_ledc_fade_end_event(const ledc_cb_param_t *param, void *user_arg)
|
||||
{
|
||||
portBASE_TYPE taskAwoken = pdFALSE;
|
||||
BaseType_t taskAwoken = pdFALSE;
|
||||
|
||||
if (param->event == LEDC_FADE_END_EVT) {
|
||||
SemaphoreHandle_t counting_sem = (SemaphoreHandle_t) user_arg;
|
||||
|
Reference in New Issue
Block a user