aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKosuke Adachi <ks@fstn.jp>2021-02-19 12:19:53 +0900
committerGitHub <noreply@github.com>2021-02-18 19:19:53 -0800
commite3f0157f6e5b21d52eb90cb307b234e832959e10 (patch)
tree5474874b409b50e33fb45f9733df0ca1d6530ace
parent307c97445baa62dff7c9b15a71db3aec5ea67f66 (diff)
downloadqmk_firmware-e3f0157f6e5b21d52eb90cb307b234e832959e10.tar.gz
qmk_firmware-e3f0157f6e5b21d52eb90cb307b234e832959e10.zip
[Keyboard] Add new keyboard Cornelius (#11719)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r--keyboards/foostan/cornelius/config.h145
-rw-r--r--keyboards/foostan/cornelius/cornelius.c17
-rw-r--r--keyboards/foostan/cornelius/cornelius.h40
-rw-r--r--keyboards/foostan/cornelius/info.json12
-rw-r--r--keyboards/foostan/cornelius/keymaps/default/keymap.c46
-rw-r--r--keyboards/foostan/cornelius/keymaps/default/readme.md1
-rw-r--r--keyboards/foostan/cornelius/keymaps/via/keymap.c46
-rw-r--r--keyboards/foostan/cornelius/keymaps/via/readme.md1
-rw-r--r--keyboards/foostan/cornelius/keymaps/via/rules.mk1
-rw-r--r--keyboards/foostan/cornelius/readme.md21
-rw-r--r--keyboards/foostan/cornelius/rules.mk22
11 files changed, 352 insertions, 0 deletions
diff --git a/keyboards/foostan/cornelius/config.h b/keyboards/foostan/cornelius/config.h
new file mode 100644
index 000000000..b50b30825
--- /dev/null
+++ b/keyboards/foostan/cornelius/config.h
@@ -0,0 +1,145 @@
1/*
2Copyright 2020 foostan
3
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
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along 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 0x3265
24#define PRODUCT_ID 0x0005
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Yushakobo
27#define PRODUCT Cornelius
28/* key matrix size */
29#define MATRIX_ROWS 4
30#define MATRIX_COLS 12
31
32/*
33 * Keyboard Matrix Assignments
34 *
35 * Change this to how you wired your keyboard
36 * COLS: AVR pins used for columns, left to right
37 * ROWS: AVR pins used for rows, top to bottom
38 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
39 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
40 *
41 */
42#define MATRIX_ROW_PINS { B0, B1, B2, C7 }
43#define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C6, B6, B5, B4, D7, D6 }
44#define UNUSED_PINS
45
46/* COL2ROW, ROW2COL */
47#define DIODE_DIRECTION COL2ROW
48
49/*
50 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
51 */
52#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
53
54//#define BACKLIGHT_PIN B7
55//#define BACKLIGHT_LEVELS 3
56//#define BACKLIGHT_BREATHING
57
58//#define RGB_DI_PIN E2
59//#ifdef RGB_DI_PIN
60//# define RGBLED_NUM 16
61//# define RGBLIGHT_HUE_STEP 8
62//# define RGBLIGHT_SAT_STEP 8
63//# define RGBLIGHT_VAL_STEP 8
64//# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
65//# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
66/*== all animations enable ==*/
67//# define RGBLIGHT_ANIMATIONS
68/*== or choose animations ==*/
69//# define RGBLIGHT_EFFECT_BREATHING
70//# define RGBLIGHT_EFFECT_RAINBOW_MOOD
71//# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
72//# define RGBLIGHT_EFFECT_SNAKE
73//# define RGBLIGHT_EFFECT_KNIGHT
74//# define RGBLIGHT_EFFECT_CHRISTMAS
75//# define RGBLIGHT_EFFECT_STATIC_GRADIENT
76//# define RGBLIGHT_EFFECT_RGB_TEST
77//# define RGBLIGHT_EFFECT_ALTERNATING
78/*== customize breathing effect ==*/
79/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
80//# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
81/*==== use exp() and sin() ====*/
82//# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
83//# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
84//#endif
85
86/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
87#define DEBOUNCE 5
88
89/* define if matrix has ghost (lacks anti-ghosting diodes) */
90//#define MATRIX_HAS_GHOST
91
92/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
93#define LOCKING_SUPPORT_ENABLE
94/* Locking resynchronize hack */
95#define LOCKING_RESYNC_ENABLE
96
97/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
98 * This is useful for the Windows task manager shortcut (ctrl+shift+esc).
99 */
100//#define GRAVE_ESC_CTRL_OVERRIDE
101
102/*
103 * Force NKRO
104 *
105 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
106 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
107 * makefile for this to work.)
108 *
109 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
110 * until the next keyboard reset.
111 *
112 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
113 * fully operational during normal computer usage.
114 *
115 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
116 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
117 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
118 * power-up.
119 *
120 */
121//#define FORCE_NKRO
122
123/*
124 * Feature disable options
125 * These options are also useful to firmware size reduction.
126 */
127
128/* disable debug print */
129//#define NO_DEBUG
130
131/* disable print */
132//#define NO_PRINT
133
134/* disable action features */
135//#define NO_ACTION_LAYER
136//#define NO_ACTION_TAPPING
137//#define NO_ACTION_ONESHOT
138
139/* disable these deprecated features by default */
140#define NO_ACTION_MACRO
141#define NO_ACTION_FUNCTION
142
143/* Bootmagic Lite key configuration */
144//#define BOOTMAGIC_LITE_ROW 0
145//#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/foostan/cornelius/cornelius.c b/keyboards/foostan/cornelius/cornelius.c
new file mode 100644
index 000000000..6ff9555d3
--- /dev/null
+++ b/keyboards/foostan/cornelius/cornelius.c
@@ -0,0 +1,17 @@
1/* Copyright 2020 foostan
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#include "cornelius.h"
diff --git a/keyboards/foostan/cornelius/cornelius.h b/keyboards/foostan/cornelius/cornelius.h
new file mode 100644
index 000000000..c9b63ee32
--- /dev/null
+++ b/keyboards/foostan/cornelius/cornelius.h
@@ -0,0 +1,40 @@
1/* Copyright 2020 foostan
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#include "quantum.h"
20
21/* This is a shortcut to help you visually see your layout.
22 *
23 * The first section contains all of the arguments representing the physical
24 * layout of the board and position of the keys.
25 *
26 * The second converts the arguments into a two-dimensional array which
27 * represents the switch matrix.
28 */
29#define LAYOUT( \
30 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, \
31 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, \
32 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, \
33 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311 \
34) \
35{ \
36 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011 }, \
37 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111 }, \
38 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211 }, \
39 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311 } \
40}
diff --git a/keyboards/foostan/cornelius/info.json b/keyboards/foostan/cornelius/info.json
new file mode 100644
index 000000000..cc9832169
--- /dev/null
+++ b/keyboards/foostan/cornelius/info.json
@@ -0,0 +1,12 @@
1{
2 "keyboard_name": "cornelius",
3 "url": "",
4 "maintainer": "qmk",
5 "width": 7.55,
6 "height": 6.11,
7 "layouts": {
8 "LAYOUT": {
9 "layout": [{"label":"E", "x":2.5, "y":0}, {"label":"R", "x":3.5, "y":0.125}, {"label":"W", "x":1.5, "y":0.25}, {"label":"T", "x":4.5, "y":0.25}, {"label":"Tab", "x":-0.5, "y":0.625}, {"label":"Q", "x":0.5, "y":0.625}, {"label":"D", "x":2.5, "y":1}, {"label":"F", "x":3.5, "y":1.125}, {"label":"S", "x":1.5, "y":1.25}, {"label":"G", "x":4.5, "y":1.25}, {"label":"Esc", "x":-0.5, "y":1.625}, {"label":"A", "x":0.5, "y":1.625}, {"label":"C", "x":2.5, "y":2}, {"label":"V", "x":3.5, "y":2.125}, {"label":"X", "x":1.5, "y":2.25}, {"label":"B", "x":4.5, "y":2.25}, {"label":"Shift", "x":-0.5, "y":2.625}, {"label":"Z", "x":0.5, "y":2.625}, {"label":"Win", "x":1.5, "y":3.25}, {"label":"Alt", "x":3, "y":3.25}, {"label":"Fn", "x":-0.5, "y":3.625}, {"label":"Ctrl", "x":0.5, "y":3.625}, {"label":"Lower", "x":4.97, "y":2.11}, {"x":6.55, "y":0.48}, {"x":-7.55, "y":1.94}, {"label":"Raise", "x":-5.95, "y":3.58}, {"label":"I", "x":-3.5, "y":1.48}, {"label":"U", "x":-4.5, "y":1.605}, {"label":"Y", "x":-5.5, "y":1.73}, {"label":"O", "x":-2.5, "y":1.73}, {"label":"P", "x":-1.5, "y":2.105}, {"label":"Bksp", "x":-0.5, "y":2.105}, {"label":"K", "x":-3.5, "y":2.48}, {"label":"J", "x":-4.5, "y":2.605}, {"label":"H", "x":-5.5, "y":2.73}, {"label":"L", "x":-2.5, "y":2.73}, {"label":":", "x":-1.5, "y":3.105}, {"label":"\"", "x":-0.5, "y":3.105}, {"label":"<", "x":-3.5, "y":3.48}, {"label":"M", "x":-4.5, "y":3.605}, {"label":"N", "x":-5.5, "y":3.73}, {"label":">", "x":-2.5, "y":3.73}, {"label":"?", "x":-1.5, "y":4.105}, {"label":"Shift", "x":-0.5, "y":4.105}, {"label":"Alt", "x":-4, "y":4.73}, {"label":"Win", "x":-2.5, "y":4.73}, {"label":"Ctrl", "x":-1.5, "y":5.105}, {"label":"Fn", "x":-0.5, "y":5.105}]
10 }
11 }
12} \ No newline at end of file
diff --git a/keyboards/foostan/cornelius/keymaps/default/keymap.c b/keyboards/foostan/cornelius/keymaps/default/keymap.c
new file mode 100644
index 000000000..8400cf1ce
--- /dev/null
+++ b/keyboards/foostan/cornelius/keymaps/default/keymap.c
@@ -0,0 +1,46 @@
1/* Copyright 2020 foostan
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
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19[0] = LAYOUT(
20 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
21 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
22 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
23 XXXXXXX, KC_LCTL, KC_LGUI, KC_LALT, MO(1), KC_SPC, KC_ENT, MO(2), KC_RALT, KC_RGUI, KC_RCTL, XXXXXXX
24 ),
25
26[1] = LAYOUT(
27 _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
28 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP,KC_RIGHT, XXXXXXX, XXXXXXX,
29 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
30 _______, _______, _______, _______, MO(1), _______, _______, MO(3), _______, _______, _______, _______
31 ),
32
33[2] = LAYOUT(
34 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
35 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL, KC_LCBR, KC_RCBR, KC_PIPE, KC_GRV,
36 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_UNDS, KC_PLUS, KC_LBRC, KC_RBRC, KC_BSLS, KC_TILD,
37 _______, _______, _______, _______, MO(3), _______, _______, MO(2), _______, _______, _______, _______
38 ),
39
40[3] = LAYOUT(
41 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
42 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
43 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
44 _______, _______, _______, _______, MO(3), _______, _______, MO(3), _______, _______, _______, _______
45 ),
46};
diff --git a/keyboards/foostan/cornelius/keymaps/default/readme.md b/keyboards/foostan/cornelius/keymaps/default/readme.md
new file mode 100644
index 000000000..cb35bd8a2
--- /dev/null
+++ b/keyboards/foostan/cornelius/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for cornelius
diff --git a/keyboards/foostan/cornelius/keymaps/via/keymap.c b/keyboards/foostan/cornelius/keymaps/via/keymap.c
new file mode 100644
index 000000000..f1b7f7fcd
--- /dev/null
+++ b/keyboards/foostan/cornelius/keymaps/via/keymap.c
@@ -0,0 +1,46 @@
1/* Copyright 2020 foostan
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
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 [0] = LAYOUT(
20 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
21 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
22 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
23 XXXXXXX, KC_LCTL, KC_LGUI, KC_LALT, FN_MO13, KC_SPC, KC_ENT, FN_MO23, KC_RALT, KC_RGUI, KC_RCTL, XXXXXXX
24 ),
25
26 [1] = LAYOUT(
27 _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
28 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP,KC_RIGHT, XXXXXXX, XXXXXXX,
29 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
30 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
31 ),
32
33 [2] = LAYOUT(
34 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
35 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL, KC_LCBR, KC_RCBR, KC_PIPE, KC_GRV,
36 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_UNDS, KC_PLUS, KC_LBRC, KC_RBRC, KC_BSLS, KC_TILD,
37 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
38 ),
39
40 [3] = LAYOUT(
41 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
42 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
43 _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
45 ),
46};
diff --git a/keyboards/foostan/cornelius/keymaps/via/readme.md b/keyboards/foostan/cornelius/keymaps/via/readme.md
new file mode 100644
index 000000000..cb35bd8a2
--- /dev/null
+++ b/keyboards/foostan/cornelius/keymaps/via/readme.md
@@ -0,0 +1 @@
# The default keymap for cornelius
diff --git a/keyboards/foostan/cornelius/keymaps/via/rules.mk b/keyboards/foostan/cornelius/keymaps/via/rules.mk
new file mode 100644
index 000000000..036bd6d1c
--- /dev/null
+++ b/keyboards/foostan/cornelius/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/foostan/cornelius/readme.md b/keyboards/foostan/cornelius/readme.md
new file mode 100644
index 000000000..ffd6b60a1
--- /dev/null
+++ b/keyboards/foostan/cornelius/readme.md
@@ -0,0 +1,21 @@
1# cornelius
2
3![cornelius](https://i.imgur.com/kGoUGZgl.jpg)
4
5Gasket mounted 40% column staggered keyboard manufactured by Yushakobo
6
7* Keyboard Maintainer: [foostan](https://github.com/foostan/)
8* Hardware Supported: Cornelius PCBs
9* Hardware Availability: http://github.com/foostan
10
11Make example for this keyboard (after setting up your build environment):
12
13 make foostan/cornelius:default
14
15Flashing example for this keyboard:
16
17 make foostan/cornelius:default:flash
18
19The board reset into bootloader mode via either the reset button (on the back of the PCB) or a configured RESET shortcut (which may vary depending on when the PCB was flashed).
20
21See 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/foostan/cornelius/rules.mk b/keyboards/foostan/cornelius/rules.mk
new file mode 100644
index 000000000..5c0d8f307
--- /dev/null
+++ b/keyboards/foostan/cornelius/rules.mk
@@ -0,0 +1,22 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = no # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output