Home
last modified time | relevance | path

Searched refs:parity (Results 1 – 2 of 2) sorted by relevance

/hal_microchip-latest/mec5/drivers/
Dmec_uart_api.h87 uint8_t parity; member
161 int mec_hal_uart_parity_set(struct mec_uart_regs *base, uint8_t parity);
162 int mec_hal_uart_parity_get(struct mec_uart_regs *base, uint8_t *parity);
Dmec_uart.c160 int mec_hal_uart_parity_set(struct mec_uart_regs *base, uint8_t parity) in mec_hal_uart_parity_set() argument
165 if (!info || (parity >= MEC_UART_PARITY_MAX)) { in mec_hal_uart_parity_set()
169 val = uart_parity_tbl[parity]; in mec_hal_uart_parity_set()
177 int mec_hal_uart_parity_get(struct mec_uart_regs *base, uint8_t *parity) in mec_hal_uart_parity_get() argument
182 if (!info || !parity) { in mec_hal_uart_parity_get()
190 *parity = i; in mec_hal_uart_parity_get()