K8047: interpretation of timer data

The MSB is the high byte of the elapsed time. Actually the internal counter counts up to 65535. The result (MSB and LSB bytes) are sent in separate integers.
You’ll get the time in 10 milliseconds by the formula:
Time = 256*MSB + LSB.