the isatty definition on nuttx depends on CONFIG_SERIAL_TERMIOS

the isatty definition on nuttx depends on CONFIG_SERIAL_TERMIOS
This commit is contained in:
Dongsheng.Yan 2022-06-17 11:12:21 +08:00
parent 4b38205023
commit 370b79e104

View File

@ -68,6 +68,13 @@ typedef pthread_t korp_thread;
#define O_NOFOLLOW 0
#endif
#undef CONFIG_HAS_ISATTY
#ifdef CONFIG_SERIAL_TERMIOS
#define CONFIG_HAS_ISATTY 1
#else
#define CONFIG_HAS_ISATTY 0
#endif
/*
* NuttX doesn't have openat family.
*/