2019-01-23 18:41:12 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 Wolfgang Thaller.
|
|
|
|
|
|
|
|
This file is part of Retro68.
|
|
|
|
|
|
|
|
Retro68 is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Retro68 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Retro68. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-22 23:11:56 +00:00
|
|
|
#ifndef MACSERIALSTREAM_H_
|
|
|
|
#define MACSERIALSTREAM_H_
|
|
|
|
|
|
|
|
#include <Stream.h>
|
|
|
|
|
|
|
|
class MacSerialStream : public Stream
|
|
|
|
{
|
2018-05-07 21:51:17 +00:00
|
|
|
static const long kInputBufferSize = 8192;
|
2018-04-22 23:11:56 +00:00
|
|
|
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;
|
2018-04-22 23:11:56 +00:00
|
|
|
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);
|
2018-04-22 23:11:56 +00:00
|
|
|
~MacSerialStream();
|
|
|
|
|
|
|
|
void close();
|
2018-04-27 00:06:54 +00:00
|
|
|
void open();
|
2018-04-24 20:06:32 +00:00
|
|
|
|
|
|
|
void setBaud(int baud);
|
2018-04-22 23:11:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|