diff options
| author | fauxpark | 2019-11-02 03:06:03 +0100 |
|---|---|---|
| committer | Drashna Jaelre | 2019-11-02 03:06:03 +0100 |
| commit | e6cc9cc78d40af1386f9a116d5fcc95c20233110 (patch) | |
| tree | 080b4535f47cc19cbe7d5221d0909b2a9ee76f5c /quantum/template/base/keyboard.h | |
| parent | 1f6cb53fb34867827c487e523f7134bab1acab04 (diff) | |
Template updates (#7221)
* Template updates
* Flesh out info.json & keymap.c, and turn double spaces section into a list
* Add enum to demonstrate layer naming
* Semicolon
Diffstat (limited to 'quantum/template/base/keyboard.h')
| -rw-r--r-- | quantum/template/base/keyboard.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/quantum/template/base/keyboard.h b/quantum/template/base/keyboard.h index 2e531b1fd4..8a21d92578 100644 --- a/quantum/template/base/keyboard.h +++ b/quantum/template/base/keyboard.h @@ -13,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ + #pragma once #include "quantum.h" -/* This a shortcut to help you visually see your layout. +/* This is a shortcut to help you visually see your layout. * * The first section contains all of the arguments representing the physical * layout of the board and position of the keys. @@ -27,9 +28,9 @@ */ #define LAYOUT( \ k00, k01, k02, \ - k10, k11 \ + k10, k12 \ ) \ { \ { k00, k01, k02 }, \ - { k10, KC_NO, k11 }, \ + { k10, KC_NO, k12 } \ } |