Compiles again, without BCValueType.

This commit is contained in:
2026-01-03 02:50:28 +01:00
parent 6032abb35c
commit c5dc84179b
14 changed files with 353 additions and 568 deletions

View File

@@ -30,7 +30,6 @@
***************************************************************************/
#include "bcvaluetype.h"
#include <QThread>
#include <QDebug>
@@ -121,7 +120,7 @@ void BCTransmitter::processValue()
// Value ist 'under construction'
//emit valueUpdated( value.deviceID, value.indexRow, BCValue::State::Locked );
const BCValueType& valueType = *value.valueType;
uint32_t devID = static_cast<uint32_t>(value.deviceID);
uint8_t regID = static_cast<uint8_t> (value.registerID);
@@ -139,6 +138,7 @@ void BCTransmitter::processValue()
else if( value.state.testFlag( BCValue::State::ReadMe ) )
{
/*
// wir sind hier im anderen thread! nicht einfach so reinschreiben, nur lesen
TransmitResult result = valueType.readValueFunc( *this, devID, regID );
if( result.has_value() )
@@ -150,6 +150,7 @@ void BCTransmitter::processValue()
{
newState = BCValue::State::Failed;
}
*/
}