MMDVMHost-Private/UARTController.h

70 lines
1.9 KiB
C
Raw Permalink Normal View History

2016-01-14 19:45:04 +01:00
/*
2021-02-16 21:05:03 +01:00
* Copyright (C) 2002-2004,2007-2009,2011-2013,2015-2017,2020,2021 by Jonathan Naylor G4KLX
2016-01-14 19:45:04 +01:00
* Copyright (C) 1999-2001 by Thomas Sailor HB9JNX
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
2021-02-16 21:05:03 +01:00
#ifndef UARTController_H
#define UARTController_H
2016-01-14 19:45:04 +01:00
2021-02-17 22:36:47 +01:00
#include "ModemPort.h"
#include "SerialPort.h"
2016-01-14 19:45:04 +01:00
#include <string>
#if defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#endif
2021-02-17 22:36:47 +01:00
class CUARTController : public ISerialPort, public IModemPort {
2016-01-14 19:45:04 +01:00
public:
2021-02-16 21:05:03 +01:00
CUARTController(const std::string& device, unsigned int speed, bool assertRTS = false);
virtual ~CUARTController();
virtual bool open();
2016-01-14 19:45:04 +01:00
virtual int read(unsigned char* buffer, unsigned int length);
2016-01-14 19:45:04 +01:00
virtual int write(const unsigned char* buffer, unsigned int length);
2016-01-14 19:45:04 +01:00
virtual void close();
2016-01-14 19:45:04 +01:00
2017-11-15 12:10:12 +01:00
#if defined(__APPLE__)
virtual int setNonblock(bool nonblock);
#endif
protected:
2021-02-16 21:05:03 +01:00
CUARTController(unsigned int speed, bool assertRTS = false);
2020-12-15 17:21:07 +01:00
2016-01-14 19:45:04 +01:00
std::string m_device;
2020-12-15 17:21:07 +01:00
unsigned int m_speed;
2016-01-14 19:45:04 +01:00
bool m_assertRTS;
#if defined(_WIN32) || defined(_WIN64)
HANDLE m_handle;
#else
int m_fd;
#endif
#if defined(_WIN32) || defined(_WIN64)
int readNonblock(unsigned char* buffer, unsigned int length);
2017-11-15 12:10:12 +01:00
#else
bool canWrite();
2020-12-15 17:21:07 +01:00
bool setRaw();
2016-01-14 19:45:04 +01:00
#endif
};
#endif