aboutsummaryrefslogtreecommitdiff
path: root/keyboards/nyquist
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/nyquist')
-rw-r--r--keyboards/nyquist/config.h2
-rw-r--r--keyboards/nyquist/keymaps/default/config.h2
-rw-r--r--keyboards/nyquist/keymaps/hexwire/config.h2
-rw-r--r--keyboards/nyquist/nyquist.h4
-rw-r--r--keyboards/nyquist/readme.md4
-rw-r--r--keyboards/nyquist/rev1/rev1.c2
-rw-r--r--keyboards/nyquist/rev1/rev1.h2
-rw-r--r--keyboards/nyquist/rules.mk4
-rw-r--r--keyboards/nyquist/subproject.mk1
9 files changed, 12 insertions, 11 deletions
diff --git a/keyboards/nyquist/config.h b/keyboards/nyquist/config.h
index 5e3dc9188..863722d7d 100644
--- a/keyboards/nyquist/config.h
+++ b/keyboards/nyquist/config.h
@@ -20,6 +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#include QMK_SUBPROJECT_CONFIG_H
24
25#endif // CONFIG_H 23#endif // CONFIG_H
diff --git a/keyboards/nyquist/keymaps/default/config.h b/keyboards/nyquist/keymaps/default/config.h
index 072d4a7ce..a6246262e 100644
--- a/keyboards/nyquist/keymaps/default/config.h
+++ b/keyboards/nyquist/keymaps/default/config.h
@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#ifndef CONFIG_USER_H 18#ifndef CONFIG_USER_H
19#define CONFIG_USER_H 19#define CONFIG_USER_H
20 20
21#include "../../config.h" 21#include "config_common.h"
22 22
23/* Use I2C or Serial, not both */ 23/* Use I2C or Serial, not both */
24 24
diff --git a/keyboards/nyquist/keymaps/hexwire/config.h b/keyboards/nyquist/keymaps/hexwire/config.h
index 23abba0aa..4a5b7513a 100644
--- a/keyboards/nyquist/keymaps/hexwire/config.h
+++ b/keyboards/nyquist/keymaps/hexwire/config.h
@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#ifndef CONFIG_USER_H 18#ifndef CONFIG_USER_H
19#define CONFIG_USER_H 19#define CONFIG_USER_H
20 20
21#include "../../config.h" 21#include "config_common.h"
22 22
23/* Use I2C or Serial, not both */ 23/* Use I2C or Serial, not both */
24 24
diff --git a/keyboards/nyquist/nyquist.h b/keyboards/nyquist/nyquist.h
index dcc2a4ffd..8d031b050 100644
--- a/keyboards/nyquist/nyquist.h
+++ b/keyboards/nyquist/nyquist.h
@@ -1,7 +1,9 @@
1#ifndef NYQUIST_H 1#ifndef NYQUIST_H
2#define NYQUIST_H 2#define NYQUIST_H
3 3
4#include QMK_SUBPROJECT_H 4#ifdef KEYBOARD_nyquist_rev1
5 #include "rev1.h"
6#endif
5 7
6#include "quantum.h" 8#include "quantum.h"
7 9
diff --git a/keyboards/nyquist/readme.md b/keyboards/nyquist/readme.md
index 16debb987..1b417a658 100644
--- a/keyboards/nyquist/readme.md
+++ b/keyboards/nyquist/readme.md
@@ -9,11 +9,11 @@ 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 nyquist-rev1-default 12 make nyquist/rev1:default
13 13
14Example of flashing this keyboard: 14Example of flashing this keyboard:
15 15
16 make nyquist-rev1-default-avrdude 16 make nyquist/rev1:default:avrdude
17 17
18See [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. 18See [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/nyquist/rev1/rev1.c b/keyboards/nyquist/rev1/rev1.c
index 7b3228fa6..99bd781d5 100644
--- a/keyboards/nyquist/rev1/rev1.c
+++ b/keyboards/nyquist/rev1/rev1.c
@@ -1,4 +1,4 @@
1#include QMK_SUBPROJECT_H 1#include "rev1.h"
2 2
3#ifdef AUDIO_ENABLE 3#ifdef AUDIO_ENABLE
4 float tone_startup[][2] = SONG(STARTUP_SOUND); 4 float tone_startup[][2] = SONG(STARTUP_SOUND);
diff --git a/keyboards/nyquist/rev1/rev1.h b/keyboards/nyquist/rev1/rev1.h
index cf9bf8020..eeaf15272 100644
--- a/keyboards/nyquist/rev1/rev1.h
+++ b/keyboards/nyquist/rev1/rev1.h
@@ -1,7 +1,7 @@
1#ifndef REV1_H 1#ifndef REV1_H
2#define REV1_H 2#define REV1_H
3 3
4#include QMK_KEYBOARD_H 4#include "nyquist.h"
5 5
6//void promicro_bootloader_jmp(bool program); 6//void promicro_bootloader_jmp(bool program);
7#include "quantum.h" 7#include "quantum.h"
diff --git a/keyboards/nyquist/rules.mk b/keyboards/nyquist/rules.mk
index 07cdba4bf..f2bc59cc5 100644
--- a/keyboards/nyquist/rules.mk
+++ b/keyboards/nyquist/rules.mk
@@ -74,4 +74,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
74 74
75CUSTOM_MATRIX = yes 75CUSTOM_MATRIX = yes
76 76
77LAYOUTS = ortho_5x12 \ No newline at end of file 77LAYOUTS = ortho_5x12
78
79DEFAULT_FOLDER = nyquist/rev1 \ No newline at end of file
diff --git a/keyboards/nyquist/subproject.mk b/keyboards/nyquist/subproject.mk
deleted file mode 100644
index 928b1edd0..000000000
--- a/keyboards/nyquist/subproject.mk
+++ /dev/null
@@ -1 +0,0 @@
1SUBPROJECT_DEFAULT = rev1