Re: Discussion regarding termios support in NuttX.

2021-03-11 Thread Sara da Cunha Monteiro de Souza
Great explanation! Thanks Mr Nutt 😊 Em qui., 11 de mar. de 2021 às 13:38, Gregory Nutt escreveu: > > > 1. tcgetsid() and tcsendbreak() interfaces are declared but never > defined > > in NuttX. Why? > > Prototypes for those functions are required to be in termios.h whether > they are implemented

Re: Discussion regarding termios support in NuttX.

2021-03-11 Thread Gregory Nutt
1. tcgetsid() and tcsendbreak() interfaces are declared but never defined in NuttX. Why? Prototypes for those functions are required to be in termios.h whether they are implemented or not. https://pubs.opengroup.org/onlinepubs/7908799/xsh/termios.h.html Of course it would be better if the

Discussion regarding termios support in NuttX.

2021-03-11 Thread Sara da Cunha Monteiro de Souza
Hi all, I've been implementing termios support for ESP32-C3 and I noticed a couple of things that left me curious about. 1. tcgetsid() and tcsendbreak() interfaces are declared but never defined in NuttX. Why? 2. I noticed no chip implemented the TCXONC ioctl required by tcflow() interface. Is t