This is the mail archive of the ecos-discuss@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Re: Select() issues


> Up until this particular issue I have had no problems using "standard in".
> I will look to see what effect opening /dev/termios0, but most examples
> I have seen use STDIN_FILENO directly.

Please could you point me at the eCos examples that do this?

> Changing my code slightly, I now find that I now block at cin.get().
> I wondering whether I am doing something wrong when changing to canocial
> mode?
> 
> char InputHandler::DoPressAnyKey()
> {
>     struct termios  ts, ots;
>     int             c  = 0;
>     int             fd = STDIN_FILENO;  
>                   
>     cout << "--0\n";
>           
>     tcflush(fd,TCIOFLUSH);    
>        
>     cout << "--1\n";  

You are using stdout, not the file descriptor for a /dev/termios0.  I
would first determine is you are using the correct file
descriptor. When this really is wrong, nothing will work......

            Andrew

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]