Rename the driver from uart_native_posix to uart_native_pty. Including renaming the DTS compatible, and kconfig options, deprecating the old ones. And refactor the driver, generalizing it, so we can have any number of instances. Note that, unfortunately generalizing to N instances cannot be done without a degree of backwards compatibility breakage: This driver was born with all its configuration and selection of the instances based on kconfig. When the driver was made to use DT, it was done in a way that required both DT and kconfig needing to manually coherently enable the 2nd UART. This has now been fixed, which it means only DT is used to decide how many instances are avaliable, and UART_NATIVE_POSIX_PORT_1_ENABLE is just ignored. Including: * Deprecate UART_NATIVE_WAIT_PTS_READY_ENABLE: the options is always on now as it has no practical drawbacks. * Deprecate UART_NATIVE_POSIX_PORT_1_ENABLE: DTS intanciation defines it being available now. * Rename a few functions and in general shorten pseudo-tty/pseudo- terminal to PTY instead of PTTY. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
35 lines
957 B
C
35 lines
957 B
C
/*
|
|
* Copyright (c) 2023, Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* "Bottom" of native PTY UART driver
|
|
* When built with the native_simulator this will be built in the runner context,
|
|
* that is, with the host C library, and with the host include paths.
|
|
*/
|
|
|
|
#ifndef DRIVERS_SERIAL_UART_NATIVE_PTTY_BOTTOM_H
|
|
#define DRIVERS_SERIAL_UART_NATIVE_PTTY_BOTTOM_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Note: None of these functions are public interfaces. But internal to the native ptty driver */
|
|
|
|
int np_uart_stdin_poll_in_bottom(int in_f, unsigned char *p_char);
|
|
int np_uart_slave_connected(int fd);
|
|
int np_uart_open_pty(const char *uart_name, const char *auto_attach_cmd,
|
|
bool do_auto_attach, bool wait_pts);
|
|
int np_uart_pty_get_stdin_fileno(void);
|
|
int np_uart_pty_get_stdout_fileno(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* DRIVERS_SERIAL_UART_NATIVE_PTTY_BOTTOM_H */
|