We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e58763c commit 287e55aCopy full SHA for 287e55a
components/espcoredump/src/core_dump_uart.c
@@ -154,7 +154,7 @@ static esp_err_t esp_core_dump_uart_hw_init(void)
154
155
//Make sure txd/rxd are enabled
156
// use direct reg access instead of gpio_pullup_dis which can cause exception when flash cache is disabled
157
- REG_CLR_BIT(GPIO_PIN_REG_1, FUN_PU); //TODO: IDF-9948
+ gpio_hal_pullup_dis(&gpio_hal, U0TXD_GPIO_NUM);
158
gpio_hal_func_sel(&gpio_hal, U0RXD_GPIO_NUM, U0RXD_MUX_FUNC);
159
gpio_hal_func_sel(&gpio_hal, U0TXD_GPIO_NUM, U0TXD_MUX_FUNC);
160
ESP_COREDUMP_LOGI("Press Enter to print core dump to UART...");
0 commit comments