Added a dumb return

This commit is contained in:
TraYali 2024-03-19 16:41:58 +01:00
parent 74c178b018
commit f6b42b2460

View file

@ -28,7 +28,9 @@ std::pair<PortParameter::PortParameterValue, PortParameter::PortParameterValueTy
return std::pair<PortParameter::PortParameterValue, PortParameter::PortParameterValueType>(this->value, this->valueType);
}
std::string PortParameter::getOutputValue() {}
std::string PortParameter::getOutputValue() {
return "yeet";
}
void PortParameter::updateValue(std::shared_ptr<modbus_t*> modbus_context, uint16_t portStartAddress) {
uint16_t readArray[this->registerSize];