Browse Source

Merge pull request #1537 from Bluebear233/patch-1

Update serial.c
Bernard Xiong 6 years ago
parent
commit
ff9162a994
1 changed files with 6 additions and 2 deletions
  1. 6 2
      components/drivers/serial/serial.c

+ 6 - 2
components/drivers/serial/serial.c

@@ -421,7 +421,6 @@ static void rt_dma_recv_update_put_index(struct rt_serial_device *serial, rt_siz
             /* force overwrite get index */
             if (rx_fifo->put_index >= rx_fifo->get_index)
             {
-                rx_fifo->get_index = rx_fifo->put_index;
                 rx_fifo->is_full = RT_TRUE;
             }
         }
@@ -437,10 +436,15 @@ static void rt_dma_recv_update_put_index(struct rt_serial_device *serial, rt_siz
                 rx_fifo->put_index %= serial->config.bufsz;
             }
             /* force overwrite get index */
-            rx_fifo->get_index = rx_fifo->put_index;
             rx_fifo->is_full = RT_TRUE;
         }
     }
+    
+    if(rx_fifo->is_full == RT_TRUE) 
+    {
+        rx_fifo->get_index = rx_fifo->put_index; 
+    } 
+    
     if (rx_fifo->get_index >= serial->config.bufsz) rx_fifo->get_index = 0;
 }