Commit Graph

161 Commits

Author SHA1 Message Date
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
2013-11-20 11:32:09 +09:00
tmk
9d40be1990 Wait for USB starting up to make debug print available 2013-11-19 03:20:25 +09:00
tmk
676d94d137 Fix PS/2 mouse support 2013-11-02 04:30:08 +09:00
tmk
35f9f30074 Add timeout option to MODS_ONESHOT #66 2013-10-07 23:28:17 +09:00
tmk
d52d554360 Fix mod stuck of MODS_KEY when leaving layer #62
- 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-04 16:04:31 +09:00
tmk
8819cf6bb1 Fix Tapping: release key immediately but modifier #65
- 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-10-03 12:40:33 +09:00
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.
2013-09-21 22:47:03 +09:00
tmk
b2c7529ec9 Fix to bootmagic key configurable 2013-09-21 21:21:34 +09:00
tmk
58ca7b904b Merge branch 'tapping_fix60' 2013-09-19 22:16:55 +09:00
tmk
9f29fa6bf3 Fix version info command 2013-09-19 00:51:44 +09:00
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?
2013-09-18 16:10:53 +09:00
tmk
4d0b3aace0 Fix Tapping: release of a key pressed before tap
- immediately process release event of a key pressed before tapping
2013-09-18 15:02:44 +09:00
tmk
c7faa51ee8 Fix action macros 2013-09-11 14:05:05 +09:00
tmk
8bc96ac571 Add version string 2013-09-11 13:44:54 +09:00
tmk
c274cc8cdc Fix tapping count over flow(issue #52) 2013-07-29 22:18:42 +09:00
tmk
daa4a4235f Add NKRO support for LUFA 2013-07-28 17:34:41 +09:00
tmk
05225dd9d8 Add bootmagic salt key to avoid accidental configuration 2013-07-24 00:41:28 +09:00
tmk
2721022078 Add mechanical locking switch support for NumLock and ScrollLock 2013-07-23 10:56:03 +09:00
tmk
6aaa6e0ef9 Add support for macro media/system keys 2013-07-23 07:53:18 +09:00
tmk
3e023e5b0c Cancel tapping when interrupted by other key 2013-07-21 03:21:57 +09:00
tmk
f8fbecff4d Change name ACT_LAYER_TAP1 to ACT_LAYER_TAP_EXT 2013-07-20 03:27:36 +09:00
tmk
25ad212c4a Add BACKLIGHT_ENABLE conditional 2013-06-23 09:14:58 +09:00
tmk
82aec46722 Fix typo 2013-06-22 17:32:53 +09:00
Wraul
1eb8523e95 Add support for backlight 2013-06-22 17:23:36 +09:00
tmk
9de9d71952 Add default layer config to bootmagic 2013-06-22 16:24:56 +09:00
Mathias Andersson
ddf1759dbe Fixes to sleep LED.
Add help text.
Add missing SLEEP_LED_ENABLE checks.
2013-05-27 18:36:00 +02:00
tmk
796defa86c Fix deprecated 'prog_*' typedef - Issue #34
- 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-21 10:16:55 +09:00
tmk
adbd15d5bd Fix command.c and README 2013-05-15 00:23:36 +09:00
tmk
ff2d276b19 Use dprint and dprintf for debug 2013-05-14 16:19:40 +09:00
tmk
d9c06db600 Add xprintf(xitoa) from elm-chan.org 2013-05-14 16:16:57 +09:00
tmk
540d0700dc Remove common/controller_teensy.h 2013-04-13 11:30:08 +09:00
tmk
09e1eded8b Add media eject key support from tufty 2013-04-12 11:25:59 +09:00
tmk
4e93b3fa67 Fix bootmagic and eeconfig for virtual DIP SW 2013-04-07 15:36:50 +09:00
tmk
c26a5eb2ac Fix keymap for new actions 2013-04-05 03:44:42 +09:00
tmk
fbea2a3aae Fix keymap of hhkb for new actions 2013-04-05 03:27:10 +09:00
tmk
489fd75fdf Fix keymap of gh60 2013-04-05 01:39:17 +09:00
tmk
f9a7e224a4 Fix ACT_MODS action and switch_default_layer command 2013-04-04 16:29:44 +09:00
tmk
ebe798f081 Add file action_code.h 2013-04-04 15:16:03 +09:00
tmk
d612242692 Fix ACTION_LAYER macros 2013-04-03 01:33:04 +09:00
tmk
c6d88d2795 Rename file layer_switch to action_layer 2013-04-02 17:44:24 +09:00
tmk
cc8e66754b Refine ACT_LAYER and ACT_LAYER_TAP
- Remove ACT_LAYER_BITOP
2013-04-02 16:09:43 +09:00
tmk
10f33a3e48 Remove ACT_KEYMAP and ACT_OVERLAY
- Remove ACT_OVERLAY
- Rename ACT_KEYMAP to ACT_LAYER
- Add ACT_LAYER_BITOP
2013-03-31 22:47:19 +09:00
tmk
c69f7e1069 Add action_tapping.[ch] for refactoring 2013-03-29 02:46:05 +09:00
tmk
ac509aa079 Add sleep LED test command 2013-03-27 15:21:50 +09:00
tmk
afc3148e23 Add supsend and wakeup to pjrc stack 2013-03-27 15:18:08 +09:00
tmk
2c0bb5e7e6 Add common/suspend.c 2013-03-25 01:46:32 +09:00
tmk
74aea627e7 Clean action.c 2013-03-21 15:24:48 +09:00
tmk
d44290b91b Add NO_ACTION_ONESHOT config option 2013-03-21 14:42:40 +09:00
tmk
dbcac865b9 Add NO_ACTION_KEYMAP config option 2013-03-20 01:45:04 +09:00
tmk
ecb7550a91 Add NO_ACTION_FUNCTION config option 2013-03-20 00:37:32 +09:00