Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix Tapping: release key immediately but modifier #65 | tmk | 2013-10-03 | 2 | -18/+37 | |
| | | | | | | | | | | - 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) ~~~____~~~~ | |||||
* | Fix USB initilaize on LUFA | tmk | 2013-09-21 | 2 | -5/+1 | |
| | | | | | | | | | | - 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. | |||||
* | Fix to bootmagic key configurable | tmk | 2013-09-21 | 3 | -3/+44 | |
| | ||||||
* | Merge branch 'tapping_fix60' | tmk | 2013-09-19 | 1 | -4/+7 | |
|\ | ||||||
| * | Fix Tapping: release of a key pressed before tap | tmk | 2013-09-18 | 1 | -4/+7 | |
| | | | | | | | | - immediately process release event of a key pressed before tapping | |||||
* | | Fix version info command | tmk | 2013-09-19 | 1 | -5/+42 | |
| | | ||||||
* | | Fix bootloader jump use word address | tmk | 2013-09-18 | 1 | -3/+4 | |
|/ | | | | | | - 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? | |||||
* | Fix action macros | tmk | 2013-09-11 | 1 | -4/+4 | |
| | ||||||
* | Add version string | tmk | 2013-09-11 | 1 | -3/+4 | |
| | ||||||
* | Fix tapping count over flow(issue #52) | tmk | 2013-07-29 | 1 | -1/+1 | |
| | ||||||
* | Add NKRO support for LUFA | tmk | 2013-07-28 | 2 | -23/+49 | |
| | ||||||
* | Add bootmagic salt key to avoid accidental configuration | tmk | 2013-07-24 | 2 | -1/+15 | |
| | ||||||
* | Add mechanical locking switch support for NumLock and ScrollLock | tmk | 2013-07-23 | 2 | -6/+53 | |
| | ||||||
* | Add support for macro media/system keys | tmk | 2013-07-23 | 5 | -73/+73 | |
| | ||||||
* | Cancel tapping when interrupted by other key | tmk | 2013-07-21 | 1 | -26/+45 | |
| | ||||||
* | Change name ACT_LAYER_TAP1 to ACT_LAYER_TAP_EXT | tmk | 2013-07-20 | 2 | -8/+8 | |
| | ||||||
* | Add BACKLIGHT_ENABLE conditional | tmk | 2013-06-23 | 3 | -0/+8 | |
| | ||||||
* | Fix typo | tmk | 2013-06-22 | 1 | -1/+1 | |
| | ||||||
* | Add support for backlight | Wraul | 2013-06-22 | 9 | -0/+185 | |
| | ||||||
* | Add default layer config to bootmagic | tmk | 2013-06-22 | 7 | -9/+31 | |
| | ||||||
* | Fixes to sleep LED. | Mathias Andersson | 2013-05-27 | 1 | -0/+5 | |
| | | | | | Add help text. Add missing SLEEP_LED_ENABLE checks. | |||||
* | Fix deprecated 'prog_*' typedef - Issue #34 | tmk | 2013-05-21 | 6 | -14/+13 | |
| | | | | | | | | | - Remove prog_char from xpritnf - Remove prog_macro_t from acton_macro avr-libc-1.8 removed 'prog_*' typedef because the usage of the __progmem__ attribute on a type is not supported in GCC. http://www.nongnu.org/avr-libc/changes-1.8.html | |||||
* | Fix command.c and README | tmk | 2013-05-15 | 1 | -1/+0 | |
| | ||||||
* | Use dprint and dprintf for debug | tmk | 2013-05-14 | 5 | -62/+72 | |
| | ||||||
* | Add xprintf(xitoa) from elm-chan.org | tmk | 2013-05-14 | 9 | -222/+788 | |
| | ||||||
* | Remove common/controller_teensy.h | tmk | 2013-04-13 | 1 | -27/+0 | |
| | ||||||
* | Add media eject key support from tufty | tmk | 2013-04-12 | 2 | -2/+6 | |
| | ||||||
* | Fix bootmagic and eeconfig for virtual DIP SW | tmk | 2013-04-07 | 10 | -166/+225 | |
| | ||||||
* | Fix keymap for new actions | tmk | 2013-04-05 | 1 | -2/+2 | |
| | ||||||
* | Fix keymap of hhkb for new actions | tmk | 2013-04-05 | 1 | -8/+10 | |
| | ||||||
* | Fix keymap of gh60 | tmk | 2013-04-05 | 1 | -7/+8 | |
| | ||||||
* | Fix ACT_MODS action and switch_default_layer command | tmk | 2013-04-04 | 2 | -8/+3 | |
| | ||||||
* | Add file action_code.h | tmk | 2013-04-04 | 2 | -286/+290 | |
| | ||||||
* | Fix ACTION_LAYER macros | tmk | 2013-04-03 | 1 | -26/+23 | |
| | ||||||
* | Rename file layer_switch to action_layer | tmk | 2013-04-02 | 5 | -6/+6 | |
| | ||||||
* | Refine ACT_LAYER and ACT_LAYER_TAP | tmk | 2013-04-02 | 8 | -315/+263 | |
| | | | | - Remove ACT_LAYER_BITOP | |||||
* | Remove ACT_KEYMAP and ACT_OVERLAY | tmk | 2013-03-31 | 5 | -367/+86 | |
| | | | | | | - Remove ACT_OVERLAY - Rename ACT_KEYMAP to ACT_LAYER - Add ACT_LAYER_BITOP | |||||
* | Add action_tapping.[ch] for refactoring | tmk | 2013-03-29 | 4 | -369/+396 | |
| | ||||||
* | Add sleep LED test command | tmk | 2013-03-27 | 1 | -0/+8 | |
| | ||||||
* | Add supsend and wakeup to pjrc stack | tmk | 2013-03-27 | 1 | -0/+19 | |
| | ||||||
* | Add common/suspend.c | tmk | 2013-03-25 | 3 | -1/+95 | |
| | ||||||
* | Clean action.c | tmk | 2013-03-21 | 1 | -242/+246 | |
| | ||||||
* | Add NO_ACTION_ONESHOT config option | tmk | 2013-03-21 | 3 | -42/+81 | |
| | ||||||
* | Add NO_ACTION_KEYMAP config option | tmk | 2013-03-20 | 3 | -0/+21 | |
| | ||||||
* | Add NO_ACTION_FUNCTION config option | tmk | 2013-03-20 | 1 | -0/+4 | |
| | ||||||
* | Add NO_ACTION_TAPPING and NO_ACTION_MACRO config options | tmk | 2013-03-20 | 3 | -6/+34 | |
| | ||||||
* | Add NO_ACTION_OVERLAY config option | tmk | 2013-03-20 | 3 | -0/+21 | |
| | ||||||
* | Add COMMAND_ENABLE build option | tmk | 2013-03-19 | 1 | -0/+4 | |
| | ||||||
* | Add NO_PRINT and NO_DEBUG config options. | tmk | 2013-03-19 | 5 | -32/+69 | |
| | | | | | - NO_PRINT: disable print.h API(also disable debug.h) - NO_DEBUG: disable debug.h API | |||||
* | Change sleep led step table to get smooth | tmk | 2013-03-16 | 1 | -9/+20 | |
| |