Home
last modified time | relevance | path

Searched refs:uart_hal_context_t (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-latest/components/hal/include/hal/
Duart_hal.h30 } uart_hal_context_t; typedef
158 void uart_hal_read_rxfifo(uart_hal_context_t *hal, uint8_t *buf, int *inout_rd_len);
170 void uart_hal_write_txfifo(uart_hal_context_t *hal, const uint8_t *buf, uint32_t data_size, uint32_…
180 void uart_hal_txfifo_rst(uart_hal_context_t *hal);
189 void uart_hal_rxfifo_rst(uart_hal_context_t *hal);
199 void uart_hal_init(uart_hal_context_t *hal, uart_port_t uart_num);
209 void uart_hal_get_sclk(uart_hal_context_t *hal, uart_sclk_t *sclk);
219 void uart_hal_set_stop_bits(uart_hal_context_t *hal, uart_stop_bits_t stop_bit);
229 void uart_hal_set_data_bit_num(uart_hal_context_t *hal, uart_word_length_t data_bit);
239 void uart_hal_set_parity(uart_hal_context_t *hal, uart_parity_t parity_mode);
[all …]
/hal_espressif-latest/components/hal/
Duart_hal.c11 void uart_hal_get_sclk(uart_hal_context_t *hal, uart_sclk_t *sclk) in uart_hal_get_sclk()
16 void uart_hal_get_baudrate(uart_hal_context_t *hal, uint32_t *baud_rate, uint32_t sclk_freq) in uart_hal_get_baudrate()
21 void uart_hal_set_stop_bits(uart_hal_context_t *hal, uart_stop_bits_t stop_bit) in uart_hal_set_stop_bits()
26 void uart_hal_get_stop_bits(uart_hal_context_t *hal, uart_stop_bits_t *stop_bit) in uart_hal_get_stop_bits()
31 void uart_hal_set_data_bit_num(uart_hal_context_t *hal, uart_word_length_t data_bit) in uart_hal_set_data_bit_num()
36 void uart_hal_get_data_bit_num(uart_hal_context_t *hal, uart_word_length_t *data_bit) in uart_hal_get_data_bit_num()
41 void uart_hal_set_parity(uart_hal_context_t *hal, uart_parity_t parity_mode) in uart_hal_set_parity()
46 void uart_hal_get_parity(uart_hal_context_t *hal, uart_parity_t *parity_mode) in uart_hal_get_parity()
51 void uart_hal_set_hw_flow_ctrl(uart_hal_context_t *hal, uart_hw_flowcontrol_t flow_ctrl, uint8_t rx… in uart_hal_set_hw_flow_ctrl()
56 void uart_hal_get_hw_flow_ctrl(uart_hal_context_t *hal, uart_hw_flowcontrol_t *flow_ctrl) in uart_hal_get_hw_flow_ctrl()
[all …]
Duart_hal_iram.c18 void uart_hal_txfifo_rst(uart_hal_context_t *hal) in uart_hal_txfifo_rst()
23 void uart_hal_rxfifo_rst(uart_hal_context_t *hal) in uart_hal_rxfifo_rst()
28 void uart_hal_tx_break(uart_hal_context_t *hal, uint32_t break_num) in uart_hal_tx_break()
33 void uart_hal_write_txfifo(uart_hal_context_t *hal, const uint8_t *buf, uint32_t data_size, uint32_… in uart_hal_write_txfifo()
43 void uart_hal_read_rxfifo(uart_hal_context_t *hal, uint8_t *buf, int *inout_rd_len) in uart_hal_read_rxfifo()
/hal_espressif-latest/components/esp_system/
Dpanic.c81 static uart_hal_context_t s_panic_uart = { .dev = CONFIG_ESP_CONSOLE_UART_NUM == 0 ? &UART0 :&UART1…
/hal_espressif-latest/components/driver/uart/
Duart.c153 uart_hal_context_t hal; /*!< UART hal context*/