mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 20:54:24 +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:
@@ -147,7 +147,7 @@ static bool test_clear_bits;
|
||||
|
||||
static bool on_timer_alarm_cb(gptimer_handle_t timer, const gptimer_alarm_event_data_t *edata, void *user_ctx)
|
||||
{
|
||||
portBASE_TYPE task_woken = pdFALSE;
|
||||
BaseType_t task_woken = pdFALSE;
|
||||
|
||||
gptimer_stop(timer);
|
||||
|
||||
|
Reference in New Issue
Block a user