Skip to content
Snippets Groups Projects
Commit 00b8fe97 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Solved a bug in the serial library: moved the #include <asm/termbits.h> header...

Solved a bug in the serial library: moved the #include <asm/termbits.h> header to the source file to avoid possible conflicts with other libraries using other termios headers.
parent 9e996cf0
No related branches found
No related tags found
No related merge requests found
Pipeline #12207 failed
......@@ -6,7 +6,6 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <asm/termbits.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
......
#include "rs232.h"
#include "rs232exceptions.h"
#include "ctime.h"
#include <asm/termbits.h>
CRS232::CRS232(const std::string& comm_id) : CComm(comm_id)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment