Commit Graph

3810 Commits (13eb2f826bc3ef9b6e7b4a1804d9ce50104cc833)
 

Author SHA1 Message Date
tmk 4e5bce22de Add parenthses ito macro arguments
tmk 4e7ec43c3f Add SpaceFN layout to gh60
tmk 22e293696d Add new keymap management on gh60
tmk 772ab7025d Merge branch 'ps2_mouse_fix'
tmk a9c3f4750b Configure PS/2 mouse build options to onekey
tmk ccbc1dd8e7 Fix PS/2 USART version
tmk 416a5b849e Fix interrupt version of ps2.c
Simon Melhart a6afa845b9 Add tap toggle modifiers
Including documentation.
tmk c6abcb6d89 Add build options of ps2_mouse
tmk d7f663a1ea Fix to build ps2_mouse with both LUFA and PJRC
- change API of ps2_mouse; ps2_mouse_task()
- remove mouse_report from host.c
tmk 755e4d8b00 Add PS/2 mouse configure to onekey
tmk 44d2d5f5fd Fix delay of PS/2 mouse init
tmk 9d40be1990 Wait for USB starting up to make debug print available
tmk 821578293c Remove tentative files from blargg
tmk c531a185a4 Disable BOOTMAGIC and fix debug prints of adb_usb
tmk 84b9ce7125 Fix ADB led_set(); remove delay
- the 100ms delay causes keystroke drop; this is observable with
  pressing Numlock key on AEK repeatedly
- without the delay LED sync problem doesn't occur now
tmk 94823030f0 Add cli() to protoect ADB critical timing part
tmk 676d94d137 Fix PS/2 mouse support
tmk 1591764cfb Tweak time values of busywait PS/2
tmk eea3b699a6 Merge branch 'onekey'
tmk b9fe36f237 Add USE_LEGACY_KEYMAP in config.h of ps2_usb and IIgs
tmk ee109d68d6 Delete MOUSEKEY_DELAY_TIME in config.h
tmk c18c52f551 Merge blargg's fix into adb.c
- <http://geekhack.org/index.php?topic=14290.msg1075201#msg1075201>
tmk 59ecced486 Add ADB protocol files from blargg's work
- <http://geekhack.org/index.php?topic=14290.msg1070604#msg1070604>
tmk 86082f90fa Change ADB scan delay 12ms
tmk e8e8f93bcf Fix ADB missing keystrokes problem Thanks, blargg!
- Add delay between scans to prevent overlaod of ADB keyboard controllers
- <http://geekhack.org/index.php?topic=14290.msg1068919#msg1068919>
tmk 63b3e2cbfb Make LUFA stack as default for ADB converter
tmk 48662ace8b Fix build error and debug print PJRC stack
tmk 35f9f30074 Add timeout option to MODS_ONESHOT
tmk d52d554360 Fix mod stuck of MODS_KEY when leaving layer
- Add action_util.c and remove action_oneshot.c
- Add oneshot_mods for MODS_ONESHOT
- Add weak_mods for MODS_KEY and MACRO
- weak_mods is cleared when layer switching
tmk cb434cfebc Remove clear matrix on ADB recv error
tmk 7e8a85caad Fix VERSION: add opton --always to git describe
tmk 8819cf6bb1 Fix Tapping: release key immediately but modifier
- See https://github.com/tmk/tmk_keyboard/issues/60
- **Except for modifiers** a key pressed before the tapping starts should be released immediately
- 'Mod-Tap key'(like shift-;) didn't work from this fix: 4d0b3aa Fix Tapping: release of a key pressed before tap
This key sequence should register ':', not ';'. With the fix Shift is
released before settlement of tapping, this registers ';'.
    Shift   ~~___~~~~~~~
    ;(Tap)  ~~~____~~~~
tmk a0f9c1fb4f Merge branch 'm0110_keymap_section'
tmk ea5938da1a Change for default keymap of keymap editor
tmk 09e80fecc6 Add build option KEYMAP_SECTION_ENABLE to m0110
tmk b9d59f33f2 Add M0120 scan code diagram
tmk d267ee2ada Fix LUFA blocking during startup
- Blocking occurs if built without option INTERRUPT_CONTROL_ENDPOINT
tmk 7d692c492c Fix USB initilaize on LUFA
- Add print messages of USB intialize procesure.
- call out sei() in earlier stage. LUFA API doc of USB_Init() says:
interrupts must be enabled within 500ms ... to ensure that the host does
not time out whilst enumerating the device
- remove matrix_init() from suspend_wakeup_init(). It is not needed in
  fact and if matrix_init() takes long time to initialize it prevents
host emnumerating the device.
tmk 6ccea742de Merge branch 'm0110_next'
tmk b2c7529ec9 Fix to bootmagic key configurable
tmk 6cf6ddceb1 Fix README of M0110
tmk 7e122279c5 Change keymap and enable bootmagic of M0110
tmk febdf10602 Remove procedures not neeed from init of M0110
tmk 22315fcdf9 Change m0110 pin configuration: swap D0 and D1
tmk 58ca7b904b Merge branch 'tapping_fix60'
tmk 9f29fa6bf3 Fix version info command
tmk 0ca415004a Fix bootloader jump use word address
- Call of function pointer is compiled into 'icall' instruction.
It should use word address but it has used byte address :( It seems
jump has worked luckily by chance until now. why it worked?
tmk 4d0b3aace0 Fix Tapping: release of a key pressed before tap
- immediately process release event of a key pressed before tapping
tmk c7faa51ee8 Fix action macros