diff options
| author | marhalloweenvt <marhalloweenvt@gmail.com> | 2019-11-12 12:04:35 +0700 |
|---|---|---|
| committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2019-11-11 21:04:35 -0800 |
| commit | b252cce18fd474562510be5fc1e401287d747cd3 (patch) | |
| tree | fff649620d9781fc911053aa6250da1fc7fab6ec | |
| parent | 3f6426ff5f14d1cdac9af935aaf175d3dbca3592 (diff) | |
| download | qmk_firmware-b252cce18fd474562510be5fc1e401287d747cd3.tar.gz qmk_firmware-b252cce18fd474562510be5fc1e401287d747cd3.zip | |
[Keyboard] Add new keyboard Symmetry60 (#7327)
* [Keyboard] Add new keyboard Symmetry60
* Add new keyboard Symmetry60
* Fix Typo
* Update keyboards/handwired/symmetry60/config.h
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/handwired/symmetry60/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/handwired/symmetry60/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/handwired/symmetry60/readme.md
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/handwired/symmetry60/rules.mk
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/handwired/symmetry60/symmetry60.h
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/handwired/symmetry60/symmetry60.h
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/handwired/symmetry60/symmetry60.h
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update readme.md
* Update keymap.c
* Update keymap.c
* Update keymap.c
* Update rules.mk
* Update symmetry60.c
* Update keyboards/handwired/symmetry60/rules.mk
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
| -rw-r--r-- | keyboards/handwired/symmetry60/config.h | 71 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/info.json | 83 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/keymaps/default/config.h | 19 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/keymaps/default/keymap.c | 26 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/readme.md | 13 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/rules.mk | 36 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/symmetry60.c | 16 | ||||
| -rw-r--r-- | keyboards/handwired/symmetry60/symmetry60.h | 42 |
9 files changed, 307 insertions, 0 deletions
diff --git a/keyboards/handwired/symmetry60/config.h b/keyboards/handwired/symmetry60/config.h new file mode 100644 index 000000000..ee72208af --- /dev/null +++ b/keyboards/handwired/symmetry60/config.h | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2019 Marhalloweenvt | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | /* USB Device descriptor parameter */ | ||
| 23 | #define VENDOR_ID 0xFEED | ||
| 24 | #define PRODUCT_ID 0x0000 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Marhalloweenvt | ||
| 27 | #define PRODUCT Symmetry60 | ||
| 28 | #define DESCRIPTION A Boardwalk-inspired keyboard | ||
| 29 | |||
| 30 | /* key matrix size */ | ||
| 31 | #define MATRIX_ROWS 5 | ||
| 32 | #define MATRIX_COLS 14 | ||
| 33 | |||
| 34 | /* | ||
| 35 | * Keyboard Matrix Assignments | ||
| 36 | * | ||
| 37 | * Change this to how you wired your keyboard | ||
| 38 | * COLS: AVR pins used for columns, left to right | ||
| 39 | * ROWS: AVR pins used for rows, top to bottom | ||
| 40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 42 | * | ||
| 43 | */ | ||
| 44 | #define MATRIX_ROW_PINS { D0, D1, D2, D3, D5 } | ||
| 45 | #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7, B6, B5, B4, D7, D6, D4, E6 } | ||
| 46 | #define UNUSED_PINS | ||
| 47 | |||
| 48 | /* COL2ROW, ROW2COL*/ | ||
| 49 | #define DIODE_DIRECTION COL2ROW | ||
| 50 | |||
| 51 | #define RGB_DI_PIN B1 | ||
| 52 | #ifdef RGB_DI_PIN | ||
| 53 | #define RGBLIGHT_ANIMATIONS | ||
| 54 | #define RGBLED_NUM 14 | ||
| 55 | #define RGBLIGHT_HUE_STEP 8 | ||
| 56 | #define RGBLIGHT_SAT_STEP 8 | ||
| 57 | #define RGBLIGHT_VAL_STEP 8 | ||
| 58 | #endif | ||
| 59 | |||
| 60 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 61 | #define DEBOUNCE 5 | ||
| 62 | |||
| 63 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 64 | //#define MATRIX_HAS_GHOST | ||
| 65 | |||
| 66 | /* number of backlight levels */ | ||
| 67 | |||
| 68 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 69 | #define LOCKING_SUPPORT_ENABLE | ||
| 70 | /* Locking resynchronize hack */ | ||
| 71 | #define LOCKING_RESYNC_ENABLE | ||
diff --git a/keyboards/handwired/symmetry60/info.json b/keyboards/handwired/symmetry60/info.json new file mode 100644 index 000000000..f33c28b0c --- /dev/null +++ b/keyboards/handwired/symmetry60/info.json | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | { | ||
| 2 | "Keyboard_name": "Symmetry60", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "marhalloweenvt", | ||
| 5 | "width": 14, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ortho_5x14": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"K00", "x":0, "y":0, "w":1.5}, | ||
| 11 | {"label":"K01", "x":1.5, "y":0}, | ||
| 12 | {"label":"K02", "x":2.5, "y":0}, | ||
| 13 | {"label":"K03", "x":3.5, "y":0}, | ||
| 14 | {"label":"K04", "x":4.5, "y":0}, | ||
| 15 | {"label":"K05", "x":5.5, "y":0}, | ||
| 16 | {"label":"K06", "x":6.5, "y":0}, | ||
| 17 | {"label":"K07", "x":7.5, "y":0}, | ||
| 18 | {"label":"K08", "x":8.5, "y":0}, | ||
| 19 | {"label":"K09", "x":9.5, "y":0}, | ||
| 20 | {"label":"K0A", "x":10.5, "y":0}, | ||
| 21 | {"label":"K0B", "x":11.5, "y":0}, | ||
| 22 | {"label":"K0C", "x":12.5, "y":0}, | ||
| 23 | {"label":"K0D", "x":13.5, "y":0, "w":1.5}, | ||
| 24 | {"label":"K10", "x":0, "y":1, "w":1.5}, | ||
| 25 | {"label":"K11", "x":1.5, "y":1}, | ||
| 26 | {"label":"K12", "x":2.5, "y":1}, | ||
| 27 | {"label":"K13", "x":3.5, "y":1}, | ||
| 28 | {"label":"K14", "x":4.5, "y":1}, | ||
| 29 | {"label":"K15", "x":5.5, "y":1}, | ||
| 30 | {"label":"K16", "x":6.5, "y":1}, | ||
| 31 | {"label":"K17", "x":7.5, "y":1}, | ||
| 32 | {"label":"K18", "x":8.5, "y":1}, | ||
| 33 | {"label":"K19", "x":9.5, "y":1}, | ||
| 34 | {"label":"K1A", "x":10.5, "y":1}, | ||
| 35 | {"label":"K1B", "x":11.5, "y":1}, | ||
| 36 | {"label":"K1C", "x":12.5, "y":1}, | ||
| 37 | {"label":"K1D", "x":13.5, "y":1, "w":1.5}, | ||
| 38 | {"label":"K20", "x":0, "y":2, "w":1.5}, | ||
| 39 | {"label":"K21", "x":1.5, "y":2}, | ||
| 40 | {"label":"K22", "x":2.5, "y":2}, | ||
| 41 | {"label":"K23", "x":3.5, "y":2}, | ||
| 42 | {"label":"K24", "x":4.5, "y":2}, | ||
| 43 | {"label":"K25", "x":5.5, "y":2}, | ||
| 44 | {"label":"K26", "x":6.5, "y":2}, | ||
| 45 | {"label":"K27", "x":7.5, "y":2}, | ||
| 46 | {"label":"K28", "x":8.5, "y":2}, | ||
| 47 | {"label":"K29", "x":9.5, "y":2}, | ||
| 48 | {"label":"K2A", "x":10.5, "y":2}, | ||
| 49 | {"label":"K2B", "x":11.5, "y":2}, | ||
| 50 | {"label":"K2C", "x":12.5, "y":2}, | ||
| 51 | {"label":"K2D", "x":13.5, "y":2, "w":1.5}, | ||
| 52 | {"label":"K30", "x":0, "y":3, "w":1.5}, | ||
| 53 | {"label":"K31", "x":1.5, "y":3}, | ||
| 54 | {"label":"K32", "x":2.5, "y":3}, | ||
| 55 | {"label":"K33", "x":3.5, "y":3}, | ||
| 56 | {"label":"K34", "x":4.5, "y":3}, | ||
| 57 | {"label":"K35", "x":5.5, "y":3}, | ||
| 58 | {"label":"K36", "x":6.5, "y":3}, | ||
| 59 | {"label":"K37", "x":7.5, "y":3}, | ||
| 60 | {"label":"K38", "x":8.5, "y":3}, | ||
| 61 | {"label":"K39", "x":9.5, "y":3}, | ||
| 62 | {"label":"K3A", "x":10.5, "y":3}, | ||
| 63 | {"label":"K3B", "x":11.5, "y":3}, | ||
| 64 | {"label":"K3C", "x":12.5, "y":3}, | ||
| 65 | {"label":"K3D", "x":13.5, "y":3, "w":1.5}, | ||
| 66 | {"label":"K40", "x":0, "y":4, "w":1.5}, | ||
| 67 | {"label":"K41", "x":1.5, "y":4}, | ||
| 68 | {"label":"K42", "x":2.5, "y":4}, | ||
| 69 | {"label":"K43", "x":3.5, "y":4}, | ||
| 70 | {"label":"K44", "x":4.5, "y":4}, | ||
| 71 | {"label":"K45", "x":5.5, "y":4}, | ||
| 72 | {"label":"K46", "x":6.5, "y":4}, | ||
| 73 | {"label":"K47", "x":7.5, "y":4}, | ||
| 74 | {"label":"K48", "x":8.5, "y":4}, | ||
| 75 | {"label":"K49", "x":9.5, "y":4}, | ||
| 76 | {"label":"K4A", "x":10.5, "y":4}, | ||
| 77 | {"label":"K4B", "x":11.5, "y":4}, | ||
| 78 | {"label":"K4C", "x":12.5, "y":4}, | ||
| 79 | {"label":"K4D", "x":13.5, "y":4, "w":1.5} | ||
| 80 | ] | ||
| 81 | } | ||
| 82 | } | ||
| 83 | } | ||
diff --git a/keyboards/handwired/symmetry60/keymaps/default/config.h b/keyboards/handwired/symmetry60/keymaps/default/config.h new file mode 100644 index 000000000..7b52e1dd0 --- /dev/null +++ b/keyboards/handwired/symmetry60/keymaps/default/config.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* Copyright 2019 marhalloweenvt | ||
| 2 | * | ||
| 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 | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | // place overrides here | ||
diff --git a/keyboards/handwired/symmetry60/keymaps/default/keymap.c b/keyboards/handwired/symmetry60/keymaps/default/keymap.c new file mode 100644 index 000000000..696069895 --- /dev/null +++ b/keyboards/handwired/symmetry60/keymaps/default/keymap.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* Copyright 2019 marhalloweenvt | ||
| 2 | * | ||
| 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 | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | [0] = LAYOUT_ortho_5x14( | ||
| 20 | KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
| 21 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
| 22 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
| 23 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
| 24 | KC_LCTL, KC_DEL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_RCTL | ||
| 25 | ), | ||
| 26 | }; | ||
diff --git a/keyboards/handwired/symmetry60/keymaps/default/readme.md b/keyboards/handwired/symmetry60/keymaps/default/readme.md new file mode 100644 index 000000000..db25aa3bf --- /dev/null +++ b/keyboards/handwired/symmetry60/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The default keymap for symmetry60 | |||
diff --git a/keyboards/handwired/symmetry60/readme.md b/keyboards/handwired/symmetry60/readme.md new file mode 100644 index 000000000..5a4de934f --- /dev/null +++ b/keyboards/handwired/symmetry60/readme.md | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # SYMMETRY60 | ||
| 2 | |||
| 3 | A keyboard inspired by Boardwalk | ||
| 4 | |||
| 5 | * Keyboard Maintainer: [marhalloweenvt](https://github.com/marhalloweenvt) | ||
| 6 | * Hardware Supported: Symmetry60 PCB | ||
| 7 | * Hardware Availability: Symmetry60 PCB | ||
| 8 | |||
| 9 | Make example for this keyboard (after setting up your build environment): | ||
| 10 | |||
| 11 | make handwired/symmetry60:default | ||
| 12 | |||
| 13 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/handwired/symmetry60/rules.mk b/keyboards/handwired/symmetry60/rules.mk new file mode 100644 index 000000000..6830cc690 --- /dev/null +++ b/keyboards/handwired/symmetry60/rules.mk | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = atmel-dfu | ||
| 13 | |||
| 14 | # Build Options | ||
| 15 | # change yes to no to disable | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | ||
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 20 | CONSOLE_ENABLE = yes # Console for debug | ||
| 21 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 25 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | ||
| 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 28 | MIDI_ENABLE = no # MIDI support | ||
| 29 | UNICODE_ENABLE = no # Unicode | ||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
| 34 | LTO_ENABLE = yes # Use link time optimization | ||
| 35 | |||
| 36 | LAYOUTS = ortho_5x14 | ||
diff --git a/keyboards/handwired/symmetry60/symmetry60.c b/keyboards/handwired/symmetry60/symmetry60.c new file mode 100644 index 000000000..70828297c --- /dev/null +++ b/keyboards/handwired/symmetry60/symmetry60.c | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* Copyright 2019 marhalloweenvt | ||
| 2 | * | ||
| 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 | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include "symmetry60.h" | ||
diff --git a/keyboards/handwired/symmetry60/symmetry60.h b/keyboards/handwired/symmetry60/symmetry60.h new file mode 100644 index 000000000..138e5bb23 --- /dev/null +++ b/keyboards/handwired/symmetry60/symmetry60.h | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* Copyright 2019 marhalloweenvt | ||
| 2 | * | ||
| 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 | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | |||
| 20 | /* This a shortcut to help you visually see your layout. | ||
| 21 | * | ||
| 22 | * The first section contains all of the arguments representing the physical | ||
| 23 | * layout of the board and position of the keys. | ||
| 24 | * | ||
| 25 | * The second converts the arguments into a two-dimensional array which | ||
| 26 | * represents the switch matrix. | ||
| 27 | */ | ||
| 28 | #define LAYOUT_ortho_5x14( \ | ||
| 29 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \ | ||
| 30 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \ | ||
| 31 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, \ | ||
| 32 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \ | ||
| 33 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D \ | ||
| 34 | ) \ | ||
| 35 | { \ | ||
| 36 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \ | ||
| 37 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \ | ||
| 38 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \ | ||
| 39 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D }, \ | ||
| 40 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D }, \ | ||
| 41 | } | ||
| 42 | |||
