libc: Implement terminal api regardless of CONFIG_SERIAL_TERMIOS setting

since many functions aren't related to termios directly

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2021-12-17 02:58:49 +08:00 committed by Gustavo Henrique Nihei
parent 228442ee23
commit 4262b09cbf
8 changed files with 3 additions and 18 deletions

View File

@ -1354,7 +1354,6 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
}
break;
#ifdef CONFIG_SERIAL_TERMIOS
case TCFLSH:
{
/* Empty the tx/rx buffers */
@ -1391,7 +1390,6 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
ret = uart_tcdrain(dev, true, 10 * TICK_PER_SEC);
}
break;
#endif
#if defined(CONFIG_TTY_SIGINT) || defined(CONFIG_TTY_SIGTSTP)
/* Make the controlling terminal of the calling process */

View File

@ -56,9 +56,7 @@ namespace std
// Terminal I/O
#ifdef CONFIG_SERIAL_TERMIOS
using ::isatty;
#endif
// Memory management

View File

@ -31,9 +31,7 @@
#include <stdint.h>
#include <stdbool.h>
#include <errno.h>
#ifdef CONFIG_SERIAL_TERMIOS
# include <termios.h>
#endif
#include <termios.h>
#include <nuttx/fs/fs.h>
#include <nuttx/semaphore.h>

View File

@ -29,8 +29,6 @@
#include <sys/types.h>
#include <stdint.h>
#ifdef CONFIG_SERIAL_TERMIOS
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
@ -319,5 +317,4 @@ int tcsetattr(int fd, int options, FAR const struct termios *termiosp);
}
#endif
#endif /* CONFIG_SERIAL_TERMIOS */
#endif /* __INCLUDE_TERMIOS_H */

View File

@ -327,14 +327,12 @@ ssize_t pwrite(int fd, FAR const void *buf, size_t nbytes, off_t offset);
int ftruncate(int fd, off_t length);
int fchown(int fd, uid_t owner, gid_t group);
#ifdef CONFIG_SERIAL_TERMIOS
/* Check if a file descriptor corresponds to a terminal I/O file */
int isatty(int fd);
FAR char *ttyname(int fd);
int ttyname_r(int fd, FAR char *buf, size_t buflen);
#endif
/* Memory management */

View File

@ -21,8 +21,6 @@
# termios.h support requires file descriptors and that CONFIG_SERIAL_TERMIOS
# is defined
ifeq ($(CONFIG_SERIAL_TERMIOS),y)
# Add the termios C files to the build
CSRCS += lib_cfspeed.c lib_cfmakeraw.c lib_isatty.c lib_tcflush.c
@ -33,5 +31,3 @@ CSRCS += lib_ttyname.c lib_ttynamer.c
DEPPATH += --dep-path termios
VPATH += termios
endif

View File

@ -60,5 +60,5 @@
int tcgetattr(int fd, FAR struct termios *termiosp)
{
return ioctl(fd, TCGETS, (unsigned long)termiosp);
return ioctl(fd, TCGETS, (unsigned long)(uintptr_t)termiosp);
}

View File

@ -93,5 +93,5 @@ int tcsetattr(int fd, int options, FAR const struct termios *termiosp)
tcflush(fd, TCIFLUSH);
}
return ioctl(fd, TCSETS, (unsigned long)termiosp);
return ioctl(fd, TCSETS, (unsigned long)(uintptr_t)termiosp);
}