Keyboard firmwares for Atmel AVR and Cortex-M
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
tmk a88ad58342 core: Swap position of PEQL and PENT in unimap pirms 7 gadiem
..
binary ps2_usb: Use standby mode in suspend pirms 7 gadiem
Makefile Fix Makefile for NKRO comment pirms 7 gadiem
Makefile.mbed Remove keymap read code from project directories pirms 7 gadiem
Makefile.rev1 ps2_usb: Change Makefiles pirms 7 gadiem
Makefile.rev2 ps2_usb: Change Makefiles pirms 7 gadiem
Makefile.unimap.rev1 ps2_usb: Change Makefiles pirms 7 gadiem
Makefile.unimap.rev2 ps2_usb: Add setting for suart debug pirms 7 gadiem
Makefile.vusb Remove keymap read code from project directories pirms 7 gadiem
README.md ps2_usb: Change Makefiles pirms 7 gadiem
config.h ps2_usb: Support for hidden switch in model M pirms 7 gadiem
config_mbed.h Port ps2_usb to mbed pirms 9 gadiem
config_rev1.h ps2_usb: Support for hidden switch in model M pirms 7 gadiem
config_rev2.h ps2_usb: Support for hidden switch in model M pirms 7 gadiem
keymap_common.h ps2_usb: Support for hidden switch in model M pirms 7 gadiem
keymap_jis.c Fix: Use action_t in keymap files pirms 7 gadiem
keymap_plain.c Fix: Use action_t in keymap files pirms 7 gadiem
keymap_spacefn.c Fix: Use action_t in keymap files pirms 7 gadiem
led.c Made directories for keyboard and converter projects. pirms 12 gadiem
main.cpp Port ps2_usb to mbed pirms 9 gadiem
matrix.c Fix matrix_clear() for new matrix API pirms 7 gadiem
unimap_plain.c core: Swap position of PEQL and PENT in unimap pirms 7 gadiem
unimap_trans.h core: Swap position of PEQL and PENT in unimap pirms 7 gadiem
usbconfig.h Fix PS/2 protocol build options pirms 11 gadiem

README.md

PS/2 to USB keyboard converter

This firmware converts PS/2 keyboard protocol to USB.(It supports Scan Code Set 2.)

Connect Wires

  1. Connect Vcc and GND.
  2. Connect Clock and Data line.
    • Interrupt: Clock is on PD1 and Data on PD0.(Recommended. Soarer’s converter compatible)
    • Busywait: Clock is on PD1 and Data on PD0.
    • USART: Clock is on PD5 and Data on PD2.
  3. You need pull-up resistors. 1K-10K Ohm would be fine.

To change pin configuration edit config.h and Makefile.

Build Firmware

For TMK converter Rev.2:

$ make -f Makefile.rev2 clean
$ make -f Makefile.rev2 KEYMAP=plain

To program firmware push the button on converter and run:

$ make -f Makefile.rev2 KEYMAP=plain dfu
  • For TMK converter Rev.1 use make -f Makefile.rev1 instead.
  • To select keymap use jis, spacefn or your own in place of plain.

Keymap

Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create file named keymap_<name>.c and see keymap document(you can find in README.md of top directory) and existent keymap files.

PS/2 signal handling implementations

Following three methods can be used to implement PS/2 signal handling.

Simple and stupid busy-wait(ps2_busywait.c)

This is expected to implemented with portable C code for reference.

Interrupt driven(ps2_interrupt.c)

Uses pin interrupt to detect falling edge of clock line.

USART hardware module(ps2_usart.c)

Uses AVR USART engine to receive PS/2 signal.

To select method edit Makefile.

V-USB Support

With V-USB you can use this converter on ATmega(168/328) but it doesn’t support NKRO at this time.

Circuit:

                +---+   +---------------+
USB            GND  |   |   ATmega168   |
===                 C3  |               |
5V <-------+--------+---|Vcc,AVCC       |        PS/2
           R1           |               |        ====
D- <----+--+-----R2-----|INT1        RXD|------->DATA
D+ <----|---+----R3-----|INT0        XCK|------->CLOCK
        Z1  Z2          |               |      ->5V
GND<----+---+--+--+-----|GND            |      ->GND
               |  |     |               |
               |  C2-+--|XTAL1          |
               |     X1 |               |
               +--C3-+--|XTAL2          |
                        +---------------+
R1:     1.5K Ohm
R2,R3:  68 Ohm
Z1,Z2:  Zenner 3.6V
C1,C2:  22pF
C3:     0.1uF
X1:     Crystal 20MHz(16MHz/12MHz)