mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-10 18:06:29 +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:
@@ -838,7 +838,7 @@ static void UART_ISR_ATTR uart_rx_intr_handler_default(void *param)
|
||||
int rx_fifo_len = 0;
|
||||
uint32_t uart_intr_status = 0;
|
||||
uart_event_t uart_event;
|
||||
portBASE_TYPE HPTaskAwoken = 0;
|
||||
BaseType_t HPTaskAwoken = 0;
|
||||
bool need_yield = false;
|
||||
static uint8_t pat_flg = 0;
|
||||
BaseType_t sent = pdFALSE;
|
||||
|
||||
Reference in New Issue
Block a user