diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2020-11-16 04:31:23 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-15 11:31:23 -0800 |
commit | 81a17f4270d48e5377ca07d5ed5de60a4a7d0a70 (patch) | |
tree | 24de286a884d56d37146fb81784a8c42fbe7c7e8 /keyboards/handwired/symmetric70_proto/rules.mk | |
parent | bb9fbd66e9cbf2099c11c474188efb23c8a1b7fa (diff) | |
download | qmk_firmware-81a17f4270d48e5377ca07d5ed5de60a4a7d0a70.tar.gz qmk_firmware-81a17f4270d48e5377ca07d5ed5de60a4a7d0a70.zip |
[Keyboard] add Symmetric70 keyboard prototype (#10780)
* proto_symmetric70 作成中
74hc157 無しで 片手動作は、右と左でそれぞれうごいた。
* add 74HC157 support
* add keymaps/default_mac
* update proto_symmetric70/keymaps/default_mac/readme.md
* update 74HC157 support
* add keyboards/handwired/proto_symmetric70/matrix.c.patch
* update keyboards/handwired/proto_symmetric70/readme.md
* rename proto_symmetric70 to symmetric70_proto
* Update keyboards/handwired/symmetric70_proto/config.h
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/handwired/symmetric70_proto/symmetric70_proto.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/handwired/symmetric70_proto/readme.md
Co-authored-by: Ryan <fauxpark@gmail.com>
* update readme.md
* update keyboards/handwired/symmetric70_proto/config.h
* remove keyboards/handwired/symmetric70_proto/matrix.c.patch
* Update keyboards/handwired/symmetric70_proto/matrix.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/handwired/symmetric70_proto/matrix.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
* use KC_NO, _______
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/handwired/symmetric70_proto/rules.mk')
-rw-r--r-- | keyboards/handwired/symmetric70_proto/rules.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/keyboards/handwired/symmetric70_proto/rules.mk b/keyboards/handwired/symmetric70_proto/rules.mk new file mode 100644 index 0000000000..494dc6fbaf --- /dev/null +++ b/keyboards/handwired/symmetric70_proto/rules.mk @@ -0,0 +1,27 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +BOOTLOADER = caterina + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration +MOUSEKEY_ENABLE = no # Mouse keys +EXTRAKEY_ENABLE = no # Audio control and System control +CONSOLE_ENABLE = no # Console for debug +COMMAND_ENABLE = no # Commands for debug and configuration +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +NKRO_ENABLE = no # USB Nkey Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +BLUETOOTH_ENABLE = no # Enable Bluetooth +AUDIO_ENABLE = no # Audio output + +CUSTOM_MATRIX = lite +SRC += matrix.c + +## CONSOLE_ENABLE = yes # matrix dump |