21 lines
338 B
C++
21 lines
338 B
C++
#ifndef SERIALPORT_H_
|
|
#define SERIALPORT_H_
|
|
|
|
#include "Uart.h"
|
|
|
|
class SerialPort {
|
|
public:
|
|
SerialPort();
|
|
virtual ~SerialPort();
|
|
int available();
|
|
void begin(int speed = 9600);
|
|
int read();
|
|
int write(const char* buf, int len);
|
|
int print(int val, int format);
|
|
void flush();
|
|
private:
|
|
static LpcUart *u;
|
|
};
|
|
|
|
#endif /* SERIALPORT_H_ */
|