summaryrefslogtreecommitdiff
path: root/quantum
Commit message (Collapse)AuthorAge
* Merge pull request #914 from wez/ble_2Jack Humbert2016-12-02
|\ | | | | Add arduino-alike GPIO pin control helpers
| * Add arduino-alike GPIO pin control helpersWez Furlong2016-11-27
| | | | | | | | | | | | | | | | | | | | Unlike the arduino functions, these don't take abstract pin numbers, they take pin labels like `B0`. Also, rather than taking very generic parameter names, these take slightly more descriptive enum values. These improve the clarity of code that would otherwise be inscrutable bit manipulation in tersely named port register names.
* | Annotates nordicErez Zukerman2016-12-02
| |
* | Test layout for ErgoDox EZ manufacturing robotErez Zukerman2016-11-29
| |
* | Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7Jack Humbert2016-11-28
|\|
| * fix strict-prototypes warningPriyadi Iman Nurcahyo2016-11-26
| |
| * remove define checks. didn't work because of include ordering.Priyadi Iman Nurcahyo2016-11-26
| |
| * add macro error when a required define is missingPriyadi Iman Nurcahyo2016-11-26
| |
| * Fix unterminated ifndefPriyadi Iman Nurcahyo2016-11-26
| |
| * PS2 pins configuration belongs to each keyboards config.hPriyadi Iman Nurcahyo2016-11-26
| | | | | | | | | | | | Each keyboard might have different pin configuration. And keeping this here will trigger redefinition warning on keyboards that have PS2 defines.
| * Removed commentofples2016-11-25
| |
| * Added missing endif for ifdef __AVR_ATmega32U4__ and removed the unnecessary ↵ofples2016-11-25
| | | | | | | | one at the end of the file
| * Add japanese keymaph-youhei2016-11-22
| |
* | separated into api files/folderJack Humbert2016-11-26
| |
* | travis plsJack Humbert2016-11-23
| |
* | converted to new formatJack Humbert2016-11-23
| |
* | Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7Jack Humbert2016-11-21
|\|
| * Fix the Space Cadet timeout codeGergely Nagy2016-11-19
| | | | | | | | | | | | | | Define a default TAPPING_TERM in quantum.c, for keyboards that do not have it set. Fixes the CI failure. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
| * Add a timeout to space-cadet shift.Gergely Nagy2016-11-19
| | | | | | | | | | | | | | | | | | | | | | | | When one holds a Space Cadet shift, to have it act as a shift, so that mouse behaviour changes, when released without any other key pressed, it still registers a paren. To remedy this, add a hold timeout: if the key is held longer than TAPPING_TERM, it will not register the parens. Fixes #884, with the side-effect of not being able to have parens trigger the OS-side repeat anymore. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* | cleaning up mididJack Humbert2016-11-21
| |
* | cleaning up new codeJack Humbert2016-11-21
| |
* | merging lets_splitJack Humbert2016-11-21
|\|
| * don't always detect a matrix change (fixes debounce)Jack Humbert2016-11-18
| |
| * Merge pull request #860 from IBNobody/masterJack Humbert2016-11-16
| |\ | | | | | | Improved Quantum Matrix
| | * Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody2016-11-08
| | |\
| | * | added fixed debounce codeIBNobody2016-10-29
| | | |
| | * | Made scanning more efficientIBNobody2016-10-29
| | | |
| | * | Refactoring Matrix scanningIBNobody2016-10-28
| | | |
| | * | Fixing Debounce - WIPIBNobody2016-10-28
| | | |
| | * | Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody2016-10-28
| | |\ \
| | * | | Fixed some large keyboard bugsIBNobody2016-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | Fixed some bugs relating to keyboards with more than 16 columns. Also added the ability to mask off keyboard matrix bits.
* | | | | Groundwork for dedicated color keycodesErez Zukerman2016-11-17
| | | | |
* | | | | rgb light through midiJack Humbert2016-11-17
| | | | |
* | | | | animations, midi, etcJack Humbert2016-11-15
| | | | |
* | | | | mostly workingJack Humbert2016-11-13
| | | | |
* | | | | mergingJack Humbert2016-11-12
|\| | | |
| * | | | Merge pull request #868 from potz/masterJack Humbert2016-11-10
| |\ \ \ \ | | |_|_|/ | |/| | | Add brazilian ABNT2 keymap
| | * | | Add brazilian ABNT2 keymapPotiguar Faga2016-11-08
| | | | |
| * | | | Add documentation for the variable tracingFred Sundvik2016-11-06
| | | | |
| * | | | Add possibility to control variable trace from makeFred Sundvik2016-11-06
| | | | |
| * | | | Add variable traceFred Sundvik2016-11-06
| | |_|/ | |/| | | | | | | | | | | | | | For debugging changes to variables, either normally or as a result of a memory corruption.
| * | | Merge pull request #844 from priyadi/unicode_wincompose_inputJack Humbert2016-10-26
| |\ \ \ | | | | | | | | | | Unicode WinCompose input method
| | * | | Unicode WinCompose input methodPriyadi Iman Nurcahyo2016-10-23
| | | |/ | | |/|
| * | | Merge pull request #842 from priyadi/unicode_map_lengthJack Humbert2016-10-26
| |\ \ \ | | | | | | | | | | UNICODE_MAP: remove 5 char limit; ignore leading zeroes; handle OS limitations
| | * | | UNICODE_MAP: remove 5 char limit; ignore leading zeroes; handle OS limitationsPriyadi Iman Nurcahyo2016-10-23
| | |/ /
| * / / add programmer dvorak keymapArtyom Mironov2016-10-19
| |/ /
| * | Merge pull request #815 from priyadi/unicode_mapJack Humbert2016-10-16
| |\ \ | | | | | | | | Allow unicode up to 0xFFFFF using separate mapping table
| | * | Unicode map framework. Allow unicode up to 0xFFFFF using separatePriyadi Iman Nurcahyo2016-10-10
| | | | | | | | | | | | | | | | mapping table
| * | | [Jack & Erez] Simplifies and documents TOJack & Erez2016-10-12
| | | |
| * | | Merge pull request #808 from npoirey/masterJack Humbert2016-10-10
| |\ \ \ | | | | | | | | | | Altgr quick combination and updated readme