tmk firmware for xt keyboards
Posted: 27 May 2016, 23:54
There was an attempt to port the tmk firmware for xt keyboards like the original IBM PC XT keyboard.
https://github.com/tmk/tmk_keyboard/issues/309
https://github.com/papodaca/tmk_keyboard
It did not work for me. There were random keypresses(even keys the keyboard does not have) and break codes wont register.
The error was in the file config.h: the interrupt routine would be called if the clock signal was falling, not going high.
So the line 60 in the file tmk_keyboard/tmk/converter/xt_usb/config.h must be modified from
to
Sorry if this is the wrong place to post stuff like this, but I don't know how to use git or github. 
https://github.com/tmk/tmk_keyboard/issues/309
https://github.com/papodaca/tmk_keyboard
It did not work for me. There were random keypresses(even keys the keyboard does not have) and break codes wont register.
The error was in the file config.h: the interrupt routine would be called if the clock signal was falling, not going high.
So the line 60 in the file tmk_keyboard/tmk/converter/xt_usb/config.h must be modified from
Code: Select all
(0<<ISC10)); \
Code: Select all
(1<<ISC10)); \
