Retro68/LaunchAPPL/Server/MacSerialStream.h

30 lines
580 B
C
Raw Normal View History

#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;
2018-05-07 21:51:47 +00:00
int port, curBaud;
public:
virtual void write(const void* p, size_t n) override;
void idle();
2018-05-07 21:51:47 +00:00
MacSerialStream(int port = 0, int baud = 19200);
~MacSerialStream();
void close();
void open();
void setBaud(int baud);
};
#endif