1
0
Fork 0
OpenLCP/protocol/enttec/dmx-usb-pro/widget.h

126 lines
4.3 KiB
C++

/*
widget.h
Copyright (c) 2023 Kevin Matz (kevin.matz@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include "pro.h"
#include <universe.h>
#include <cstring>
#include <vector>
namespace ENTTEC {
/**
* @brief The Widget class
*
* Operates on either the USB Host side (computer) or USB Device side (DMX USB Pro impersonator).
*/
class Widget
: public DMX::Universe
{
public:
explicit Widget();
virtual ~Widget();
virtual void init(); //!< USB Device start
virtual void halt(); //!< USB Device stop
virtual void open(); //!< USB Host start
virtual void close(); //!< USB Host stop
/**
* @brief serial
* @return
*/
uint32_t serialNumber() const { return serial_number; }
/**
* @brief firmware
* @return
*/
uint16_t firmwareVersion() const { return firmware_version; }
/**
* @brief txBreakTime
* @return
*/
double txBreakTime() const { return tx_break_intervals * Pro::DMX_BREAK_INTERVAL; }
/**
* @brief txMabTime
* @return
*/
double txMabTime() const { return tx_mab_intervals * Pro::DMX_MAB_INTERVAL; }
/**
* @brief txRate
* @return
*/
double txRate() const { return tx_rate; }
protected:
void routeRxMessage(std::shared_ptr<Pro::MessageData>);
virtual void sendMessage(std::shared_ptr<Pro::MessageData>) const;
void getSerialNumber();
void getParameters(size_t user_length = 0);
void setParameters();
/**
* @brief writeFwPage
* @return
*
* Reimpliment in super class to process the page. Base implimentation is to return false.
*/
virtual bool writeFwPage(uint8_t*) { return false; }
uint32_t serial_number; //!< BCD serial number
uint16_t firmware_version; //!< Firmware version number
uint8_t tx_break_intervals; //!< DMX_BREAK_INTERVAL count of the DMX BREAK
uint8_t tx_mab_intervals; //!< DMX_MAB_INTERVAL count of the DMX MARK AFTER BREAK
uint8_t tx_rate; //!< DMX packet transmit Rate
std::vector<uint8_t> user_configuration; //!< User defined configuration data.
private:
void rxMsgReprogramFirmware(std::shared_ptr<Pro::MsgReprogramFirmware>);
void rxMsgProgramFlashPageRequest(std::shared_ptr<Pro::MsgProgramFlashPageRequest>);
void rxMsgProgramFlashPageReply(std::shared_ptr<Pro::MsgProgramFlashPageReply>);
void rxMsgGetWidgetParametersRequest(std::shared_ptr<Pro::MsgGetWidgetParametersRequest>);
void rxMsgGetWidgetParametersReply(std::shared_ptr<Pro::MsgGetWidgetParametersReply>);
void rxMsgSetWidgetParametersRequest(std::shared_ptr<Pro::MsgSetWidgetParametersRequest>);
void rxMsgRecievedDmxPacket(std::shared_ptr<Pro::MsgRecievedDmxPacket>);
void rxMsgOutputOnlySendDMX(std::shared_ptr<Pro::MsgOutputOnlySendDMX>);
void rxMsgSendRDMData(std::shared_ptr<Pro::MsgSendRDMData>);
void rxMsgRecieveDMXOnChange(std::shared_ptr<Pro::MsgRecieveDMXOnChange>);
void rxMsgRecievedDMXChanged(std::shared_ptr<Pro::MsgRecievedDMXChanged>);
void rxMsgGetWidgetSerialRequest(std::shared_ptr<Pro::MsgGetWidgetSerialRequest>);
void rxMsgGetWidgetSerialReply(std::shared_ptr<Pro::MsgGetWidgetSerialReply>);
void rxMsgSendRDMDiscovery(std::shared_ptr<Pro::MsgSendRDMDiscovery>);
enum OperatingModes {
USBunknown,
USBhost,
USBdevice
} usb_mode_;
};
} // namespace ENTTEC