mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
d095b355b1
* Started work on DMX512 rs232 device cloned from sedu - no actual changes yet * Implemented DMX protocol Added baudrate debugging to ProviderRs232 * Added support for multiple DMX fixture types
91 lines
1.8 KiB
C++
91 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QSerialPort>
|
|
|
|
// Leddevice includes
|
|
#include <leddevice/LedDevice.h>
|
|
|
|
///
|
|
/// The ProviderRs232 implements an abstract base-class for LedDevices using a RS232-device.
|
|
///
|
|
class ProviderRs232 : public LedDevice
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
///
|
|
/// Constructs specific LedDevice
|
|
///
|
|
/// @param deviceConfig json device config
|
|
///
|
|
ProviderRs232(const Json::Value &deviceConfig);
|
|
|
|
///
|
|
/// Sets configuration
|
|
///
|
|
/// @param deviceConfig the json device config
|
|
/// @return true if success
|
|
virtual bool setConfig(const Json::Value &deviceConfig);
|
|
|
|
///
|
|
/// Destructor of the LedDevice; closes the output device if it is open
|
|
///
|
|
virtual ~ProviderRs232();
|
|
|
|
///
|
|
/// Opens and configures the output device
|
|
///
|
|
/// @return Zero on succes else negative
|
|
///
|
|
int open();
|
|
|
|
protected:
|
|
/**
|
|
* Writes the given bytes to the RS232-device and
|
|
*
|
|
* @param[in[ size The length of the data
|
|
* @param[in] data The data
|
|
*
|
|
* @return Zero on succes else negative
|
|
*/
|
|
int writeBytes(const qint64 size, const uint8_t *data);
|
|
|
|
void closeDevice();
|
|
|
|
/// The RS232 serial-device
|
|
QSerialPort _rs232Port;
|
|
|
|
private slots:
|
|
/// Unblock the device after a connection delay
|
|
void unblockAfterDelay();
|
|
void error(QSerialPort::SerialPortError error);
|
|
void bytesWritten(qint64 bytes);
|
|
void readyRead();
|
|
|
|
private:
|
|
// tries to open device if not opened
|
|
bool tryOpen(const int delayAfterConnect_ms);
|
|
|
|
/// The name of the output device
|
|
std::string _deviceName;
|
|
|
|
/// The used baudrate of the output device
|
|
qint32 _baudRate_Hz;
|
|
|
|
/// Sleep after the connect before continuing
|
|
int _delayAfterConnect_ms;
|
|
|
|
/// The RS232 serial-device
|
|
// QSerialPort _rs232Port;
|
|
|
|
bool _blockedForDelay;
|
|
|
|
bool _stateChanged;
|
|
|
|
qint64 _bytesToWrite;
|
|
qint64 _bytesWritten;
|
|
qint64 _frameDropCounter;
|
|
QSerialPort::SerialPortError _lastError;
|
|
};
|