summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-21Merge pull request #525 from edasque/masterJack Humbert
Added Docker as a simple way to build firmwares
2016-07-21Merge pull request #522 from exiva/extrakey-macfixJack Humbert
Fix OS X Recognizing keyboard as Mouse/Tablet
2016-07-21Merge pull request #521 from exiva/makefile-waitJack Humbert
Make DFU wait for bootloader
2016-07-21Merge pull request #518 from jakllsch/upstreamJack Humbert
keymap_extras changes
2016-07-21Merge pull request #516 from pvinis/tap-dance-anywayJack Humbert
Tap dance anyway
2016-07-19add a couple of commentsPavlos Vinieratos
2016-07-19on_each_tap_fn is called on tap down and tap upPavlos Vinieratos
2016-07-19add a bit of documentationPavlos Vinieratos
2016-07-18in the default case, it should be called if there is actually a tapPavlos Vinieratos
dance happening, and in the normal case, it should be called when the tap down is happening.
2016-07-17change naming, and remove extraneous definitionPavlos Vinieratos
2016-07-16add an `anyway` and a `reset` callbackPavlos Vinieratos
when using tap dance, we have the `regular` callback that is called on the last tap. this commit adds an `anyway` callback that is called on every tap, and a `reset` callback that is called on reset of the tap dance taps.
2016-07-16in case its NULLPavlos Vinieratos
2016-07-15Further simplyfying the docker usageErik Dasque
We'll be able to change the image user name if we set up the initial repo to trigger Docker images rebuilds on hub.docker.com
2016-07-15Adding Docker build system & documentationErik Dasque
2016-07-15Fix OS X Recognizing keyboard as Mouse/TabletTravis La Marr
Modified the LUFA USB HID Descriptor to change the logical/usage minimums for System Control from 0x01 (Mouse) to 0x81 (System Power Down), this fixes OS X recognizing the Planck as having a mouse and tablet, even with mousekeys off.
2016-07-15Make DFU wait for bootloaderTravis La Marr
Added a loop for waiting for the keyboard to be put in bootloader mode, rather than failing out. Makes building keymaps easier.
2016-07-14keymap_dvorak.h: add missing shifted keys, fix whitespaceJonathan A. Kollasch
2016-07-14extra_keymaps: use RALT() instead of 0x1400 for AltGrJonathan A. Kollasch
2016-07-14keymap_extras: add newline at end of filesJonathan A. Kollasch
2016-07-14Merge pull request #489 from Skrymir/masterJack Humbert
New ergodox-ez layout
2016-07-14Merge pull request #515 from pvinis/reset-functionJack Humbert
extract reset keyboard into a function
2016-07-13extract reset keyboard into a functionPavlos Vinieratos
that makes it easy to call reset_keyboard() from a function in a keymap
2016-07-12Merge pull request #2 from jackhumbert/masterJoshua Colbeck
Pull from upstream
2016-07-11Merge pull request #477 from Smilliam/masterJack Humbert
Canceling Space Cadet state with opposite shift key
2016-07-11Merge pull request #506 from stanleylai/masterJack Humbert
Added my custom keymap for Satan
2016-07-11Merge pull request #507 from ruiqimao/masterskullydazed
fixed clueboard LED pin assignments and matrix documentation
2016-07-11fixed clueboard LED pin assignments and matrix documentationRuiqi Mao
2016-07-10amended extraneous file editsSmilliam
2016-07-10Made rollover behavior for space cadet optionalSmilliam
2016-07-10Added my custom keymap for SatanStanley Lai
2016-07-10Merge pull request #505 from fredizzimo/documentation_fixJack Humbert
Remove out of place documentation, caused by ChibiOS merge
2016-07-10Remove out of place documentation, caused by ChibiOS mergeFred Sundvik
2016-07-09Merge pull request #502 from robotmaxtron/masterJack Humbert
Adding robotmaxtron's GH60 Keymap
2016-07-09Update keymap.cMax Whittingham
2016-07-09Merge pull request #500 from TerryMathews/masterJack Humbert
Establish Poker clone keymap for Satan
2016-07-09Merge pull request #1 from jackhumbert/masterTerryMathews
Catch up with jack's master
2016-07-09Establish Poker clone keymap for SatanTerryMathews
Maps all of the side-print legends on the stock Poker II keycaps that are feasible (doesn't support repeat rate toggling, Pmode recording).
2016-07-09Cleaning up repoMax Whittingham
2016-07-08Documents tap danceErez Zukerman
2016-07-08Merge pull request #498 from fredizzimo/fix_make_dependenciesJack Humbert
Fix make dependencies
2016-07-08Use order only prerequisites to avoid re-linkingFred Sundvik
The prerequisites at the start of the build process are order-only so that the trget don't link again. Also added as a dependency to the compilation to force the messages to be printed at the start
2016-07-08Fix name of makefile dep filesFred Sundvik
The files can't start with a .dot, as the wildcard function wont find them. So this is fixed by removing the BUILD_DIR from the name.
2016-07-08Merge pull request #496 from fredizzimo/makefile_optimizationJack Humbert
Makefile optimization
2016-07-08Fix the link targetFred Sundvik
2016-07-08Don't run git describe for ever file that is builtFred Sundvik
2016-07-08Speed up compilation by not using recusive makeFred Sundvik
The cleaning is done outside the targets, by checking the requested target name.
2016-07-08Merge pull request #494 from robbiegill/masterJack Humbert
Port support for hhkb-jp from tmk
2016-07-08Merge pull request #493 from TerryMathews/masterJack Humbert
Create keycodes for RGB control functions
2016-07-08Fix a function mismatch that was causing LEDs to not properly initializeTerryMathews
See #430. Name of function being called at init was updated to led_init_ports(), but the call itself wasn't renamed.
2016-07-08Move return out of event if blockTerryMathews
According to Jack, this makes the return case not be processed. Doesn't break anything in the firmware.