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>