Commit Graph

206 Commits (71a8fd8b1286926bd21edce3d2ec7423d8ca4eef)

Author SHA1 Message Date
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)  ~~~____~~~~
11 years ago
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.
11 years ago
tmk b2c7529ec9 Fix to bootmagic key configurable 11 years ago
tmk 58ca7b904b Merge branch 'tapping_fix60' 11 years ago
tmk 9f29fa6bf3 Fix version info command 11 years ago
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?
11 years ago
tmk 4d0b3aace0 Fix Tapping: release of a key pressed before tap
- immediately process release event of a key pressed before tapping
11 years ago
tmk c7faa51ee8 Fix action macros 11 years ago
tmk 8bc96ac571 Add version string 11 years ago
tmk c274cc8cdc Fix tapping count over flow(issue #52) 11 years ago
tmk daa4a4235f Add NKRO support for LUFA 11 years ago
tmk 05225dd9d8 Add bootmagic salt key to avoid accidental configuration 11 years ago
tmk 2721022078 Add mechanical locking switch support for NumLock and ScrollLock 11 years ago
tmk 6aaa6e0ef9 Add support for macro media/system keys 11 years ago
tmk 3e023e5b0c Cancel tapping when interrupted by other key 11 years ago
tmk f8fbecff4d Change name ACT_LAYER_TAP1 to ACT_LAYER_TAP_EXT 11 years ago
tmk 25ad212c4a Add BACKLIGHT_ENABLE conditional 11 years ago
tmk 82aec46722 Fix typo 11 years ago
Wraul 1eb8523e95 Add support for backlight 11 years ago
tmk 9de9d71952 Add default layer config to bootmagic 11 years ago
Mathias Andersson ddf1759dbe Fixes to sleep LED.
Add help text.
Add missing SLEEP_LED_ENABLE checks.
11 years ago
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
12 years ago
tmk adbd15d5bd Fix command.c and README 12 years ago
tmk ff2d276b19 Use dprint and dprintf for debug 12 years ago
tmk d9c06db600 Add xprintf(xitoa) from elm-chan.org 12 years ago
tmk 540d0700dc Remove common/controller_teensy.h 12 years ago
tmk 09e1eded8b Add media eject key support from tufty 12 years ago
tmk 4e93b3fa67 Fix bootmagic and eeconfig for virtual DIP SW 12 years ago
tmk c26a5eb2ac Fix keymap for new actions 12 years ago
tmk fbea2a3aae Fix keymap of hhkb for new actions 12 years ago
tmk 489fd75fdf Fix keymap of gh60 12 years ago
tmk f9a7e224a4 Fix ACT_MODS action and switch_default_layer command 12 years ago
tmk ebe798f081 Add file action_code.h 12 years ago
tmk d612242692 Fix ACTION_LAYER macros 12 years ago
tmk c6d88d2795 Rename file layer_switch to action_layer 12 years ago
tmk cc8e66754b Refine ACT_LAYER and ACT_LAYER_TAP
- Remove ACT_LAYER_BITOP
12 years ago
tmk 10f33a3e48 Remove ACT_KEYMAP and ACT_OVERLAY
- Remove ACT_OVERLAY
- Rename ACT_KEYMAP to ACT_LAYER
- Add ACT_LAYER_BITOP
12 years ago
tmk c69f7e1069 Add action_tapping.[ch] for refactoring 12 years ago
tmk ac509aa079 Add sleep LED test command 12 years ago
tmk afc3148e23 Add supsend and wakeup to pjrc stack 12 years ago
tmk 2c0bb5e7e6 Add common/suspend.c 12 years ago
tmk 74aea627e7 Clean action.c 12 years ago
tmk d44290b91b Add NO_ACTION_ONESHOT config option 12 years ago
tmk dbcac865b9 Add NO_ACTION_KEYMAP config option 12 years ago
tmk ecb7550a91 Add NO_ACTION_FUNCTION config option 12 years ago
tmk 9757f960f9 Add NO_ACTION_TAPPING and NO_ACTION_MACRO config options 12 years ago
tmk b057511f45 Add NO_ACTION_OVERLAY config option 12 years ago
tmk 1687041267 Add COMMAND_ENABLE build option 12 years ago
tmk 9a106537f6 Add NO_PRINT and NO_DEBUG config options.
- NO_PRINT: disable print.h API(also disable debug.h)
- NO_DEBUG: disable debug.h API
12 years ago
tmk db79c1160b Change sleep led step table to get smooth 12 years ago
tmk f0c5f1b910 Add breathing sleep LED during USB suspend 12 years ago
tmk 30f9baf898 Fix debouncing and add legacy keymap support 12 years ago
tmk 92b92dd78f Add mechanical locking switch support for CapsLock 12 years ago
tmk ef8439bddb Add build option BOOTMAGIC_ENABLE 12 years ago
tmk d055e0633e Fix debug parameter setting in eeconfig 12 years ago
tmk 1d5bbb55f2 Fix legacy keymap support
- need to define USE_LEGACY_KEYMAP to use legacy keymap
12 years ago
tmk fe2230cf60 Add default value to BOOTLOADER_SIZE 12 years ago
tmk e4fbaf30be Add keyconf in eeconfig.c 12 years ago
tmk 09bd1aef12 Rename HOST_* to PROTOCOL_* in protocol/*.mk 12 years ago
tmk de8ef18a53 Add KEYCONF to eeconfig.c 12 years ago
tmk 51050875b7 Add BOOTLOADER_SIZE and remove BOOT_SIZE
- define BOOTLOADER_SIZE in config.h instead of Makefile
12 years ago
tmk f55c677ba4 Fix watchdog in bootloader jump
- disable watchdog after watchdog reset
- clear WDRF after watchdog reset
12 years ago
tmk 4d64fd8faa Add bootmagic.c and fix bootloader_jump 12 years ago
tmk 359b68d35f Add eeconfig.c - eeprom stored paramerters 12 years ago
tmk 81d2753ab0 Remove matrix_key_count() from matrix.h 12 years ago
tmk 9e9a85c142 Fix ghost block and remove matrix_has_ghost() 12 years ago
tmk 38bbe976e0 Merge branch 'overlays' 12 years ago
tmk 5808317b69 Fix keymap for new framework 12 years ago
tmk 1aa067e541 Clean action.h and add keymap doc 12 years ago
tmk 083c75816f Create keymap.md 12 years ago
tmk 40f1a4930a Fix SET_DEFAULT_LAYER action and keymap of gh60 12 years ago
tmk a207e848b3 Add tap flags on record_t 12 years ago
tmk 1720cf34ca Fix bit shift which is beyond int size(16bit) 12 years ago
tmk 23c32d304b Add MACRO action 12 years ago
tmk 0368936060 Fix README and comments in action.h 12 years ago
tmk 59e073e82b Fix tap key bug: layer stuck
- Can't use Invert action for tap key, use On/Off insted.
12 years ago
tmk c3d57b69e0 Add keymap clear/reset action 12 years ago
tmk e0f960a576 Add overlay framework 12 years ago
tmk e324fa2918 Rewrite layer action with layer_switch 12 years ago
tmk d9f2875866 Replace layer_stack with layer_switch 12 years ago
tmk 2b811352a1 Fix switch_default_layer command 12 years ago
tmk 768ea72f10 Add layer_stack files taking apart from action.c 12 years ago
tmk a4aae1c505 Change: 0 means default_layer in current_layer now
- current_layer indicates active layer at the time
- default_layer indicates base layer
- default_layer is used when current_layer is 0
- with this LAYER_BIT action works as overlay even if
  default_layer varies other than layer 0.
12 years ago
tmk 0018e19f07 Add layer stack 12 years ago
tmk c4421f585b Change struct key_t 12 years ago
tmk 9bc82bf61c Change action API 12 years ago
tmk 63c03dc137 Change keymap API 12 years ago
tmk 48e6d0848c Make Transparent feature available to new keymaps. 12 years ago
tmk f02431e9da Fix 'chage default layer' command. 12 years ago
tmk 77af88042a Change ACTION_LAYER_SET_LAYER behaviour 12 years ago
tmk b60f9c6ac6 Boot Magic key for gh60 12 years ago
tmk 8c80deb775 Merge branch 'keymap2'
Conflicts:
	common/keyboard.c
12 years ago
tmk eea85c7e24 Fix is_tap_key() 12 years ago
tmk 0be309ccc6 Add doc/keycode.txt 12 years ago
tmk b2aa142ee0 Clean layer actions. 12 years ago
tmk aad91a30a3 Add macro feature. 12 years ago
tmk 1d7962ba8a Add user defined function to action. 12 years ago
tmk d95463f2e0 Add legacy keymap support. 12 years ago
tmk e760953910 Fix tapping. tap key just after tap timeout. 12 years ago
tmk 7e1093b70f Fix: action LAYER_BIT uses xor now instead of and/or. 12 years ago