mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-16 04:22:22 +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:
@@ -719,7 +719,7 @@ static void IRAM_ATTR rmt_driver_isr_default(void *arg)
|
||||
rmt_item32_t *addr = NULL;
|
||||
uint8_t channel = 0;
|
||||
rmt_hal_context_t *hal = (rmt_hal_context_t *)arg;
|
||||
portBASE_TYPE HPTaskAwoken = pdFALSE;
|
||||
BaseType_t HPTaskAwoken = pdFALSE;
|
||||
|
||||
// Tx end interrupt
|
||||
status = rmt_ll_get_tx_end_interrupt_status(hal->regs);
|
||||
|
||||
Reference in New Issue
Block a user