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