aboutsummaryrefslogtreecommitdiff
path: root/keyboards/viterbi
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/viterbi')
-rw-r--r--keyboards/viterbi/config.h4
-rw-r--r--keyboards/viterbi/readme.md4
-rw-r--r--keyboards/viterbi/rev1/config.h2
-rw-r--r--keyboards/viterbi/rev1/rules.mk6
-rw-r--r--keyboards/viterbi/rules.mk2
-rw-r--r--keyboards/viterbi/viterbi.h2
6 files changed, 7 insertions, 13 deletions
diff --git a/keyboards/viterbi/config.h b/keyboards/viterbi/config.h
index 55500df79..863722d7d 100644
--- a/keyboards/viterbi/config.h
+++ b/keyboards/viterbi/config.h
@@ -20,8 +20,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
20 20
21#include "config_common.h" 21#include "config_common.h"
22 22
23#ifdef SUBPROJECT_rev1
24 #include "rev1/config.h"
25#endif
26
27#endif // CONFIG_H 23#endif // CONFIG_H
diff --git a/keyboards/viterbi/readme.md b/keyboards/viterbi/readme.md
index bc8451ba3..13f3e6056 100644
--- a/keyboards/viterbi/readme.md
+++ b/keyboards/viterbi/readme.md
@@ -9,12 +9,12 @@ Hardware Availability: [Keebio](https://keeb.io)
9 9
10Make example for this keyboard (after setting up your build environment): 10Make example for this keyboard (after setting up your build environment):
11 11
12 make viterbi-rev1-default 12 make viterbi/rev1:default
13 13
14 14
15Example of flashing this keyboard: 15Example of flashing this keyboard:
16 16
17 make viterbi-rev1-default-avrdude 17 make viterbi/rev1:default:avrdude
18 18
19See [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. 19See [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.
20 20
diff --git a/keyboards/viterbi/rev1/config.h b/keyboards/viterbi/rev1/config.h
index d48075198..68ca5f362 100644
--- a/keyboards/viterbi/rev1/config.h
+++ b/keyboards/viterbi/rev1/config.h
@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#ifndef REV1_CONFIG_H 18#ifndef REV1_CONFIG_H
19#define REV1_CONFIG_H 19#define REV1_CONFIG_H
20 20
21#include "../config.h" 21#include "config_common.h"
22 22
23/* USB Device descriptor parameter */ 23/* USB Device descriptor parameter */
24#define VENDOR_ID 0xCEEB 24#define VENDOR_ID 0xCEEB
diff --git a/keyboards/viterbi/rev1/rules.mk b/keyboards/viterbi/rev1/rules.mk
index 80a942d06..f84561674 100644
--- a/keyboards/viterbi/rev1/rules.mk
+++ b/keyboards/viterbi/rev1/rules.mk
@@ -1,5 +1 @@
1BACKLIGHT_ENABLE = no BACKLIGHT_ENABLE = no \ No newline at end of file
2
3ifndef QUANTUM_DIR
4 include ../../../Makefile
5endif
diff --git a/keyboards/viterbi/rules.mk b/keyboards/viterbi/rules.mk
index 3f40ff2f8..8a1b94013 100644
--- a/keyboards/viterbi/rules.mk
+++ b/keyboards/viterbi/rules.mk
@@ -73,3 +73,5 @@ USE_I2C = yes
73SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend 73SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
74 74
75CUSTOM_MATRIX = yes 75CUSTOM_MATRIX = yes
76
77DEFAULT_FOLDER = viterbi/rev1 \ No newline at end of file
diff --git a/keyboards/viterbi/viterbi.h b/keyboards/viterbi/viterbi.h
index d3d0f64eb..347423910 100644
--- a/keyboards/viterbi/viterbi.h
+++ b/keyboards/viterbi/viterbi.h
@@ -1,7 +1,7 @@
1#ifndef VITERBI_H 1#ifndef VITERBI_H
2#define VITERBI_H 2#define VITERBI_H
3 3
4#ifdef SUBPROJECT_rev1 4#ifdef KEYBOARD_viterbi_rev1
5 #include "rev1.h" 5 #include "rev1.h"
6#endif 6#endif
7 7