diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-01-23 20:45:52 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-01-23 20:45:52 -0500 |
commit | 24f2698fba0055128eb90fbde793e3c84900df69 (patch) | |
tree | 92bc3dcd1e7fb4635b4ad64b2bfca1099711035f /quantum/template/Makefile | |
parent | 6a55a5fe484f15f37e790e276cb77ae06b534358 (diff) |
changes to the template
Diffstat (limited to 'quantum/template/Makefile')
-rw-r--r-- | quantum/template/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/template/Makefile b/quantum/template/Makefile index 99c97a62cf..2efa691380 100644 --- a/quantum/template/Makefile +++ b/quantum/template/Makefile @@ -53,9 +53,9 @@ TARGET_DIR = . SRC = %KEYBOARD%.c ifdef KEYMAP - SRC := keymaps/keymap_$(KEYMAP).c $(SRC) + SRC := keymaps/$(KEYMAP).c $(SRC) else - SRC := keymaps/keymap_default.c $(SRC) + SRC := keymaps/default.c $(SRC) endif CONFIG_H = config.h @@ -107,7 +107,7 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT # Atmel DFU loader 4096 # LUFA bootloader 4096 # USBaspLoader 2048 -OPT_DEFS += -DBOOTLOADER_SIZE=4096 +OPT_DEFS += -DBOOTLOADER_SIZE=512 # Build Options |