summaryrefslogtreecommitdiffstats
path: root/tmk_core
AgeCommit message (Collapse)AuthorFilesLines
2017-05-20Workaround for the macOS caps lock delay (#1308)jerryen1-0/+4
* Add 80ms delay for KC_CAPS when used as a tap key Workaround for the macOS caps lock delay * Revert "Increase TAPPING_TERM for the Clueboard" This reverts commit a74e69e9fa889113ee31fbc8dc7e6848fdb07576.
2017-05-15added comments and made function name clearerJeremiah1-13/+18
2017-05-14whoopsJeremiah1-2/+2
2017-05-14faster, less bits :)Jeremiah1-9/+2
2017-05-14faster and less bits... againJeremiah1-6/+5
2017-05-14faster and less bitsJeremiah1-18/+15
2017-05-14should be using matrix_row_tJeremiah1-3/+3
2017-05-14a bit smallerJeremiah1-6/+6
2017-05-14a bit smallerJeremiah1-18/+35
2017-05-13improvementsJeremiah2-24/+16
2017-05-13anti-ghost improvement for older keyboards with empty spots in matrixJeremiah2-7/+31
2017-05-10Call led_set for layer action events to update LEDs on layer changesNephiel1-0/+15
2017-04-29Add possibility to override the command to execute when flashingFred Sundvik2-20/+26
2017-04-13Add make option for allowing warningsFred Sundvik1-2/+6
2017-04-13Fix warnings when ACTION_ONESHOT is disabledFred Sundvik1-1/+1
2017-04-13Include host.h from suspend.cFred Sundvik1-0/+1
2017-04-13Make MOUSEKEY_MOVE_MAX and MOUSEKEY_WHEEL_MAX configurableFred Sundvik1-2/+11
Kitten_paw/ickerwx was doing that
2017-04-13Enable warnings as errorsFred Sundvik1-0/+2
2017-04-09Empty implementation of has_onshot_mods_timed_outFred Sundvik1-1/+5
When the timeout is zero or not defined, the function now returns false. Fixes a linker error when the visualizer is enabled
2017-04-01Merge pull request #1132 from akatrevorjay/pr/dfu-serialJack Humbert1-1/+6
Allow to specify serial to dfu-util flash
2017-03-31Add RN42 Bluetooth module supportTravis La Marr4-2/+43
Added support for sending HID keycodes over the RN42/reflashed HC05 module. Tested on OS X and iOS.
2017-03-29Merge branch 'master' into to_pushZay95036-328/+1948
2017-03-28Merge pull request #1112 from newsboytko/newsboytko/midi-keycodesJack Humbert2-6/+15
Flesh out MIDI support
2017-03-28Merge pull request #1098 from lambdalisue/tapping-force-holdJack Humbert1-4/+5
Add TAPPING_FORCE_HOLD to regulate behaviour
2017-03-24Add BLE and EZKey module defines.Travis La Marr2-4/+6
Also restored serial init back to original location. Was getting junk data.
2017-03-24Readd bluetooth output direction on standard key input.Travis La Marr1-8/+10
2017-03-24Refactor Bluetooth HandlingTravis La Marr6-55/+57
Refactored Bluetooth support to make adding new Bluetooth modules easier in the future. * Remove `OUT_BLE` key from QMK's keymap. `OUT_BT` is all we need now as there's no difference anymore. * Made BLUETOOTH_ENABLE build option legacy as not to break existing keymaps (Falls back to existing EZ Key support if on) * Removed `ADAFRUIT_BLE_ENABLE` build option * Created new build option `BLUETOOTH` with module option (Currently `AdafruitEZKey` & `AdafruitBLE`) * Moved all LUFA bluetooth key/mouse events under `BLUETOOTH_ENABLE` ifdef with selected modules output.
2017-03-03Allow to specify serial to dfu-util flashTrevor Joynson (trevorj)1-1/+6
2017-02-26Split MIDI functionality into MIDI_BASIC and MIDI_ADVANCEDGabriel Young1-0/+4
MIDI_ENABLE = no text data bss dec hex filename 0 17080 0 17080 42b8 satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined MIDI_ADVANCED undefined text data bss dec hex filename 0 19494 0 19494 4c26 satan_midi.hex MIDI_ENABLE = yes #define MIDI_BASIC MIDI_ADVANCED undefined text data bss dec hex filename 0 19788 0 19788 4d4c satan_midi.hex MIDI_ENABLE = yes MIDI_BASIC undefined #define MIDI_ADVANCED text data bss dec hex filename 0 20846 0 20846 516e satan_midi.hex MIDI_ENABLE = yes #define MIDI_BASIC #define MIDI_ADVANCED text data bss dec hex filename 0 21140 0 21140 5294 satan_midi.hex
2017-02-25Removes redundant {} which cause build failure when DEBUG_ACTION is setPhong Nguyen1-1/+1
2017-02-20implement modulationGabriel Young1-1/+1
2017-02-20initial implementation of polyphony using variable length array of notes onGabriel Young2-5/+10
2017-02-15Merge pull request #1101 from priyadi/layer_state_set_kbJack Humbert2-0/+17
Add weak layer_state_set_kb hook
2017-02-14Fix bug fix attemptPriyadi Iman Nurcahyo1-2/+2
2017-02-14Bug fix & added default_layer_state_set_kbPriyadi Iman Nurcahyo2-2/+11
2017-02-14Add layer_state_set_kb hookPriyadi Iman Nurcahyo2-0/+8
2017-02-14Add TAPPING_FORCE_HOLD to regulate behaviourlambdalisue1-4/+5
See #889 for the detail.
2017-02-13Implement faux-clicky featurePriyadi Iman Nurcahyo2-0/+19
2017-02-11Supress warnings from ps2_mouse.hPriyadi Iman Nurcahyo1-2/+3
2017-02-07Merge pull request #1062 from luizribeiro/fix-winJack Humbert1-2/+2
Fix V-USB bug on Windows 10
2017-02-07Merge pull request #1068 from adzenith/masterJack Humbert3-8/+2
Minor cleanup
2017-02-07Merge pull request #1046 from LukeSilva/masterJack Humbert2-5/+31
Add Tapping Macros to QMK
2017-02-07Merge pull request #1057 from priyadi/selectable_outputJack Humbert4-70/+146
Implement runtime selectable output (USB or BT)
2017-02-07Merge pull request #1010 from SjB/oneshot_timeout_fixJack Humbert1-8/+8
oneshot timeout would only timeout after an event.
2017-02-06Minor cleanupNikolaus Wittenstein3-8/+2
2017-02-02Fix V-USB bug on Windows 10Luiz Ribeiro1-2/+2
2017-02-01Fix wrong includePriyadi Iman Nurcahyo1-1/+1
2017-02-01Limit outputselect to AVR only for nowPriyadi Iman Nurcahyo3-2/+2
2017-02-01Move outputselect to parent dir to satisfy non LUFA keyboardsPriyadi Iman Nurcahyo2-0/+0
2017-01-31Implement runtime selectable output (USB or BT)Priyadi Iman Nurcahyo4-69/+145