aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core
AgeCommit message (Collapse)Author
2016-04-01Update action.cGravatar Eric-L-T
2016-03-28Merge pull request #219 from IBNobody/masterGravatar Jack Humbert
Master
2016-03-28Minor Tweaks and DocumentationGravatar IBNobody
Fixed compiler warning by including bootloader.h in keymap_common.c. Changed FORCE_NKRO to only be applied if NKRO_ENABLE is defined. Added extra documentation to the template config.h
2016-03-28Added command to turn LED indicators off while sleepingGravatar IBNobody
2016-03-28Merge pull request #214 from cdlm/action-hookGravatar Jack Humbert
Add per-event user hook function
2016-03-28Rename function to be keyboard-specificGravatar Damien Pollet
2016-03-28Add per-event user hook function to QMKGravatar Damien Pollet
2016-03-28Magic Key Overrides / Keyboard Lock / Forced NKROGravatar IBNobody
Added Magic Key Overrides / Magic Key Cleanup / Added Keyboard Lock option to template / Added forced NKRO option to template (disabled by default)
2016-03-27Cut the memory consumption of PREVENT_STUCK_MODIFIERS in halfGravatar Wojciech Siewierski
2016-03-27Merge pull request #188 from DidierLoiseau/issue-156Gravatar Erez Zukerman
Fix #156: clear weak mods on every key press
2016-03-22Fixed LED Function CallsGravatar IBNobody
Fixed LED indicator function calls to match how the matrix init function calls are formatted.
2016-03-22Merge remote-tracking branch 'refs/remotes/jackhumbert/master'Gravatar IBNobody
# Conflicts: # quantum/template/template.c # quantum/template/template.h
2016-03-15Adding LED function pointersGravatar IBNobody
2016-03-15Expose the pressed_actions_cache global variableGravatar Wojciech Siewierski
2016-03-15Always provide an implementation of process_action_nocacheGravatar Wojciech Siewierski
2016-03-13process_action may be called either with key cache or without itGravatar Wojciech Siewierski
If one wants to temporarily disable the key cache (for example because it interferes with a macro), `disable_action_cache` must be set to `true`. `process_action_nocache` is a simple wrapper doing just that for a single call.
2016-03-10Addressed void* return warning in all keymapsGravatar yoyoerx
2016-03-08Fix #156: clear weak mods on every key pressGravatar Didier Loiseau
- new macro_mods bit field for mods applied by macros - weak_mods now only used for ACT_{L,R}MODS (i.e. LSFT, RSFT, LCTL etc.) - clear the _weak_ mods on every key *pressed* such that LSFT etc. can no more interfere with the next key
2016-03-08Document the issue of stuck modifiersGravatar Wojciech Siewierski
2016-03-05Fix the layer-dependent modifiers handlingGravatar Wojciech Siewierski
Closes #181.
2016-02-07Added note about using avr_setup.shGravatar dragon788
On most Linux distributions the avr_setup.sh script can be sourced ```. avr_setup.sh``` or under Bash ```source avr_setup.sh```. This will try and detect the appropriate package manager and install the required packages.
2016-01-25Merge branch 'master' into flicker-fixGravatar Peter Eichinger
2016-01-24Remove led_off() it is not usedGravatar Peter Eichinger
2016-01-23Merge branch 'master' of https://github.com/jackhumbert/tmk_keyboard into audioGravatar Jack Humbert
2016-01-22Backlight fix from redditGravatar Peter Eichinger
https://www.reddit.com/r/olkb/comments/41ur41/crazy_flashing_when_my_computer_sleeps/
2016-01-20better integrationsGravatar Jack Humbert
2016-01-11timer 3Gravatar Jack Humbert
2016-01-11pwm audioGravatar Jack Humbert
2015-12-30Added note about avr-libc also being required at least for archGravatar dragon788
2015-10-28Fixes rolling combos for mod-tap keysGravatar Erez Zukerman
2015-10-27merging tmkGravatar Jack Humbert
2015-09-24Merge commit 'fdc38ef3f92af7adeeb4de49550d8838c8a39b5c'Gravatar Jun Wako
2015-09-24core: Fix NKRO ifdefGravatar Jun Wako
2015-09-20core: Fix for disabling NKRO in Boot protocolGravatar tmk
2015-09-20core: Fix message print of debug commandGravatar tmk
2015-09-20lufa: Fix endpoint bank mode for ATMega32u2Gravatar tmk
2015-09-20next_usb: Fix next_kbd_set_leds()Gravatar tmk
2015-09-16Change to KC_BOOTLOADER(KC_BTLD)Gravatar tmk
2015-09-16Add an assignable RESET keyGravatar skullY
2015-09-12Fix parenthesisGravatar tmk
2015-09-12Fix weak modifier clear in action macroGravatar tmk
2015-07-23core: Fix lufa suspend callback(#234)Gravatar tmk
With matrix_power_down() in suspend event HHKB JP doesn't start up for some reason. It is unneeded in actual and removed.
2015-07-15usb_usb: Ignore error usage(0x01-03) reportGravatar tmk
2015-07-15usb_usb: Support locking key indicator LEDGravatar tmk
2015-07-12core: Add keymap section ldscript for ATMega32U2Gravatar tmk
2015-06-26Add description for non-US keys on keycode.hGravatar tmk
2015-05-22lufa: Fix console flush #223Gravatar tmk
Old console sent unneeded empty data every one milli sencond. After this fix console flushes endpoint data bank every 50ms only when needed.
2015-05-21Revert "Make action_for_key a weak symbol"Gravatar tmk
This reverts commit c17b8a599e3ec3b0a327bcd66082541f2517ab30. The commit made compile error and its intention is unclear.
2015-05-19Make action_for_key a weak symbolGravatar Dan McGregor
2015-05-19ibm4704_usb: Fix protocol handlingGravatar tmk