NHAL Interface v0.5.0
Hardware Abstraction Layer Interface for Embedded Systems
|
#include <nhal_uart_types.h>
Data Fields | |
uint32_t | baudrate |
The baud rate for communication (bits per second). | |
nhal_uart_parity_t | parity |
The parity setting (none, even, or odd). | |
nhal_uart_stop_bits_t | stop_bits |
The number of stop bits (e.g., 1 or 2). | |
nhal_uart_data_bits_t | data_bits |
The number of data bits (e.g., 7 or 8). | |
struct nhal_uart_impl_config * | impl_config |
Definition at line 39 of file nhal_uart_types.h.
uint32_t nhal_uart_config::baudrate |
The baud rate for communication (bits per second).
Definition at line 40 of file nhal_uart_types.h.
nhal_uart_data_bits_t nhal_uart_config::data_bits |
The number of data bits (e.g., 7 or 8).
Definition at line 43 of file nhal_uart_types.h.
struct nhal_uart_impl_config* nhal_uart_config::impl_config |
Definition at line 44 of file nhal_uart_types.h.
nhal_uart_parity_t nhal_uart_config::parity |
The parity setting (none, even, or odd).
Definition at line 41 of file nhal_uart_types.h.
nhal_uart_stop_bits_t nhal_uart_config::stop_bits |
The number of stop bits (e.g., 1 or 2).
Definition at line 42 of file nhal_uart_types.h.