diff options
Diffstat (limited to 'servers/fpga_server_lin/src/fpga_conn.cpp')
-rw-r--r-- | servers/fpga_server_lin/src/fpga_conn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/fpga_server_lin/src/fpga_conn.cpp b/servers/fpga_server_lin/src/fpga_conn.cpp index b1b0451..f0ab39d 100644 --- a/servers/fpga_server_lin/src/fpga_conn.cpp +++ b/servers/fpga_server_lin/src/fpga_conn.cpp @@ -166,7 +166,7 @@ void FPGASocket::commandLoop() { writeBlock(buffer, cc); printf("[DEBUG] Got %d bytes from the serial port\n\r", cc); fflush(stdout); } - if (canReadLine()) { + if (canReadData()) { cc = readBlock(buffer, 10000); if (cc > 0) { if (write(m_fd_tty, buffer, cc) < 0) { |