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 4ed247b commit 2b2436aCopy full SHA for 2b2436a
main/interface/uart/at_uart_task.c
@@ -421,6 +421,9 @@ static void at_uart_init(void)
421
PIN_SLP_INPUT_ENABLE(GPIO_PIN_MUX_REG[rx_pin]);
422
gpio_sleep_set_pull_mode(rx_pin, GPIO_PULLUP_ONLY);
423
424
+ // a workaround for uart1 tx voltage fluctuation issue during light-sleep
425
+ gpio_sleep_sel_dis(tx_pin);
426
+
427
// set actual uart pins
428
s_at_uart_port_pin.tx = tx_pin;
429
s_at_uart_port_pin.rx = rx_pin;
0 commit comments