Fixed SerialStream driver blocking while waiting for characters to be received instead of returning EOF.
This commit is contained in:
parent
15f84bb8f5
commit
6ba0b860cc
2 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,9 @@ static int SerialStream_TxByte(char DataByte, FILE *Stream)
|
|||
static int SerialStream_RxByte(FILE *Stream)
|
||||
{
|
||||
(void)Stream;
|
||||
|
||||
if (!(Serial_IsCharReceived()))
|
||||
return EOF;
|
||||
|
||||
return Serial_RxByte();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue