Timer with higher resolution

I need a timer that fires faster than 1/1000 of a second, let’s say 1/10.000. Is there a solution for that?

Thanks

Mac? Win? Linux?

Check TimerMBS class in MBS Xojo Plugins.

Can use 1ms periods on Windows, which Xojo’s timer can’t do.

I think you reached the realms of low level needs, needing low level coding (C, rust, assembly…) keeping one thread/cpu core busy just for such demanding task.

1 Like

there is System.Microseconds
combined with a thread?