You mean setting termios struct and use tcsetattr() to set the parameters? tcsetattr() only accepts the file descriptor ID as an int, not a FILE * pointer which is returned by fopen()..<br><br>Anyway it was working with the uart in polling mode so it should work also in interrupt mode without changing any RTEMS parameter right?<br>
<br><br>Best,<br>JM<br><br><br><br><div class="gmail_quote">On Tue, Aug 17, 2010 at 4:46 PM, Eric Norum <span dir="ltr"><<a href="mailto:wenorum@lbl.gov">wenorum@lbl.gov</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
You need to set up the termios parameters appropriately.   By default the serial ports work in "cooked" mode -- the fread won't return until a line terminator character has been received.<br>
<div><div></div><div class="h5"><br>
On Aug 17, 2010, at 8:34 AM, Joćo Rasta wrote:<br>
<br>
> Hi,<br>
><br>
> I'm trying to read data from UART2 that works in interrupt mode in RTEMS. As far as i understand, the driver loads the data to a software buffer using interrupts when the data arrives, so the task of geting the data from the buffer should be invisible to the user and could be made, for instance, with:<br>

><br>
> FILE * A;<br>
>     char buff;<br>
>     A = fopen(COMMS__DKE_LOOP_DEVICE_NAME,"r+");<br>
>     while(1)<br>
>     {<br>
>         fread(&buff,1,1,A);<br>
>         printf("%02X\n",buff);<br>
>     }<br>
><br>
> However this routine is blocking on fread(). Do i need to set any special settings uppon RTEMS initialization? I'm adding CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER so the driver is up and running (tested with stdio UART). What am i missing?<br>

><br>
><br>
> Best,<br>
> JM<br>
><br>
><br>
</div></div>> _______________________________________________<br>
> rtems-users mailing list<br>
> <a href="mailto:rtems-users@rtems.org">rtems-users@rtems.org</a><br>
> <a href="http://www.rtems.org/mailman/listinfo/rtems-users" target="_blank">http://www.rtems.org/mailman/listinfo/rtems-users</a><br>
<font color="#888888"><br>
--<br>
Eric Norum<br>
<a href="mailto:wenorum@lbl.gov">wenorum@lbl.gov</a><br>
<br>
</font></blockquote></div><br>