|
@@ -29,6 +29,7 @@
|
|
* 2014-12-31 bernard use open_flag for poll_tx stream mode.
|
|
* 2014-12-31 bernard use open_flag for poll_tx stream mode.
|
|
* 2015-05-19 Quintin fix DMA tx mod tx_dma->activated flag !=RT_FALSE BUG
|
|
* 2015-05-19 Quintin fix DMA tx mod tx_dma->activated flag !=RT_FALSE BUG
|
|
* in open function.
|
|
* in open function.
|
|
|
|
+ * 2015-11-10 bernard fix the poll rx issue when there is no data.
|
|
*/
|
|
*/
|
|
|
|
|
|
#include <rthw.h>
|
|
#include <rthw.h>
|
|
@@ -49,6 +50,8 @@ rt_inline int _serial_poll_rx(struct rt_serial_device *serial, rt_uint8_t *data,
|
|
while (length)
|
|
while (length)
|
|
{
|
|
{
|
|
ch = serial->ops->getc(serial);
|
|
ch = serial->ops->getc(serial);
|
|
|
|
+ if (ch == -1) break;
|
|
|
|
+
|
|
*data = ch;
|
|
*data = ch;
|
|
data ++; length --;
|
|
data ++; length --;
|
|
|
|
|