Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support standard ortho4x12 QMK layout #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions houndstooth/houndstooth.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "quantum.h"

#define LAYOUT( \
#define LAYOUT_ortho_4x12( \
K00, K01, K02, K03, K04, K05, K40, K41, K42, K43, K44, K45,\
K10, K11, K12, K13, K14, K15, K50, K51, K52, K53, K54, K55,\
K20, K21, K22, K23, K24, K25, K60, K61, K62, K63, K64, K65,\
Expand All @@ -19,4 +19,6 @@
{ K70, K71, K72, K73, K74, K75 } \
}

#endif
#define LAYOUT LAYOUT_ortho_4x12

#endif
2 changes: 2 additions & 0 deletions houndstooth/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
# Boot Section Size in *bytes*
OPT_DEFS += -DBOOTLOADER_SIZE=4096

# Supported qmk layouts
LAYOUTS = ortho_4x12

# Build Options
# comment out to disable the options.
Expand Down