changed to long long for windows
This commit is contained in:
parent
170c141576
commit
2cb7e67df8
8 changed files with 17 additions and 17 deletions
|
|
@ -82,7 +82,7 @@ void PortParameterInt::setValueFromRegisters(uint16_t *readArray, int registerCo
|
|||
readValue = readArray[i];
|
||||
readValueString.append(std::to_string(readValue));
|
||||
}
|
||||
this->value.i = std::stol(readValueString);
|
||||
this->value.i = std::stoll(readValueString);
|
||||
}
|
||||
|
||||
std::string PortParameterInt::getOutputValue() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue