diff options
author | Drashna Jaelre <drashna@live.com> | 2021-08-12 13:03:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 13:03:40 -0700 |
commit | 477365912de93ad5d5b55c27f7861ad254c275b4 (patch) | |
tree | 3682c442857d55c9ab810ab3f06245e4eef3612e | |
parent | 799c2bdfa38db28199efcd17cd879d06f0fd1bb7 (diff) | |
download | qmk_firmware-477365912de93ad5d5b55c27f7861ad254c275b4.tar.gz qmk_firmware-477365912de93ad5d5b55c27f7861ad254c275b4.zip |
Fix some additional bootmagic settings (#13979)
-rw-r--r-- | docs/ja/feature_bootmagic.md | 2 | ||||
-rw-r--r-- | keyboards/m65/rev1/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/spaceman/pancake/rev2/rules.mk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/ja/feature_bootmagic.md b/docs/ja/feature_bootmagic.md index 20a93d5c4..2ad6fc853 100644 --- a/docs/ja/feature_bootmagic.md +++ b/docs/ja/feature_bootmagic.md | |||
@@ -16,7 +16,7 @@ | |||
16 | 一部のキーボードでは、ブートマジックはデフォルトで無効になっています。その場合、`rules.mk` 内で以下のように明示的に有効にする必要があります: | 16 | 一部のキーボードでは、ブートマジックはデフォルトで無効になっています。その場合、`rules.mk` 内で以下のように明示的に有効にする必要があります: |
17 | 17 | ||
18 | ```make | 18 | ```make |
19 | BOOTMAGIC_ENABLE = full | 19 | BOOTMAGIC_ENABLE = yes |
20 | ``` | 20 | ``` |
21 | 21 | ||
22 | ?> `full` の代わりに `yes` が使われていることがあるかもしれませんが、これは問題ありません。ただし、`yes` は非推奨で、理想的には `full` (あるいは`lite`) が使われるべきです。 | 22 | ?> `full` の代わりに `yes` が使われていることがあるかもしれませんが、これは問題ありません。ただし、`yes` は非推奨で、理想的には `full` (あるいは`lite`) が使われるべきです。 |
diff --git a/keyboards/m65/rev1/rules.mk b/keyboards/m65/rev1/rules.mk index 00f4b5d35..575048f2b 100644 --- a/keyboards/m65/rev1/rules.mk +++ b/keyboards/m65/rev1/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = stm32duino | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = yes # Console for debug | 13 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/spaceman/pancake/rev2/rules.mk b/keyboards/spaceman/pancake/rev2/rules.mk index 5b5ccc369..a291f9ee5 100644 --- a/keyboards/spaceman/pancake/rev2/rules.mk +++ b/keyboards/spaceman/pancake/rev2/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = no # Mouse keys | 11 | MOUSEKEY_ENABLE = no # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = yes # Console for debug | 13 | CONSOLE_ENABLE = yes # Console for debug |