aboutsummaryrefslogtreecommitdiff
path: root/quantum
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-02-27 02:59:34 +1100
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-02-26 07:59:34 -0800
commit0d936b2fe6a2518f2562c59f7f84692590d77aa0 (patch)
tree06e42680d3c1cb5d1f162a1acf9c9b19eebd444a /quantum
parent7ba2bc765be62f969668847797b7eb3e6665db48 (diff)
downloadqmk_firmware-0d936b2fe6a2518f2562c59f7f84692590d77aa0.tar.gz
qmk_firmware-0d936b2fe6a2518f2562c59f7f84692590d77aa0.zip
Ask for your name when generating a new keyboard (#5214)
* Ask for your name when generating a new keyboard * Update docs * Apply suggestions from code review Co-Authored-By: fauxpark <fauxpark@gmail.com>
Diffstat (limited to 'quantum')
-rw-r--r--quantum/template/avr/config.h4
-rw-r--r--quantum/template/avr/readme.md2
-rw-r--r--quantum/template/avr/template.c2
-rw-r--r--quantum/template/base/keymaps/default/config.h2
-rw-r--r--quantum/template/base/keymaps/default/keymap.c2
-rw-r--r--quantum/template/base/template.h2
-rw-r--r--quantum/template/ps2avrgb/template.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/quantum/template/avr/config.h b/quantum/template/avr/config.h
index 2409ae186..a9bb75482 100644
--- a/quantum/template/avr/config.h
+++ b/quantum/template/avr/config.h
@@ -1,5 +1,5 @@
1/* 1/*
2Copyright 2019 REPLACE_WITH_YOUR_NAME 2Copyright 2019 %YOUR_NAME%
3 3
4This program is free software: you can redistribute it and/or modify 4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by 5it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
23#define VENDOR_ID 0xFEED 23#define VENDOR_ID 0xFEED
24#define PRODUCT_ID 0x0000 24#define PRODUCT_ID 0x0000
25#define DEVICE_VER 0x0001 25#define DEVICE_VER 0x0001
26#define MANUFACTURER You 26#define MANUFACTURER %YOUR_NAME%
27#define PRODUCT %KEYBOARD% 27#define PRODUCT %KEYBOARD%
28#define DESCRIPTION A custom keyboard 28#define DESCRIPTION A custom keyboard
29 29
diff --git a/quantum/template/avr/readme.md b/quantum/template/avr/readme.md
index d243c66a9..719222d37 100644
--- a/quantum/template/avr/readme.md
+++ b/quantum/template/avr/readme.md
@@ -4,7 +4,7 @@
4 4
5A short description of the keyboard/project 5A short description of the keyboard/project
6 6
7Keyboard Maintainer: [You](https://github.com/yourusername) 7Keyboard Maintainer: [%YOUR_NAME%](https://github.com/yourusername)
8Hardware Supported: The PCBs, controllers supported 8Hardware Supported: The PCBs, controllers supported
9Hardware Availability: links to where you can find this hardware 9Hardware Availability: links to where you can find this hardware
10 10
diff --git a/quantum/template/avr/template.c b/quantum/template/avr/template.c
index 3deeae88b..1e4ce26cd 100644
--- a/quantum/template/avr/template.c
+++ b/quantum/template/avr/template.c
@@ -1,4 +1,4 @@
1/* Copyright 2019 REPLACE_WITH_YOUR_NAME 1/* Copyright 2019 %YOUR_NAME%
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
diff --git a/quantum/template/base/keymaps/default/config.h b/quantum/template/base/keymaps/default/config.h
index c8e433412..44382016a 100644
--- a/quantum/template/base/keymaps/default/config.h
+++ b/quantum/template/base/keymaps/default/config.h
@@ -1,4 +1,4 @@
1/* Copyright 2019 REPLACE_WITH_YOUR_NAME 1/* Copyright 2019 %YOUR_NAME%
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
diff --git a/quantum/template/base/keymaps/default/keymap.c b/quantum/template/base/keymaps/default/keymap.c
index 11cd134a0..482a44544 100644
--- a/quantum/template/base/keymaps/default/keymap.c
+++ b/quantum/template/base/keymaps/default/keymap.c
@@ -1,4 +1,4 @@
1/* Copyright 2019 REPLACE_WITH_YOUR_NAME 1/* Copyright 2019 %YOUR_NAME%
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
diff --git a/quantum/template/base/template.h b/quantum/template/base/template.h
index caf2abb4c..5b5076c47 100644
--- a/quantum/template/base/template.h
+++ b/quantum/template/base/template.h
@@ -1,4 +1,4 @@
1/* Copyright 2019 REPLACE_WITH_YOUR_NAME 1/* Copyright 2019 %YOUR_NAME%
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by
diff --git a/quantum/template/ps2avrgb/template.c b/quantum/template/ps2avrgb/template.c
index 4e35a2c12..08156c562 100644
--- a/quantum/template/ps2avrgb/template.c
+++ b/quantum/template/ps2avrgb/template.c
@@ -1,4 +1,4 @@
1/* Copyright 2019 REPLACE_WITH_YOUR_NAME 1/* Copyright 2019 %YOUR_NAME%
2 * 2 *
3 * This program is free software: you can redistribute it and/or modify 3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by 4 * it under the terms of the GNU General Public License as published by