Greetings,
I've done a small test to see the performances of reaing DM[] or LOAD_EEP() Integer..
and the results are
for DM reading, it take 129,4µs
for LOAD_EEP reading it take 169,8µs
Here is the code used:
A = STATUS(21)
SETLCD 1, 1, "DM =" + STR$(DM[1]) + " / " + STR$(STATUS(21)-A)
A = STATUS(21)
SETLCD 2, 1, "EEP=" + STR$(LOAD_EEP(1)) + " / " + STR$(STATUS(21)-A)
A = STATUS(21)
SETLCD 3, 1, "DM =" + STR$(DM[2]) + " / " + STR$(STATUS(21)-A)
A = STATUS(21)
SETLCD 4, 1, "EEP=" + STR$(LOAD_EEP(2)) + " / " + STR$(STATUS(21)-A)