summaryrefslogtreecommitdiff
path: root/common
AgeCommit message (Collapse)Author
2015-04-10Remove core library and build filestmk
2015-01-19Merge pull request #151 from bswinnerton/typo-fixtmk
Fixing typo in console mode
2015-01-15Compensate timer during prower downtmk
2015-01-04infinity: Add initial files for keyboard supportJun Wako
2015-01-04Ad hoc fix of print and debug for mbedJun Wako
2015-01-01Fix modifier stuck of Lock command(#127)tmk
2014-12-26Remove unwanted white spaceJun Wako
2014-12-26Add keycode for Fast Forward & RewindColt Ma
KC_MEDIA_FAST_FORWARD KC_MEDIA_REWIND
2014-12-05usb_usb: Update for new core layoutJun Wako
2014-11-30Fixing typo in console modeBrooks Swinnerton
2014-11-24Fix debug.htmk
2014-11-24Merge branch 'rn42' into merge_rn42tmk
Conflicts: .gitignore common.mk common/debug_config.h common/print.h
2014-11-23Remove MCU dependent code from common/keyboard.ctmk
2014-11-23Matrix power savingtmk
2014-11-20USB initialize when plug-in during battery poweredtmk
2014-11-18Merge branch 'action_fix'tmk
2014-11-14Add initializer of debug_config for GCC < 4.6.0(#144)tmk
2014-11-14Fix for 'unnamed field in initializer' GCC bug(Fix #143)tmk
2014-09-29Add action 'Momentary switching with Modifiers'tmk
2014-09-22Adhoc fix compile error of usb_usbtmk
2014-08-26Add serial_mouse_task in keyboard.ctmk
2014-07-30Ad hoc fix of command APItmk
2014-07-30Fix timer.h to include AVR specific headertmk
2014-07-30Port ps2_usb to mbedtmk
2014-07-30Fix common files for mbedtmk
2014-07-30Fix debug.h and remove debug_config.htmk
2014-07-30Port action_* to mbedtmk
2014-07-30Fix print and timertmk
2014-07-30Port timer to mbedtmk
2014-07-30Add keyboard/mbed_onekeytmk
2014-07-07Merge pull request #124 from kairyu/6krotmk
USB 6KRO with pseudo- or half- NKRO feature
2014-07-07Merge pull request #112 from shayneholmes/ee_nkro_use_reserved_bittmk
Adding NKRO virtual dip-switch, using existing bit in keymap byte.
2014-05-13New branch for 6KRO featureKai Ryu
2014-04-27NKRO is disable when SET_PROTOCOL(boot)tmk
- Command can force to enable NKRO even when boot mode - After boot keyboard may be in boot mode due to BIOS' request
2014-04-27Make NKRO deafult when it is availabletmk
- NKRO is used only when keyboard_protocol = 1(report)
2014-04-09Adding NKRO virtual dip-switch, using existing bit in keymap byte.Shayne Holmes
This takes the last, reserved bit there, but doesn't necessitate a revision to the magic number because it doesn't alter byte order. Add reference to NKRO virtual dip-switch to documentation.
2014-04-08New macro: ACTION_BACKLIGHT_LEVEL(level)Ralf Schmitt
To have full control of the backlight level.
2014-01-28Make modifiers 'weak' in macrotmk
2013-12-16Add description of keyboard report in report.htmk
2013-11-28Merge branch 'modstaptoggle' of git://github.com/simonmelhart/tmk_keyboard ↵tmk
into simonmelhart-modstaptoggle Conflicts: common/action_code.h
2013-11-21Add parenthses ito macro argumentstmk
2013-11-20Add tap toggle modifiersSimon Melhart
Including documentation.
2013-11-20Fix to build ps2_mouse with both LUFA and PJRCtmk
- change API of ps2_mouse; ps2_mouse_task() - remove mouse_report from host.c
2013-11-19Wait for USB starting up to make debug print availabletmk
2013-11-02Fix PS/2 mouse supporttmk
2013-10-07Add timeout option to MODS_ONESHOT #66tmk
2013-10-04Fix mod stuck of MODS_KEY when leaving layer #62tmk
- 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
2013-10-03Fix Tapping: release key immediately but modifier #65tmk
- 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) ~~~____~~~~
2013-09-21Fix USB initilaize on LUFAtmk
- 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.
2013-09-21Fix to bootmagic key configurabletmk