mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
6f43fe1196
* Removed -HUP so the default -TERM signal is sent instead. - hyperiond only listens for TERM and INT. HUP is often used to get an exe to reread its config Changed pgrep to add '-x' so it wont partial match on the exe name. - I have multiple instances with multiple hyperiond-instance1 names - this ensures the service script only kills the right process * reversing errant change to hyperion.systemd.sh * cleaned up a couple of compiler warnings * moved bitpair_to_byte initialiser to (hopefully) work with older GCC * compiler warning in udp driver removed some tabs in ws2812b.cpp * formatting - spaces to tabs * moved rpi_281x to tag sk6812-v1.0 * moving to my fork of rpi_281x * half way thru re merging the newudp support * Whoops.... dont know how it compiled before.. * Removed debugging that was commented out Former-commit-id: ac4330422f93f3d594dfcba5593759288298d25e
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <QUdpSocket>
|
|
|
|
// Linux-SPI includes
|
|
#include <linux/spi/spidev.h>
|
|
|
|
// Hyperion includes
|
|
#include <leddevice/LedDevice.h>
|
|
|
|
///
|
|
/// The LedUdpDevice implements an abstract base-class for LedDevices using the SPI-device.
|
|
///
|
|
class LedUdpDevice : public LedDevice
|
|
{
|
|
public:
|
|
///
|
|
/// Constructs the LedDevice attached to a SPI-device
|
|
///
|
|
/// @param[in] outputDevice The name of the output device (eg '/etc/UdpDev.0.0')
|
|
/// @param[in] baudrate The used baudrate for writing to the output device
|
|
/// @param[in] latchTime_ns The latch-time to latch in the values across the SPI-device (negative
|
|
/// means no latch required) [ns]
|
|
///
|
|
LedUdpDevice(const std::string& outputDevice, const unsigned baudrate, const int latchTime_ns = -1);
|
|
|
|
///
|
|
/// Destructor of the LedDevice; closes the output device if it is open
|
|
///
|
|
virtual ~LedUdpDevice();
|
|
|
|
///
|
|
/// Opens and configures the output device
|
|
///
|
|
/// @return Zero on succes else negative
|
|
///
|
|
int open();
|
|
|
|
protected:
|
|
///
|
|
/// Writes the given bytes/bits to the SPI-device and sleeps the latch time to ensure that the
|
|
/// values are latched.
|
|
///
|
|
/// @param[in[ size The length of the data
|
|
/// @param[in] data The data
|
|
///
|
|
/// @return Zero on succes else negative
|
|
///
|
|
int writeBytes(const unsigned size, const uint8_t *data);
|
|
|
|
private:
|
|
/// The name of the output device
|
|
const std::string mDeviceName;
|
|
/// The used baudrate of the output device
|
|
const int mBaudRate_Hz;
|
|
/// The time which the device should be untouched after a write
|
|
const int mLatchTime_ns;
|
|
|
|
/// The File Identifier of the opened output device (or -1 if not opened)
|
|
int mFid;
|
|
///
|
|
QUdpSocket *udpSocket;
|
|
QHostAddress _address;
|
|
quint16 _port;
|
|
};
|
|
|