summaryrefslogtreecommitdiffstats
path: root/quantum/template/base
AgeCommit message (Collapse)AuthorFilesLines
2019-02-26Ask for your name when generating a new keyboard (#5214)fauxpark3-3/+3
* Ask for your name when generating a new keyboard * Update docs * Apply suggestions from code review Co-Authored-By: fauxpark <fauxpark@gmail.com>
2019-01-24Optimize/Update the new_project script (#4920)MechMerlin1-0/+35
* use pragma once in our templates * template.h is present in both avr/ps2avrgb options so we moved it to base. In addition we now use pragma once
2019-01-21Update Templates (stop living in the past, its 2019) (#4897)MechMerlin2-2/+2
2018-08-29Updated templates for use by new_project.sh (#3783)noroadsleft1-25/+29
* template.h file cleanup Reformatted the pre-macro comments as block comments. Updated the ps2avrgb template comment to match the avr template's comment, which was more informative. Deleted the line about the macro representing the Planck MIT layout, because the macro doesn't represent that layout anymore. * base template keymap.c refactor Deleted the deprecated TMK macro functions. Defined two custom keycodes for use as macros by process_record_user. process_record_user is now after the keymap and before matrix_init_user, where the deleted TMK functions were. * Removed an extra " from macro command per @drashna * Added BOOTLOADER rule to avr/rules.mk per @drashna * Updated Bootloader sections per @drashna * Updated links to docs at the bottom of both avr and ps2avrgb template readme.md files Corrected the links to the Build Environment Setup and the Make Instructions docs. Added direct link to the QMK Complete Newbs Guide.
2018-08-10Update ps2avrgb readme (#3599)MechMerlin1-15/+0
* give ps2avrgb a specific readme * add homebrew and crosspack avr step * update readme of all ps2avrgb boards to reflect the new template
2018-07-16Update template config.h with `#pragma once` (#3415)Evan Travers1-6/+1
* Update template config.h with `#pragma once` Making sure this is consistent with #3404 * Move to `#pragma once` for the other templates
2018-05-14update template copyrights to 2018 (#2962)MechMerlin2-2/+2
2018-05-10Support both AVR and ps2avrGB targets for new_project script (#2811)MechMerlin5-0/+99
* Stopping point at creating targets for new_project script * Add second argument for target * Add the ps2avrgb target * consider the case where the firmware type target is not valid * fix template files to be more generic * Code cleanup * Change variable name to be more descriptive * make avr the default * forgot to put the template files in * Take out useless comments * add usage info