We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20d18b5 + 4e8cf8e commit 0169fddCopy full SHA for 0169fdd
src/main/kotlin/operations/TraceOperation.kt
@@ -35,7 +35,7 @@ class TraceOperation(
35
}
36
val intValue = ((currentValue[1].toInt() shl 16) or (currentValue[0].toInt() and 0xFFFF))
37
val currentFloatValue = java.lang.Float.intBitsToFloat(intValue)
38
- valueToTrace = currentValue.toString()
+ valueToTrace = currentFloatValue.toString()
39
} else {
40
var currentValue = memory.readHoldingRegister(variable.address.toInt(), 1)
41
if (currentValue.isEmpty()) {
0 commit comments