aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fixed #1139 issuesOle Anders2017-03-281-18/+18
| | | | A fix described by jackhumbert has been sorted out now.
* changed definitions on keymap.c in admiral strokersOle Anders2017-03-071-104/+109
| | | | Made a few changes to my own keymaps. (organisation)
* Merge remote-tracking branch 'refs/remotes/qmk/master'Ole Anders2017-03-0774-198/+2634
|\
| * Merge pull request #1070 from jimmyhchan/fixSplitJack Humbert2017-02-077-23/+87
| |\ | | | | | | Lets split readme eeprom master hand fixes
| | * rename I2C_MASTER_RIGHT to MASTER_RIGHT since this works for serial as wellJimmy Chan2017-02-074-6/+10
| | |
| | * udpate readme to reflect QMK and not having the Makefile from ahtn's repoJimmy Chan2017-02-071-14/+72
| | |
| | * correctly put eeprom EE_HANDS at addr 0x0a (decimal 10). default to rev2 ↵Jimmy Chan2017-02-074-5/+7
| |/ | | | | | | | | | | | | | | | | | | | | project. do not default EE_HANDS for the serial keymap if you compare split_util.h with the original project by ahtn, the address we look for isLeftHand config went from addr 7 to addr 10 (decimal). The EEP files were not updated. EE_HANDS should not be enabled by default since it's more confusing for most users
| * Merge pull request #1072 from nicinabox/improve-ls-avrdude-targetJack Humbert2017-02-071-4/+6
| |\ | | | | | | Check for Pro Micro serial port automatically
| | * Check for a new serial port every secondNic Aitch2017-02-061-4/+6
| | |
| * | Merge pull request #1062 from luizribeiro/fix-winJack Humbert2017-02-071-2/+2
| |\ \ | | | | | | | | Fix V-USB bug on Windows 10
| | * | Fix V-USB bug on Windows 10Luiz Ribeiro2017-02-011-2/+2
| | | |
| * | | Merge pull request #1071 from dungdung/rgb_tweaksJack Humbert2017-02-072-5/+41
| |\ \ \ | | | | | | | | | | RGB tweaks
| | * | | Added non-animated gradient modedungdung2017-02-062-1/+20
| | | | |
| | * | | Added mode reverse step functiondungdung2017-02-062-0/+9
| | | | |
| | * | | Christmas mode now works with even RGBED_NUMdungdung2017-02-062-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Christmas mode steps to reduce red and green colors blending into each other Added Christmas mode interval Increased green hue to 120
| * | | | Merge pull request #1068 from adzenith/masterJack Humbert2017-02-079-25/+22
| |\ \ \ \ | | | | | | | | | | | | Minor cleanup
| | * | | | Minor cleanupNikolaus Wittenstein2017-02-053-8/+2
| | | | | |
| | * | | | Add new DIODE_DIRECTION optionNikolaus Wittenstein2017-02-053-8/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous two options were COL2ROW, ROW2COL; this adds CUSTOM_MATRIX to disable the built-in matrix scanning code. Most notably, this obviates the need to set MATRIX_ROW_PINS or MATRIX_COL_PINS.
| | * | | | Remove unused matrix_raw variable in matrix.cNikolaus Wittenstein2017-02-051-2/+0
| | | | | |
| | * | | | Add missing header to ergodox ordinary keymapNikolaus Wittenstein2017-02-031-0/+1
| | | | | |
| | * | | | Fix compile warnings in egodox robot_test_layoutNikolaus Wittenstein2017-02-031-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes the warning "right shift count >= width of type" by adding UL to the end of constants.
| | * | | | Fix compile warnings in light_ws2812.cNikolaus Wittenstein2017-02-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes the warning "function declaration isn't a prototype" by explicitly making the parameter list void.
| * | | | | Merge pull request #1046 from LukeSilva/masterJack Humbert2017-02-077-6/+419
| |\ \ \ \ \ | | | | | | | | | | | | | | Add Tapping Macros to QMK
| | * | | | | Add luke keymap, as an example of the tapping macrosLuke Silva2017-01-293-0/+382
| | | | | | |
| | * | | | | Add support for various tapping macrosLuke Silva2017-01-282-2/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A macro key can now be easily set to act as a modifier on hold, and press a shifted key when tapped. Or to switch layers when held, and again press a shifted key when tapped. Various other helper defines have been created which send macros when the key is pressed, released and tapped, cleaning up the action_get_macro function inside keymap definitions. The layer switching macros require a GCC extension - 'compound statements enclosed within parentheses'. The use of this extension is already present within the macro subsystem of this project, so its use in this commit should not cause any additional issues. MACRO_NONE had to be cast to a (macro_t*) to suppress compiler warnings within some tapping macros.
| | * | | | | Add ability to use tap macros without using functionsLuke Silva2017-01-272-1/+5
| | | | | | |
| | * | | | | Fix documentation for TMK actionsLuke Silva2017-01-261-3/+7
| | | | | | |
| * | | | | | Merge pull request #1057 from priyadi/selectable_outputJack Humbert2017-02-077-71/+189
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Implement runtime selectable output (USB or BT)
| | * | | | | | Restrict outputselect to LUFA only for nowPriyadi Iman Nurcahyo2017-02-011-2/+2
| | | | | | | |
| | * | | | | | Fix wrong includePriyadi Iman Nurcahyo2017-02-011-1/+1
| | | | | | | |
| | * | | | | | Limit outputselect to AVR only for nowPriyadi Iman Nurcahyo2017-02-015-3/+6
| | | | | | | |
| | * | | | | | Move outputselect to parent dir to satisfy non LUFA keyboardsPriyadi Iman Nurcahyo2017-02-012-0/+0
| | | | | | | |
| | * | | | | | Add layer switcher keycodes: OUT_AUTO, OUT_USB, OUT_BT, OUT_BLEPriyadi Iman Nurcahyo2017-02-012-0/+39
| | | | | | | |
| | * | | | | | Implement runtime selectable output (USB or BT)Priyadi Iman Nurcahyo2017-02-014-69/+145
| | | | | | | |
| * | | | | | | pass through travis errorsJack Humbert2017-02-073-2/+6
| | | | | | | |
| * | | | | | | Merge pull request #1056 from upils/masterJack Humbert2017-02-078-0/+334
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add reddot handwired keyboard.
| | * | | | | | | Add reddot handwired keyboard.upils2017-01-318-0/+334
| | |/ / / / / /
| * | | | | | | Merge pull request #1053 from TerryMathews/masterJack Humbert2017-02-0710-4/+175
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Let's Split: establish rev2fliphalf subproject
| | * | | | | | | Reverse rev2 and rev2fliphalfTerryMathews2017-02-062-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Flipped definitions on what constitutes "fliphalf" by popular demand.
| | * | | | | | | Revert "Reverse rev2 and rev2fliphalf"TerryMathews2017-02-062-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 0537977ba1412aa2ba753e152eec445e18858244.
| | * | | | | | | Reverse rev2 and rev2fliphalfTerryMathews2017-02-062-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Flipped definitions on what constitutes "fliphalf" by popular demand.
| | * | | | | | | Let's Split: establish rev2fliphalf subprojectTerryMathews2017-01-299-0/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Subproject to accomodate second half pad built in opposite orientation (places TRRS jacks on opposing edges for shorter cable runs)
| * | | | | | | | variable scope fix for travisJack Humbert2017-02-072-5/+3
| | | | | | | | |
| * | | | | | | | correctly assign bash variableJack Humbert2017-02-072-3/+3
| | | | | | | | |
| * | | | | | | | fix typoJack Humbert2017-02-071-1/+1
| | | | | | | | |
| * | | | | | | | add commaJack Humbert2017-02-071-1/+1
| | | | | | | | |
| * | | | | | | | Merge pull request #1069 from hot-leaf-juice/masterJack Humbert2017-02-072-5/+3
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | change cmd-l and cmd-r for actual home and end
| | * | | | | | | | change cmd-l and cmd-r for actual home and endCallum Oakley2017-02-062-5/+3
| | | |_|_|/ / / / | | |/| | | | | |
| * | | | | | | | try building only keyboards neededJack Humbert2017-02-073-7/+23
| | | | | | | | |
| * | | | | | | | Merge pull request #1041 from folkert4/masterJack Humbert2017-02-075-0/+503
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Added Espynn's keymap