summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | | | | | | | | Merge pull request #1163 from jprMesh/atreus62_KC_KEYMAPJack Humbert2017-03-281-11/+27
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added KC_KEYMAP macro for old style keymaps in Atreus62
| | * | | | | | | | | | | | | | | | | | | | Added KC_KEYMAP macro for old style keymaps in Atreus62jprmesh2017-03-171-11/+27
| | | |_|_|_|/ / / / / / / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | Merge pull request #1177 from exiva/bluetooth_refactorJack Humbert2017-03-288-63/+58
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | Refactor Bluetooth Handling
| | * | | | | | | | | | | | | | | | | | | Add BLE and EZKey module defines.Travis La Marr2017-03-242-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also restored serial init back to original location. Was getting junk data.
| | * | | | | | | | | | | | | | | | | | | Readd bluetooth output direction on standard key input.Travis La Marr2017-03-241-8/+10
| | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | Refactor Bluetooth HandlingTravis La Marr2017-03-248-66/+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.
| * | | | | | | | | | | | | | | | | | | Fix a typoskullY2017-03-211-1/+1
| | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | Add #1170 to all the clueboard keymapsskullY2017-03-219-10/+34
| | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | Merge pull request #1170 from tengg/masterskullydazed2017-03-211-1/+4
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | fixed a bug related to mod + Grave with combined ESC/Grave key
| | * | | | | | | | | | | | | | | | | | typo fixedtengg2017-03-221-2/+2
| | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | fix typotengg2017-03-221-1/+1
| | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | fixed a bug related to mod + Grave with combined ESC/Grave keytengg2017-03-221-1/+4
| |/ / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This only applies to keymaps that has combined esc/grave. Here we call it theKEY. Think about the motion when we do shift + theKEY (typing ~), or CMD + theKEY (switching window on MAC). Based on the original code, we must do following sequence: press shift -> press theKEY -> release theKEY -> release shift. However, it is very possible and natural that we do this stroke sequence instead: press shift -> press theKEY -> release shift -> release theKEY. If we do the 2nd stroke sequence, the code will del_key(ESC) instead of (GRV) when we release theKEY. This caused some inconvenient issues and ghost typing. By adding a flag, this issue is eliminated and will not affect any other functions.
| * | | | | | | | | | | | | | | | | | Update config.hJack Humbert2017-03-151-0/+1
| | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | Update config.hJack Humbert2017-03-151-1/+4
| | |_|_|_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Merge pull request #1152 from UnintendedFeature/bugfix/issue1151Jack Humbert2017-03-151-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | readme keymap.h to quantum_keycodes.h
| | * | | | | | | | | | | | | | | | | readme keymap.h to quantum_keycodes.hLukas Stiebig2017-03-091-1/+1
| | | |_|_|/ / / / / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed the quantum/keymap.h to quantum/quantum_keycodes.h because this seems to be the file where they keycodes are defined.
| * | | | | | | | | | | | | | | | | Merge pull request #1090 from qmk/backlight_softpwmJack Humbert2017-03-154-18/+50
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds soft PWM backlight for non-timed ports
| | * | | | | | | | | | | | | | | | | helps to save before committingJack Humbert2017-02-191-3/+1
| | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | mergingJack Humbert2017-02-1959-1598/+1913
| | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | |_|/ / / / / / / / / / / / / / | | | |/| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | adds soft pwm for non-timed portsJack Humbert2017-02-124-18/+50
| | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | Merge pull request #1146 from khogeland/masterJack Humbert2017-03-151-0/+83
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ <