This commit is contained in:
2025-12-28 20:18:28 +01:00
parent 94323e7409
commit 517dcceb81
6 changed files with 826 additions and 7 deletions

View File

@@ -160,7 +160,7 @@ uint32_t BCTransmitter::readRawByte( uint32_t deviceID, uint8_t registerID ) c
return _canDriver.readRawByte( deviceID, registerID );
}
catch ( BCException& exception )
{
{
qDebug() << " -- OUCH: read exception: " << exception.what();
}
@@ -170,7 +170,7 @@ void BCTransmitter::writeRawByte( uint32_t deviceID, uint8_t registerID , uint8_
{
try
{
_canDriver.writeRawByte( deviceID, registerID, value );
_canDriver.writeRawByte( deviceID, registerID, value );
}
catch ( BCException& exception )
{