summaryrefslogtreecommitdiffstats
path: root/tmk_core
AgeCommit message (Collapse)AuthorFilesLines
2016-03-27Merge pull request #188 from DidierLoiseau/issue-156Erez Zukerman4-2/+23
Fix #156: clear weak mods on every key press
2016-03-23Fixed LED Function CallsIBNobody1-2/+3
Fixed LED indicator function calls to match how the matrix init function calls are formatted.
2016-03-23Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody1-2/+2
# Conflicts: # quantum/template/template.c # quantum/template/template.h
2016-03-16Adding LED function pointersIBNobody1-0/+2
2016-03-10Addressed void* return warning in all keymapsyoyoerx1-2/+2
2016-03-08Fix #156: clear weak mods on every key pressDidier Loiseau4-2/+23
- 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-02-08Added note about using avr_setup.shdragon7881-1/+1
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-fixPeter Eichinger2-2/+8
2016-01-24Remove led_off() it is not usedPeter Eichinger1-2/+0
2016-01-24Merge branch 'master' of https://github.com/jackhumbert/tmk_keyboard into audioJack Humbert1-1/+1
2016-01-22Backlight fix from redditPeter Eichinger1-0/+13
https://www.reddit.com/r/olkb/comments/41ur41/crazy_flashing_when_my_computer_sleeps/
2016-01-20better integrationsJack Humbert2-2/+8
2016-01-11timer 3Jack Humbert1-9/+9
2016-01-11pwm audioJack Humbert1-9/+9
2015-12-31Added note about avr-libc also being required at least for archdragon7881-1/+1
2015-10-28Fixes rolling combos for mod-tap keysErez Zukerman1-3/+6
2015-10-27merging tmkJack Humbert5998-0/+2480695
2015-09-24Merge commit 'fdc38ef3f92af7adeeb4de49550d8838c8a39b5c'Jun Wako4-0/+0
2015-09-23core: Fix NKRO ifdefJun Wako1-0/+2
2015-09-20core: Fix for disabling NKRO in Boot protocoltmk3-8/+7
2015-09-20core: Fix message print of debug commandtmk1-2/+2
2015-09-20lufa: Fix endpoint bank mode for ATMega32u2tmk1-1/+4
2015-09-20next_usb: Fix next_kbd_set_leds()tmk1-4/+12
2015-09-16Change to KC_BOOTLOADER(KC_BTLD)tmk2-8/+7
2015-09-16Add an assignable RESET keyskullY2-0/+12
2015-09-12Fix parenthesistmk1-1/+1
2015-09-12Fix weak modifier clear in action macrotmk1-0/+2
2015-07-23core: Fix lufa suspend callback(#234)tmk1-1/+0
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) reporttmk1-9/+18
2015-07-15usb_usb: Support locking key indicator LEDtmk1-0/+8
2015-07-11core: Add keymap section ldscript for ATMega32U2tmk3-4/+279
2015-06-26Add description for non-US keys on keycode.htmk1-2/+2
2015-05-22lufa: Fix console flush #223tmk1-1/+23
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"tmk2-6/+0
This reverts commit c17b8a599e3ec3b0a327bcd66082541f2517ab30. The commit made compile error and its intention is unclear.
2015-05-19Make action_for_key a weak symbolDan McGregor2-0/+6
2015-05-18ibm4704_usb: Fix protocol handlingtmk1-9/+11
2015-05-18Add keyboard_setup() and matrix_setup()tmk6-6/+25
2015-05-18ibm4704_usb: Fix interrupt of clock(rising edge)tmk1-21/+18
2015-05-13usb_usb: Change debug LED pin configtmk1-10/+0
2015-05-13Reduce code size of magic commandstmk1-105/+90
2015-05-13Add description of AVR bootloader and boot sectiontmk1-6/+43
2015-05-13Merge commit 'f6d56675f9f981c5464f0ca7a1fbb0162154e8c5'tmk1689-64029/+422738
2015-05-10Add compile options '-fdata-sections'Jun Wako1-0/+1
2015-04-28Merge commit '4d116a04e94cf0d19317d5b44e4fa9f34a3e5594'tmk5-1/+45
2015-04-24Merge commit '1fe4406f374291ab2e86e95a97341fd9c475fcb8'Jun Wako4198-0/+2016457
2015-04-23Remove unneeded tap delays #201Jun Wako2-8/+13
2015-04-23Fix URL of HID Usage Tables pdfJun Wako1-1/+1
2015-04-23Fix typo of doc/keycode.txtJun Wako1-1/+1
2015-04-23Fix handling of consumer usage #199Jun Wako1-1/+1
2015-04-23Improve anti-ghosting behavior for fast typingMichael Tharp1-2/+13
Keypresses would be forgotten if they began while ghosting, even if they were still pressed after ghosting ended.