mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
7389068a66
* Refactor LedDevices - Initial version * Small renamings * Add WLED as own device * Lpd8806 Remove open() method * remove dependency on Qt 5.10 * Lpd8806 Remove open() method * Update WS281x * Update WS2812SPI * Add writeBlack for WLED powerOff * WLED remove extra bracket * Allow different Nanoleaf panel numbering sequence (Feature req.#827) * build(deps): bump websocket-extensions from 0.1.3 to 0.1.4 in /docs (#826) * Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/faye/websocket-extensions-node/releases) - [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md) - [Commits](https://github.com/faye/websocket-extensions-node/compare/0.1.3...0.1.4) * Fix typos * Nanoleaf clean-up * Yeelight support, generalize wizard elements * Update Yeelight to handle quota in music mode * Yeelight extend rage for extraTimeDarkness for testing * Clean-up - Add commentary, Remove development debug statements * Fix brightnessSwitchOffOnMinimum typo and default value * Yeelight support restoreOriginalState, additional Fixes * WLED - Remove UDP-Port, as it is not configurable * Fix merging issue * Remove QHostAddress::operator=(const QString&)' is deprecated * Windows compile errors and (Qt 5.15 deprecation) warnings * Fix order includes * LedDeviceFile Support Qt5.7 and greater * Windows compatibility and other Fixes * Fix Qt Version compatability * Rs232 - Resolve portname from unix /dev/ style, fix DMX sub-type support * Disable WLED Wizard Button (until Wizard is available) * Yeelight updates * Add wrong log-type as per #505 * Fixes and Clean-up after clang-tidy report * Fix udpe131 not enabled for generated CID * Change timer into dynamic for Qt Thread-Affinity * Hue clean-up and diyHue workaround * Updates after review feedback by m-seker * Add "chrono" includes
152 lines
3.0 KiB
C++
152 lines
3.0 KiB
C++
|
|
// STL includes
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <iostream>
|
|
#include <cerrno>
|
|
|
|
// Linux includes
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
// Local Hyperion includes
|
|
#include "ProviderSpi.h"
|
|
#include <utils/Logger.h>
|
|
|
|
|
|
ProviderSpi::ProviderSpi()
|
|
: LedDevice()
|
|
, _deviceName("/dev/spidev0.0")
|
|
, _baudRate_Hz(1000000)
|
|
, _fid(-1)
|
|
, _spiMode(SPI_MODE_0)
|
|
, _spiDataInvert(false)
|
|
{
|
|
memset(&_spi, 0, sizeof(_spi));
|
|
_latchTime_ms = 1;
|
|
}
|
|
|
|
ProviderSpi::~ProviderSpi()
|
|
{
|
|
}
|
|
|
|
bool ProviderSpi::init(const QJsonObject &deviceConfig)
|
|
{
|
|
bool isInitOK = false;
|
|
|
|
// Initialise sub-class
|
|
if ( LedDevice::init(deviceConfig) )
|
|
{
|
|
_deviceName = deviceConfig["output"].toString(_deviceName);
|
|
_baudRate_Hz = deviceConfig["rate"].toInt(_baudRate_Hz);
|
|
_spiMode = deviceConfig["spimode"].toInt(_spiMode);
|
|
_spiDataInvert = deviceConfig["invert"].toBool(_spiDataInvert);
|
|
|
|
Debug(_log, "_baudRate_Hz [%d], _latchTime_ms [%d]", _baudRate_Hz, _latchTime_ms);
|
|
Debug(_log, "_spiDataInvert [%d], _spiMode [%d]", _spiDataInvert, _spiMode);
|
|
|
|
isInitOK = true;
|
|
}
|
|
return isInitOK;
|
|
}
|
|
|
|
int ProviderSpi::open()
|
|
{
|
|
int retval = -1;
|
|
QString errortext;
|
|
_isDeviceReady = false;
|
|
|
|
const int bitsPerWord = 8;
|
|
|
|
_fid = ::open(QSTRING_CSTR(_deviceName), O_RDWR);
|
|
|
|
if (_fid < 0)
|
|
{
|
|
errortext = QString ("Failed to open device (%1). Error message: %2").arg(_deviceName, strerror(errno));
|
|
retval = -1;
|
|
}
|
|
else
|
|
{
|
|
if (ioctl(_fid, SPI_IOC_WR_MODE, &_spiMode) == -1 || ioctl(_fid, SPI_IOC_RD_MODE, &_spiMode) == -1)
|
|
{
|
|
retval = -2;
|
|
}
|
|
else
|
|
{
|
|
if (ioctl(_fid, SPI_IOC_WR_BITS_PER_WORD, &bitsPerWord) == -1 || ioctl(_fid, SPI_IOC_RD_BITS_PER_WORD, &bitsPerWord) == -1)
|
|
{
|
|
retval = -4;
|
|
}
|
|
else
|
|
{
|
|
if (ioctl(_fid, SPI_IOC_WR_MAX_SPEED_HZ, &_baudRate_Hz) == -1 || ioctl(_fid, SPI_IOC_RD_MAX_SPEED_HZ, &_baudRate_Hz) == -1)
|
|
{
|
|
retval = -6;
|
|
}
|
|
else
|
|
{
|
|
// Everything OK -> enable device
|
|
_isDeviceReady = true;
|
|
retval = 0;
|
|
}
|
|
}
|
|
}
|
|
if ( retval < 0 )
|
|
{
|
|
errortext = QString ("Failed to open device (%1). Error Code: %2").arg(_deviceName).arg(retval);
|
|
}
|
|
}
|
|
|
|
if ( retval < 0 )
|
|
{
|
|
this->setInError( errortext );
|
|
}
|
|
|
|
return retval;
|
|
}
|
|
|
|
int ProviderSpi::close()
|
|
{
|
|
// LedDevice specific closing activities
|
|
int retval = 0;
|
|
_isDeviceReady = false;
|
|
|
|
// Test, if device requires closing
|
|
if ( _fid > -1 )
|
|
{
|
|
// Close device
|
|
if ( ::close(_fid) != 0 )
|
|
{
|
|
Error( _log, "Failed to close device (%s). Error message: %s", QSTRING_CSTR(_deviceName), strerror(errno) );
|
|
retval = -1;
|
|
}
|
|
}
|
|
return retval;
|
|
}
|
|
|
|
int ProviderSpi::writeBytes(const unsigned size, const uint8_t * data)
|
|
{
|
|
if (_fid < 0)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
_spi.tx_buf = __u64(data);
|
|
_spi.len = __u32(size);
|
|
|
|
if (_spiDataInvert)
|
|
{
|
|
uint8_t * newdata = (uint8_t *)malloc(size);
|
|
for (unsigned i = 0; i<size; i++) {
|
|
newdata[i] = data[i] ^ 0xff;
|
|
}
|
|
_spi.tx_buf = __u64(newdata);
|
|
}
|
|
|
|
int retVal = ioctl(_fid, SPI_IOC_MESSAGE(1), &_spi);
|
|
ErrorIf((retVal < 0), _log, "SPI failed to write. errno: %d, %s", errno, strerror(errno) );
|
|
|
|
return retVal;
|
|
}
|