diff options
Diffstat (limited to 'keyboards/deltasplit75')
| -rw-r--r-- | keyboards/deltasplit75/config.h | 6 | ||||
| -rw-r--r-- | keyboards/deltasplit75/deltasplit75.h | 7 | ||||
| -rw-r--r-- | keyboards/deltasplit75/readme.md | 2 | ||||
| -rw-r--r-- | keyboards/deltasplit75/rules.mk | 32 | ||||
| -rw-r--r-- | keyboards/deltasplit75/subproject.mk | 1 | ||||
| -rw-r--r-- | keyboards/deltasplit75/v2/config.h | 4 | ||||
| -rw-r--r-- | keyboards/deltasplit75/v2/rules.mk | 6 |
7 files changed, 22 insertions, 36 deletions
diff --git a/keyboards/deltasplit75/config.h b/keyboards/deltasplit75/config.h index 89d328be6..8a2fbb3b2 100644 --- a/keyboards/deltasplit75/config.h +++ b/keyboards/deltasplit75/config.h | |||
| @@ -20,10 +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_protosplit | ||
| 24 | #include "protosplit/config.h" | ||
| 25 | #endif | ||
| 26 | #ifdef SUBPROJECT_v2 | ||
| 27 | #include "v2/config.h" | ||
| 28 | #endif | ||
| 29 | #endif | 23 | #endif |
diff --git a/keyboards/deltasplit75/deltasplit75.h b/keyboards/deltasplit75/deltasplit75.h index 9db16c78c..79d018c91 100644 --- a/keyboards/deltasplit75/deltasplit75.h +++ b/keyboards/deltasplit75/deltasplit75.h | |||
| @@ -1,12 +1,7 @@ | |||
| 1 | #ifndef DELTASPLIT75_H | 1 | #ifndef DELTASPLIT75_H |
| 2 | #define DELTASPLIT75_H | 2 | #define DELTASPLIT75_H |
| 3 | 3 | ||
| 4 | #ifdef SUBPROJECT_v2 | 4 | #include "v2.h" |
| 5 | #include "v2.h" | ||
| 6 | #endif | ||
| 7 | #ifdef SUBPROJECT_protosplit | ||
| 8 | #include "protosplit.h" | ||
| 9 | #endif | ||
| 10 | 5 | ||
| 11 | #include "quantum.h" | 6 | #include "quantum.h" |
| 12 | 7 | ||
diff --git a/keyboards/deltasplit75/readme.md b/keyboards/deltasplit75/readme.md index a1e35e337..f911f7871 100644 --- a/keyboards/deltasplit75/readme.md +++ b/keyboards/deltasplit75/readme.md | |||
| @@ -9,7 +9,7 @@ Hardware Availability: Group Buy | |||
| 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 deltasplit75-v2-default | 12 | make deltasplit75/v2:default |
| 13 | 13 | ||
| 14 | 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. | 14 | 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. |
| 15 | 15 | ||
diff --git a/keyboards/deltasplit75/rules.mk b/keyboards/deltasplit75/rules.mk index 1aee5313c..e345d61f5 100644 --- a/keyboards/deltasplit75/rules.mk +++ b/keyboards/deltasplit75/rules.mk | |||
| @@ -55,21 +55,23 @@ OPT_DEFS += -DBOOTLOADER_SIZE=4096 | |||
| 55 | # change to "no" to disable the options, or define them in the Makefile in | 55 | # change to "no" to disable the options, or define them in the Makefile in |
| 56 | # the appropriate keymap folder that will get included automatically | 56 | # the appropriate keymap folder that will get included automatically |
| 57 | # | 57 | # |
| 58 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | 58 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 59 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | 59 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
| 60 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | 60 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 61 | CONSOLE_ENABLE ?= no # Console for debug(+400) | 61 | CONSOLE_ENABLE = no # Console for debug(+400) |
| 62 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 62 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 63 | NKRO_ENABLE ?= no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 63 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 64 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 64 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 65 | MIDI_ENABLE ?= no # MIDI controls | 65 | MIDI_ENABLE = no # MIDI controls |
| 66 | AUDIO_ENABLE ?= no # Audio output on port C6 | 66 | AUDIO_ENABLE = no # Audio output on port C6 |
| 67 | UNICODE_ENABLE ?= no # Unicode | 67 | UNICODE_ENABLE = no # Unicode |
| 68 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 68 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 69 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 69 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
| 70 | SUBPROJECT_rev1 ?= yes | 70 | SUBPROJECT_rev1 = yes |
| 71 | USE_I2C ?= yes | 71 | USE_I2C = yes |
| 72 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 72 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 73 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 73 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 74 | 74 | ||
| 75 | CUSTOM_MATRIX = yes | 75 | CUSTOM_MATRIX = yes |
| 76 | |||
| 77 | DEFAULT_FOLDER = deltasplit75/v2 \ No newline at end of file | ||
diff --git a/keyboards/deltasplit75/subproject.mk b/keyboards/deltasplit75/subproject.mk deleted file mode 100644 index 298067e5d..000000000 --- a/keyboards/deltasplit75/subproject.mk +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | SUBPROJECT_DEFAULT = v2 | ||
diff --git a/keyboards/deltasplit75/v2/config.h b/keyboards/deltasplit75/v2/config.h index 0f4b806e2..b677d09aa 100644 --- a/keyboards/deltasplit75/v2/config.h +++ b/keyboards/deltasplit75/v2/config.h | |||
| @@ -15,8 +15,8 @@ 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/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #ifndef CONFIG_H | 18 | #ifndef CONFIG_V2_H |
| 19 | #define CONFIG_H | 19 | #define CONFIG_V2_H |
| 20 | 20 | ||
| 21 | #include "config_common.h" | 21 | #include "config_common.h" |
| 22 | 22 | ||
diff --git a/keyboards/deltasplit75/v2/rules.mk b/keyboards/deltasplit75/v2/rules.mk index 80a942d06..f84561674 100644 --- a/keyboards/deltasplit75/v2/rules.mk +++ b/keyboards/deltasplit75/v2/rules.mk | |||
| @@ -1,5 +1 @@ | |||
| 1 | BACKLIGHT_ENABLE = no | BACKLIGHT_ENABLE = no \ No newline at end of file | |
| 2 | |||
| 3 | ifndef QUANTUM_DIR | ||
| 4 | include ../../../Makefile | ||
| 5 | endif | ||
