2022-10-17 02:14:48 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-07-13 09:33:23 -04:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "esp_attr.h"
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "hal/uart_ll.h"
|
|
|
|
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
/**
|
|
|
|
* The function defined in ROM code has a bug, so we re-implement it here.
|
|
|
|
*/
|
|
|
|
IRAM_ATTR void esp_rom_uart_tx_wait_idle(uint8_t uart_no)
|
|
|
|
{
|
2022-10-17 02:14:48 -04:00
|
|
|
while (!uart_ll_is_tx_idle(UART_LL_GET_HW(uart_no))) {};
|
2020-07-13 09:33:23 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
IRAM_ATTR void esp_rom_uart_set_clock_baudrate(uint8_t uart_no, uint32_t clock_hz, uint32_t baud_rate)
|
|
|
|
{
|
2022-10-17 02:14:48 -04:00
|
|
|
uart_ll_set_baudrate(UART_LL_GET_HW(uart_no), baud_rate, clock_hz);
|
2020-07-13 09:33:23 -04:00
|
|
|
}
|