fixed uint8

This commit is contained in:
Martino Ferrari
2026-02-06 18:11:30 +01:00
parent 9f110481ad
commit 872baa1dc2

View File

@@ -132,7 +132,7 @@ bool JATriangleWaveGAM::Setup() {
TypeDescriptor inputType = GetSignalType(InputSignals, plcStandbyIndex); TypeDescriptor inputType = GetSignalType(InputSignals, plcStandbyIndex);
ok = (inputType == UnsignedInteger8Bit); ok = (inputType == UnsignedInteger8Bit);
if (!ok) { if (!ok) {
REPORT_ERROR(ErrorManagement::ParametersError, "PLCSTANDBY shall be defined as uint32."); REPORT_ERROR(ErrorManagement::ParametersError, "PLCSTANDBY shall be defined as uint8.");
} }
} }
} }