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.
2 parents 64573ab + f9e99ef commit 310b803Copy full SHA for 310b803
main/interface/uart/at_uart_api.c
@@ -247,6 +247,9 @@ void at_uart_workaround(void)
247
// a workaround for uart1 outputs uninterrupted data during light-sleep
248
PIN_SLP_INPUT_ENABLE(GPIO_PIN_MUX_REG[g_uart_port_pin.rx_pin]);
249
gpio_sleep_set_pull_mode(g_uart_port_pin.rx_pin, GPIO_PULLUP_ONLY);
250
+
251
+ // a workaround for uart1 tx voltage fluctuation issue during light-sleep
252
+ gpio_sleep_sel_dis(g_uart_port_pin.tx_pin);
253
}
254
255
void at_uart_config_init(uart_config_t *config)
0 commit comments