mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
30 lines
580 B
C++
30 lines
580 B
C++
#ifndef MACSERIALSTREAM_H_
|
|
#define MACSERIALSTREAM_H_
|
|
|
|
#include <Stream.h>
|
|
|
|
class MacSerialStream : public Stream
|
|
{
|
|
static const long kInputBufferSize = 8192;
|
|
static const long kReadBufferSize = 4096;
|
|
char inputBuffer[kInputBufferSize];
|
|
char readBuffer[kReadBufferSize];
|
|
|
|
short outRefNum, inRefNum;
|
|
int port, curBaud;
|
|
public:
|
|
virtual void write(const void* p, size_t n) override;
|
|
|
|
void idle();
|
|
|
|
MacSerialStream(int port = 0, int baud = 19200);
|
|
~MacSerialStream();
|
|
|
|
void close();
|
|
void open();
|
|
|
|
void setBaud(int baud);
|
|
};
|
|
|
|
#endif
|