summaryrefslogtreecommitdiffstats
path: root/common
AgeCommit message (Collapse)AuthorFilesLines
2013-11-26Fix ps2_host_recv_responsetmk1-4/+0
2013-11-25Add printf macro as alias of xprintftmk1-0/+4
2013-11-21Add parenthses ito macro argumentstmk1-4/+4
2013-11-20Fix to build ps2_mouse with both LUFA and PJRCtmk6-24/+2
- change API of ps2_mouse; ps2_mouse_task() - remove mouse_report from host.c
2013-11-18Wait for USB starting up to make debug print availabletmk1-0/+1
2013-11-01Fix PS/2 mouse supporttmk1-1/+14
2013-10-07Add timeout option to MODS_ONESHOT #66tmk2-23/+33
2013-10-04Fix mod stuck of MODS_KEY when leaving layer #62tmk10-316/+323
- 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 #65tmk2-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) ~~~____~~~~
2013-09-21Fix USB initilaize on LUFAtmk2-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.
2013-09-21Fix to bootmagic key configurabletmk3-3/+44
2013-09-19Merge branch 'tapping_fix60'tmk1-4/+7
2013-09-18Fix version info commandtmk1-5/+42
2013-09-18Fix bootloader jump use word addresstmk1-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?
2013-09-18Fix Tapping: release of a key pressed before taptmk1-4/+7
- immediately process release event of a key pressed before tapping
2013-09-11Fix action macrostmk1-4/+4
2013-09-11Add version stringtmk1-3/+4
2013-07-29Fix tapping count over flow(issue #52)tmk1-1/+1
2013-07-28Add NKRO support for LUFAtmk2-23/+49
2013-07-23Add bootmagic salt key to avoid accidental configurationtmk2-1/+15
2013-07-23Add mechanical locking switch support for NumLock and ScrollLocktmk2-6/+53
2013-07-23Add support for macro media/system keystmk5-73/+73
2013-07-20Cancel tapping when interrupted by other keytmk1-26/+45
2013-07-19Change name ACT_LAYER_TAP1 to ACT_LAYER_TAP_EXTtmk2-8/+8
2013-06-23Add BACKLIGHT_ENABLE conditionaltmk3-0/+8
2013-06-22Fix typotmk1-1/+1
2013-06-22Add support for backlightWraul9-0/+185
2013-06-22Add default layer config to bootmagictmk7-9/+31
2013-05-27Fixes to sleep LED.Mathias Andersson1-0/+5
Add help text. Add missing SLEEP_LED_ENABLE checks.
2013-05-21Fix deprecated 'prog_*' typedef - Issue #34tmk6-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
2013-05-14Fix command.c and READMEtmk1-1/+0
2013-05-14Use dprint and dprintf for debugtmk5-62/+72
2013-05-14Add xprintf(xitoa) from elm-chan.orgtmk9-222/+788
2013-04-13Remove common/controller_teensy.htmk1-27/+0
2013-04-12Add media eject key support from tuftytmk2-2/+6
2013-04-07Fix bootmagic and eeconfig for virtual DIP SWtmk10-166/+225
2013-04-04Fix keymap for new actionstmk1-2/+2
2013-04-04Fix keymap of hhkb for new actionstmk1-8/+10
2013-04-04Fix keymap of gh60tmk1-7/+8
2013-04-04Fix ACT_MODS action and switch_default_layer commandtmk2-8/+3
2013-04-04Add file action_code.htmk2-286/+290
2013-04-02Fix ACTION_LAYER macrostmk1-26/+23
2013-04-02Rename file layer_switch to action_layertmk5-6/+6
2013-04-02Refine ACT_LAYER and ACT_LAYER_TAPtmk8-315/+263
- Remove ACT_LAYER_BITOP
2013-03-31Remove ACT_KEYMAP and ACT_OVERLAYtmk5-367/+86
- Remove ACT_OVERLAY - Rename ACT_KEYMAP to ACT_LAYER - Add ACT_LAYER_BITOP
2013-03-28Add action_tapping.[ch] for refactoringtmk4-369/+396
2013-03-27Add sleep LED test commandtmk1-0/+8
2013-03-27Add supsend and wakeup to pjrc stacktmk1-0/+19
2013-03-24Add common/suspend.ctmk3-1/+95
2013-03-21Clean action.ctmk1-242/+246