forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'qmk/develop' into develop
* qmk/develop: (138 commits) Revert 14083 && 14144 (qmk#14150) [Keyboard] Update Technik ortholinear RGB matrix points (qmk#14124) Fix merge artifacts (qmk#14146) Align some quantum sub-directories (qmk#14134) [Keyboard] Add yoichiro/lunakey_macro (qmk#13849) Short term bodge for firmware size bloat (qmk#14144) add wait_cpuclock() macro for AVR and CPU_CLOCK macro (qmk#12755) Tidy up quantum.c now some of tmk_core has been merged (qmk#14083) [Keyboard] Add serneity65 (qmk#13889) fix (qmk#14142) [Keyboard] Fix keyprez qmk configurator (qmk#14119) [Keyboard] Add QEZ keyboard (qmk#14131) [Keyboard] Update Technik staggered RGB matrix points (qmk#14125) [Keymap] Fixed GMMK Pro -> stickandgum keymap readme.md (qmk#14123) [Keyboard] Update info.json for ocean/gin_v2 (qmk#14121) [Keymap] Drashna keymap fixups (qmk#14140) [Keyboard] Fix default keymap for quark squared keyboard (qmk#14139) [Core] Refactor OLED to allow easy addition of other types (qmk#13454) Remove more unused files (qmk#14135) Fix Mouse Shared EP functionality (qmk#14136) ...
- Loading branch information
Showing
2,990 changed files
with
31,498 additions
and
11,826 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,6 @@ | |
api_data/v1 | ||
doxygen/ | ||
quantum/version.h | ||
!quantum/tools/eeprom_reset.hex | ||
*.bin | ||
*.eep | ||
*.hex | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,17 @@ | ||
# Look for a json keymap file | ||
ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_5)/keymap.json)","") | ||
KEYMAP_C := $(KEYMAP_OUTPUT)/keymap.c | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_5)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_5) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_4)/keymap.json)","") | ||
KEYMAP_C := $(KEYMAP_OUTPUT)/keymap.c | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_4)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_4) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_3)/keymap.json)","") | ||
KEYMAP_C := $(KEYMAP_OUTPUT)/keymap.c | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_3)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_3) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_2)/keymap.json)","") | ||
KEYMAP_C := $(KEYMAP_OUTPUT)/keymap.c | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_2)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_2) | ||
else ifneq ("$(wildcard $(MAIN_KEYMAP_PATH_1)/keymap.json)","") | ||
KEYMAP_C := $(KEYMAP_OUTPUT)/keymap.c | ||
KEYMAP_JSON := $(MAIN_KEYMAP_PATH_1)/keymap.json | ||
KEYMAP_PATH := $(MAIN_KEYMAP_PATH_1) | ||
endif | ||
|
||
# Load the keymap-level rules.mk if exists | ||
ifneq ("$(wildcard $(KEYMAP_PATH))", "") | ||
-include $(KEYMAP_PATH)/rules.mk | ||
endif | ||
|
||
# Generate the keymap.c | ||
$(KEYMAP_C): $(KEYMAP_JSON) | ||
$(QMK_BIN) json2c --quiet --output $(KEYMAP_C) $(KEYMAP_JSON) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.