i am playing with the AccelMag sample.
the sample implements the following timer:
dataTimer.start(method(:timerCallback), 100, true);
I am writing the ms timer to the console (when i use the simulator) and to the log file (when i sideload the app):
function timerCallback() {
Sys.println(Sys.getTimer());
i have observed that in the simulator i get approximately the 100ms interval. but in the FR230 i get just 2000ms:
1002580
1004572
1006494
1008401
1010337
1012265
1014228
is this really the fastest timer i can use in a FR230? 2 seconds?