Searched defs:uart_driver_api (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-2.7.6/include/drivers/ |
D | uart.h | 352 __subsystem struct uart_driver_api { struct 356 int (*callback_set)(const struct device *dev, 360 int (*tx)(const struct device *dev, const uint8_t *buf, size_t len, 362 int (*tx_abort)(const struct device *dev); 364 int (*rx_enable)(const struct device *dev, uint8_t *buf, size_t len, 366 int (*rx_buf_rsp)(const struct device *dev, uint8_t *buf, size_t len); 367 int (*rx_disable)(const struct device *dev); 372 int (*poll_in)(const struct device *dev, unsigned char *p_char); 373 void (*poll_out)(const struct device *dev, unsigned char out_char); 376 int (*err_check)(const struct device *dev); [all …]
|