Hi!
Has anyone figured out how to disable the keyboard repeat for the 9210? I have writtrn a simple OPL that goes bananas if the user holds the enter key down for too long. It would be nice to disable the key rollover completely or flush the keyboard buffer occasionally.
Is there an easy way to do this? I've looked through the system.oph & there doen't seem to be a suitable flag...
-Andy
Been there, done that 😊
It sucks doesn't it? well I had the luck that I could read the keyboard after a almost exact period of time, so whenever my program was free to handle a request I looped to get some keypresses out (which I just ignored) I checked until there was nothing left to handle or when I did it 4 times (which I guessed)
So I just trialed and errored to find out what the amount of keypresses was until I could handle them again (which was 4) and then ignored those.
It works now, not perfect, but it works