diff options
Diffstat (limited to 'keyboards/levinson')
-rw-r--r-- | keyboards/levinson/keymaps/bakingpy2u/config.h | 2 | ||||
-rw-r--r-- | keyboards/levinson/keymaps/default/config.h | 2 | ||||
-rw-r--r-- | keyboards/levinson/levinson.h | 2 | ||||
-rw-r--r-- | keyboards/levinson/readme.md | 4 | ||||
-rw-r--r-- | keyboards/levinson/rules.mk | 4 | ||||
-rw-r--r-- | keyboards/levinson/subproject.mk | 1 |
6 files changed, 8 insertions, 7 deletions
diff --git a/keyboards/levinson/keymaps/bakingpy2u/config.h b/keyboards/levinson/keymaps/bakingpy2u/config.h index 6b409bf0d..a2b1e089c 100644 --- a/keyboards/levinson/keymaps/bakingpy2u/config.h +++ b/keyboards/levinson/keymaps/bakingpy2u/config.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef CONFIG_USER_H | 1 | #ifndef CONFIG_USER_H |
2 | #define CONFIG_USER_H | 2 | #define CONFIG_USER_H |
3 | 3 | ||
4 | #include "../../config.h" | 4 | #include "config_common.h" |
5 | 5 | ||
6 | /* Use I2C or Serial, not both */ | 6 | /* Use I2C or Serial, not both */ |
7 | 7 | ||
diff --git a/keyboards/levinson/keymaps/default/config.h b/keyboards/levinson/keymaps/default/config.h index 7f33a4363..4c7e48dc0 100644 --- a/keyboards/levinson/keymaps/default/config.h +++ b/keyboards/levinson/keymaps/default/config.h | |||
@@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
21 | #ifndef CONFIG_USER_H | 21 | #ifndef CONFIG_USER_H |
22 | #define CONFIG_USER_H | 22 | #define CONFIG_USER_H |
23 | 23 | ||
24 | #include "../../config.h" | 24 | #include "config_common.h" |
25 | 25 | ||
26 | /* Use I2C or Serial, not both */ | 26 | /* Use I2C or Serial, not both */ |
27 | 27 | ||
diff --git a/keyboards/levinson/levinson.h b/keyboards/levinson/levinson.h index c69a06fab..896c5232f 100644 --- a/keyboards/levinson/levinson.h +++ b/keyboards/levinson/levinson.h | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | #include "quantum.h" | 4 | #include "quantum.h" |
5 | 5 | ||
6 | #include QMK_SUBPROJECT_H | 6 | #include "rev1.h" |
7 | 7 | ||
8 | // Used to create a keymap using only KC_ prefixed keys | 8 | // Used to create a keymap using only KC_ prefixed keys |
9 | #define KC_KEYMAP( \ | 9 | #define KC_KEYMAP( \ |
diff --git a/keyboards/levinson/readme.md b/keyboards/levinson/readme.md index 1fcad3c1b..94dd7bf04 100644 --- a/keyboards/levinson/readme.md +++ b/keyboards/levinson/readme.md | |||
@@ -9,11 +9,11 @@ Hardware Availability: [Keebio](https://keeb.io) | |||
9 | 9 | ||
10 | Make example for this keyboard (after setting up your build environment): | 10 | Make example for this keyboard (after setting up your build environment): |
11 | 11 | ||
12 | make levinson-rev1-default | 12 | make levinson/rev1:default |
13 | 13 | ||
14 | Example of flashing this keyboard: | 14 | Example of flashing this keyboard: |
15 | 15 | ||
16 | make levinson-rev1-default-avrdude | 16 | make levinson/rev1:default:avrdude |
17 | 17 | ||
18 | See [build environment setup](https://docs.qmk.fm/build_environment_setup.html) then the [make instructions](https://docs.qmk.fm/make_instructions.html) for more information. | 18 | See [build environment setup](https://docs.qmk.fm/build_environment_setup.html) then the [make instructions](https://docs.qmk.fm/make_instructions.html) for more information. |
19 | 19 | ||
diff --git a/keyboards/levinson/rules.mk b/keyboards/levinson/rules.mk index 7b7224fd4..ba0f5b91d 100644 --- a/keyboards/levinson/rules.mk +++ b/keyboards/levinson/rules.mk | |||
@@ -75,4 +75,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
75 | 75 | ||
76 | CUSTOM_MATRIX = yes | 76 | CUSTOM_MATRIX = yes |
77 | 77 | ||
78 | LAYOUTS = ortho_4x12 \ No newline at end of file | 78 | LAYOUTS = ortho_4x12 |
79 | |||
80 | DEFAULT_FOLDER = levinson/rev1 \ No newline at end of file | ||
diff --git a/keyboards/levinson/subproject.mk b/keyboards/levinson/subproject.mk deleted file mode 100644 index 928b1edd0..000000000 --- a/keyboards/levinson/subproject.mk +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | SUBPROJECT_DEFAULT = rev1 | ||