diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-29 23:57:32 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-29 23:57:32 +0100 |
commit | e0ca2d19231c50543a6dc6bcc6335a3f9a84c595 (patch) | |
tree | af4a581ebb6aacb456ea493a16a9934e01b5dcef /src/rules.mk | |
parent | fix(src): Add some default stuff (diff) | |
download | qmk_layout-e0ca2d19231c50543a6dc6bcc6335a3f9a84c595.zip |
feat(src): Make usable
Diffstat (limited to 'src/rules.mk')
-rw-r--r-- | src/rules.mk | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/src/rules.mk b/src/rules.mk index b1c5823..d2018cf 100644 --- a/src/rules.mk +++ b/src/rules.mk @@ -1,22 +1,7 @@ -# Moonlander Layout -# -# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de> -# SPDX-License-Identifier: AGPL-3.0-or-later -# -# This file is part of Moonlander Layout. -# -# You should have received a copy of the License along with this program. -# If not, see <https://www.gnu.org/licenses/agpl.txt>. +CUSTOM_MATRIX = lite -# Set any rules.mk overrides for your specific keymap here. -# See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file -CONSOLE_ENABLE = no -COMMAND_ENABLE = no -TAP_DANCE_ENABLE = yes -SPACE_CADET_ENABLE = no -CAPS_WORD_ENABLE = yes +VPATH += drivers/gpio +SRC += matrix.c mcp23018.c +I2C_DRIVER_REQUIRED = yes -MOUSEKEY_ENABLE = yes - -UNICODE_COMMON = yes -UNICODE_ENABLE = yes +MCU_LDSCRIPT = STM32F303xB |