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

Add a split_3x6_4 layout #16

Closed
wants to merge 1 commit into from
Closed
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
16 changes: 16 additions & 0 deletions layouts/community/split_3x6_4/manna-harbour_miryoku/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// generated from users/manna-harbour_miryoku/miryoku.org -*- buffer-read-only: t -*-

#pragma once

#define LAYOUT_miryoku(\
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09,\
K10, K11, K12, K13, K14, K15, K16, K17, K18, K19,\
K20, K21, K22, K23, K24, K25, K26, K27, K28, K29,\
N30, N31, K32, K33, K34, K35, K36, K37, N38, N39\
)\
LAYOUT_split_3x6_4(\
KC_NO, K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, KC_NO,\
KC_NO, K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, KC_NO,\
KC_NO, K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, KC_NO,\
KC_NO, K32, K33, K34, K35, K36, K37, KC_NO\
)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// generated from users/manna-harbour_miryoku/miryoku.org -*- buffer-read-only: t -*-
37 changes: 37 additions & 0 deletions users/manna-harbour_miryoku/miryoku.org
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Additional implementations and visualisations are provided outside QMK in the
- [[#planck_mit][planck_mit]]
- [[#split_3x5_3][split_3x5_3]]
- [[#split_3x6_3][split_3x6_3]]
- [[#split_3x6_4][split_3x6_4]]
- [[#keyboards][Keyboards]]
- [[#atreus][atreus]]
- [[#dactyl_manuform4x5][dactyl_manuform/4x5]]
Expand Down Expand Up @@ -1279,6 +1280,42 @@ Required by the build system.
#+END_SRC


*** split_3x6_4

The outer columns and inner thumb key are unused.

To build for any keyboard using the this layout e.g. torn,

#+BEGIN_SRC sh :tangle no
make torn:manna-harbour_miryoku:flash
#+END_SRC


**** [[../../layouts/community/split_3x6_4/manna-harbour_miryoku/config.h][layouts/community/split_3x6_4/manna-harbour_miryoku/config.h]]

Contains subset mapping.

#+BEGIN_SRC C :noweb yes :padline no :tangle ../../layouts/community/split_3x6_4/manna-harbour_miryoku/config.h
// <<header>>

#pragma once

#define LAYOUT_miryoku(K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, N30, N31, K32, K33, K34, K35, K36, K37, N38, N39) LAYOUT_split_3x6_4(KC_NO, K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, KC_NO, KC_NO, K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, KC_NO, KC_NO, K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, KC_NO, KC_NO, K32, K33, K34, K35, K36, K37, KC_NO)
#+END_SRC

#+RESULTS:


**** [[../../layouts/community/split_3x6_4/manna-harbour_miryoku/keymap.c][layouts/community/split_3x6_4/manna-harbour_miryoku/keymap.c]]

Required by the build system.

#+BEGIN_SRC C :noweb yes :padline no :tangle ../../layouts/community/split_3x6_4/manna-harbour_miryoku/keymap.c
// <<header>>
#+END_SRC



** Keyboards

To use the keymap on a keyboard which does not support the layouts feature,
Expand Down