7#ifndef ZEPHYR_INCLUDE_DRIVERS_UART_EMUL_H_
8#define ZEPHYR_INCLUDE_DRIVERS_UART_EMUL_H_
43 const struct emul *target);
Public APIs for UART drivers.
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
int uart_emul_register(const struct device *dev, struct uart_emul *emul)
Register an emulated device on the controller.
void(* uart_emul_device_tx_data_ready_t)(const struct device *dev, size_t size, const struct emul *target)
Define the emulation callback function signature.
Definition uart_emul.h:42
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
An emulator instance - represents the target emulated device/peripheral that is interacted with throu...
Definition emul.h:82
Definition of the emulator API.
Definition uart_emul.h:55
uart_emul_device_tx_data_ready_t tx_data_ready
Definition uart_emul.h:56
Node in a linked list of emulators for UART devices.
Definition uart_emul.h:46
sys_snode_t node
Definition uart_emul.h:47
const struct uart_emul_device_api * api
API provided for this device.
Definition uart_emul.h:51
const struct emul * target
Target emulator - REQUIRED for all emulated bus nodes of any type.
Definition uart_emul.h:49