You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
217 B
C
19 lines
217 B
C
1 year ago
|
#ifndef __SERIALPORT_H__
|
||
|
#define __SERIALPORT_H__
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class SerialPort
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
bool Open(std::string path, int, int);
|
||
|
|
||
|
bool Close();
|
||
|
|
||
|
protected:
|
||
|
int m_fd;
|
||
|
};
|
||
|
|
||
|
#endif // __SERIALPORT_H__
|