tmk_keyboard/converter/ibmpc_usb
2021-08-16 14:07:03 +09:00
..
binary ibmpc_usb: Update prebuilt firmware files 2021-06-03 12:06:45 +09:00
config.h ibmpc_usb: C++ class for two-interface support 2021-07-06 23:24:59 +09:00
ibmpc_usb.c ibmpc_usb: Detect data out of sync for mouse 2021-07-07 23:13:15 +09:00
ibmpc_usb.cpp ibmpc_usb: Detect data out of sync for mouse 2021-07-07 23:13:15 +09:00
ibmpc_usb.h ibmpc_usb: matrix stores unimap translated states 2021-07-06 23:24:39 +09:00
ibmpc_usb.hpp ibmpc_usb: C++ class for two-interface support 2021-07-06 23:24:59 +09:00
Makefile ibmpc_usb: C++ class for two-interface support 2021-07-06 23:24:59 +09:00
Makefile.at90usb1286 ibmpc_usb: Fix Makefiles 2019-12-05 08:57:41 +09:00
Makefile.atmega32u2 ibmpc_usb: Fix Makefiles 2019-12-05 08:57:41 +09:00
Makefile.atmega32u4 ibmpc_usb: Fix Makefiles 2019-12-05 08:57:41 +09:00
Makefile.x2 ibmpc_usb: C++ class for two-interface support 2021-07-06 23:24:59 +09:00
README.md ibmpc_usb: Update README 2021-07-07 23:13:15 +09:00
unimap_plain.c ibmpc_usb: matrix stores unimap translated states 2021-07-06 23:24:39 +09:00
unimap_trans.h ibmpc_usb: Fix ISO key mapping #702 2021-08-16 14:07:03 +09:00

IBM PC Keyboard Converter

The converter translates IBM PC keyboard protocols into USB HID to use classic keyboards on modern computer with USB ports. This can supports IBM XT and AT protocols and recognize scan code set 1, 2 and 3 with just one firmware.

This project is intended to integrated existent TMK XT, PS/2 and Terminal keyboard converters.

Test in the field and feedback from users are needed to improve firmware code.

Discuss in this thread or on github. https://geekhack.org/index.php?topic=103648.0

You can buy prebuilt TMK converter to support this project here. https://geekhack.org/index.php?topic=72052.0

Keyboard supported

  • PC XT keyboard of IBM 5150 5160
    • 83-key: 1501100 1501105
  • PC AT keyboard of IBM 5170
    • 84-key: 6450200 6450225
  • PC Terminal keyboard of IBM 5271(3270 PC)
    • 122-key: 6110344 6110345 1397000
    • 102-key: 1390680 1395764 1392595
    • IBM 5576-001
  • PS/2 keyboards
  • Other IBM PC compatible keyboards

Optionally PS/2 mouses can be supported.

  • PS/2 mouse
    • Default
    • Microsoft IntelliMouse
    • Microsoft ExplorerMouse
    • Logitech PS/2++

Firmware

Build Firmware

$ cd converter/ibmpc_usb
$ make -f Makefile.<variant> clean
$ make -f Makefile.<variant>

Build Options

In Makefiile:

# IBMPC Options
IBMPC_SECONDARY ?= no
IBMPC_MOUSE_ENABLE ?= no

These options bloat firmware size and you may need to disable other options.

  • IBMPC_SECONDARY - enables secondary interface for converter with PS/2 Mini-DIN-6 connector
  • IBMPC_MOUSE_ENABLE - enables PS/2 mouse support

Keymap Editor

You can edit keymap on web browser and download prebuilt firmware here.

http://www.tmk-kbd.com/tmk_keyboard/editor/#ibmpc_usb

Debug

Use hid_listen to see debug outputs from the converter.

https://github.com/tmk/tmk_keyboard/wiki#debug

Converter Hardware

This firmware supports ATMega32u4, ATMega32u2 and AT90USB1286 by default, Teensy2/2++ or ProMicro can be used. Wire microcontroller pins below to keyboard signals, besides VCC and GND. This pin configuration is compatible for Soarer's converter.

Pull up resistors of 1-4.7K Ohm on both Data and Clock line are recommended, without them it won't work in some cases.

  • Data PD0
  • Clock PD1
  • Reset PB6 or PB7 (For some of XT keyboards. Not needed for AT, PS/2 and Terminal)

For optional secondary interface use these pins.

  • Data PD2
  • Clock PD3

Reset

Old Type-1 IBM XT keyboard and some of XT clones need Reset pin to starup its controller. Connect Reset pin to pin3 of DIN-5(180-degree) connector. This should not harm keyboards which don't require reset, it is safe and recommended to have Reset pin on AT/XT converter.

Zenith Z-150 XT and Leading Edge DC-2014 are also known to need this.

See this for IBM XT Type-1 vs Type-2: https://github.com/tmk/tmk_keyboard/wiki/IBM-PC-XT-Keyboard-Protocol#type-1-vs-type-2

Connector pinouts

XT - DIN-5(180-degree)

AT - DIN-5(180-degree)

Terminal - DIN-5(240-degree) or DIN-6

PS/2 - Mini-DIN-6

For secondary interface use pin2 and pin6 for data and clock respectively. You can use PS/2 Y-splitter cable to access secondary interface.

Scan Code Mapping

This is how the converter map keyboard scan code to USB key.

https://github.com/tmk/tmk_keyboard/wiki/IBM-PC-Keyboard-Converter#default-mapping

Resources