Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-06 | Use keyboard config for nkro (#7) | IBNobody | |
* removing nkro references - wip * changed NKRO to be defined by keymap_config | |||
2016-09-06 | Change NKRO size fron 16 bytes to 32 bytes. | IBNobody | |
2016-09-04 | Fix the ldflags.txt and obj.txt checks | Fred Sundvik | |
There was a minor typo, which caused the files to not be generated and therefore the elf files were always linked. | |||
2016-08-27 | Add -p parameter to mkdir | Fred Sundvik | |
So that it's created even when there's a deeper structure | |||
2016-08-27 | Disable map file creation when building tests | Fred Sundvik | |
It causes strange linker warnings on cygwin. | |||
2016-08-27 | More common settings for unit tests and keyboards | Fred Sundvik | |
2016-08-27 | Rules for compiling and linking google test | Fred Sundvik | |
2016-08-27 | Merge branch 'master' into fix_line_endings | Fred Sundvik | |
2016-08-27 | Normalize line endings | Fred Sundvik | |
2016-08-24 | Merge remote-tracking branch 'upstream/master' into makefile_overhaul | Fred Sundvik | |
2016-08-23 | Merge pull request #677 from SmackleFunky/master | Jack Humbert | |
Virtual Serial Port - and a Layout that uses that virtual serial port for Plover | |||
2016-08-23 | move to ergodox-ez only | Jason Green | |
2016-08-23 | Merge branch 'master' into makefile_overhaul | Fred Sundvik | |
2016-08-23 | Merge pull request #671 from Talljoe/one-hand | Jack Humbert | |
Add native one-handed support | |||
2016-08-23 | Added USB Virtual Serial support | Jason Green | |
2016-08-20 | Improve one-hand support by adding more actions and tap keys. | Joe Wasson | |
2016-08-20 | Add one-hand support. | Joe Wasson | |
This adds an action, `ACTION_SWAP_HANDS`, that swaps the the keys on the keyboard across a keymap-defined hemisphere in order to support one-hand typing without requiring a separate one-handed layer. See updated `doc/keymap.md` for more information. | |||
2016-08-20 | Normalize line endings | Fred Sundvik | |
2016-08-20 | Fix the clean target | Fred Sundvik | |
It now properly cleans all the outputs | |||
2016-08-20 | Move bootloader_defs include to build_keyboard | Fred Sundvik | |
Also fix it for subprojects | |||
2016-08-20 | Add output specific config file | Fred Sundvik | |
2016-08-20 | Output specific include paths | Fred Sundvik | |
2016-08-20 | More general system for generating several outputs | Fred Sundvik | |
2016-08-20 | Don't add VERSION as a define | Fred Sundvik | |
To avoid full recompilation when the git commit hash changes. | |||
2016-08-20 | Move git submodule check and version generation to main Makefile | Fred Sundvik | |
2016-08-20 | Remove unneded code from tmk_core/rules.mk | Fred Sundvik | |
2016-08-07 | Convert hex to bin | di0ib | |
For flashing via alternative methods like LUFA MassStorage bootloader. | |||
2016-07-31 | Remove the quick commands and add proper clean | Fred Sundvik | |
2016-07-31 | Also depend on the gcc version | Fred Sundvik | |
2016-07-31 | Force compilation and linking when options changes | Fred Sundvik | |
2016-07-31 | More reliable .d file generation | Fred Sundvik | |
Also generated inside the obj dir instead of separate deps folder. | |||
2016-07-31 | Enable vpath seraching for source files only | Fred Sundvik | |
2016-07-29 | Speed up ChibiOS keymap compilation | Fred Sundvik | |
By sharing the external library object files between the whole keyboard, instead of re-compiling them for each keymap. | |||
2016-07-29 | Most ergodox keymaps compiles on Infinity | Fred Sundvik | |
There are linker errors due to missing led funcitonality though | |||
2016-07-28 | Merge pull request #573 from algernon/f/make-all-stop-on-error | Jack Humbert | |
tmk_core/rules.mk: Make PRINT_ERROR* stop on error | |||
2016-07-27 | tmk_core/rules.mk: Make PRINT_ERROR* stop on error | Gergely Nagy | |
Instead of `&& false`, explicitly `exit 1` to make the rules using these macros fail. This fixes #571, and likely breaks Travis badly. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org> | |||
2016-07-24 | Fix compiler warning when PREVENT_STUCK_MODIFIERS is enabled. | Joe Wasson | |
2016-07-21 | Merge pull request #522 from exiva/extrakey-macfix | Jack Humbert | |
Fix OS X Recognizing keyboard as Mouse/Tablet | |||
2016-07-15 | Fix OS X Recognizing keyboard as Mouse/Tablet | Travis 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-15 | Make DFU wait for bootloader | Travis 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-08 | Use order only prerequisites to avoid re-linking | Fred 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-08 | Fix name of makefile dep files | Fred 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-08 | Fix the link target | Fred Sundvik | |
2016-07-08 | Don't run git describe for ever file that is built | Fred Sundvik | |
2016-07-08 | Speed up compilation by not using recusive make | Fred Sundvik | |
The cleaning is done outside the targets, by checking the requested target name. | |||
2016-07-07 | Fix IS_CONSUMER macro | Fred Sundvik | |
2016-07-07 | Remove unhandled KC_BTLD, RESET should be used instead | Fred Sundvik | |
2016-07-07 | Merge pull request #490 from fredizzimo/integrate_visualizer | Jack Humbert | |
Integrate visualizer for ChibiOS and Infinity Ergodox | |||
2016-07-07 | Add suspend support to the ChibiOS visualizer | Fred Sundvik | |
2016-07-07 | Fix visualizer crash at startup | Fred Sundvik | |
Visualizer and serial link initialized in the wrong order. The LED_ENABLED define wasn't set properly uGfx is always initialized |