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 pull request #9 from wb-Joy/gmmk_v2_keyboard
Update from qmk/develop
- Loading branch information
Showing
2,428 changed files
with
49,915 additions
and
7,611 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Automatic Approve | ||
|
||
on: | ||
schedule: | ||
- cron: "*/5 * * * *" | ||
|
||
jobs: | ||
automatic_approve: | ||
runs-on: ubuntu-latest | ||
|
||
if: github.repository == 'qmk/qmk_firmware' | ||
|
||
steps: | ||
- uses: mheap/automatic-approve-action@v1 | ||
with: | ||
token: ${{ secrets.QMK_BOT_TOKEN }} | ||
workflows: "format.yml,lint.yml,unit_test.yml" | ||
dangerous_files: "lib/python/,Makefile,paths.mk,builddefs/" |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Update feature branches after develop merge | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
feature_branch_update: | ||
runs-on: ubuntu-latest | ||
|
||
if: github.repository == 'qmk/qmk_firmware' | ||
|
||
strategy: | ||
matrix: | ||
branch: | ||
- xap | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.QMK_BOT_TOKEN }} | ||
fetch-depth: 0 | ||
|
||
- name: Checkout branch | ||
run: | | ||
git fetch origin develop ${{ matrix.branch }} | ||
git checkout ${{ matrix.branch }} | ||
- name: Update branch from develop | ||
run: | | ||
git config --global user.name "QMK Bot" | ||
git config --global user.email "hello@qmk.fm" | ||
git merge origin/develop | ||
git push origin ${{ matrix.branch }} |
File renamed without changes.
File renamed without changes.
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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Note for new boards -- CTPC and CONVERT_TO_PROTON_C are deprecated terms | ||
# and should not be replicated for new boards. These will be removed from | ||
# documentation as well as existing keymaps in due course. | ||
ifeq ($(strip $(CTPC)), yes) | ||
CONVERT_TO_PROTON_C=yes | ||
endif | ||
ifeq ($(strip $(CONVERT_TO_PROTON_C)), yes) | ||
CONVERT_TO=proton_c | ||
|
||
cpfirmware: ctpc_warning | ||
.INTERMEDIATE: ctpc_warning | ||
ctpc_warning: elf | ||
$(info @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@) | ||
$(info The `CONVERT_TO_PROTON_C` and `CTPC` options are soon to be deprecated.) | ||
$(info Boards should be changed to use `CONVERT_TO=proton_c` instead.) | ||
$(info @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@) | ||
endif | ||
|
||
# TODO: opt in rather than assume everything uses a pro micro | ||
PIN_COMPATIBLE ?= promicro | ||
ifneq ($(CONVERT_TO),) | ||
# glob to search each platfrorm and/or check for valid converter | ||
CONVERTER := $(wildcard $(PLATFORM_PATH)/*/converters/$(PIN_COMPATIBLE)_to_$(CONVERT_TO)/) | ||
ifeq ($(CONVERTER),) | ||
$(call CATASTROPHIC_ERROR,Converting from '$(PIN_COMPATIBLE)' to '$(CONVERT_TO)' not possible!) | ||
endif | ||
|
||
TARGET := $(TARGET)_$(CONVERT_TO) | ||
|
||
# Configure any defaults | ||
OPT_DEFS += -DCONVERT_TO_$(strip $(shell echo $(CONVERT_TO) | tr '[:lower:]' '[:upper:]')) | ||
OPT_DEFS += -DCONVERTER_ENABLED | ||
VPATH += $(CONVERTER) | ||
|
||
# Finally run any converter specific logic | ||
include $(CONVERTER)/converter.mk | ||
endif |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"development_board": { | ||
"promicro": { | ||
"processor": "atmega32u4", | ||
"bootloader": "caterina", | ||
"pin_compatible": "promicro" | ||
}, | ||
"elite_c": { | ||
"processor": "atmega32u4", | ||
"bootloader": "atmel-dfu", | ||
"pin_compatible": "promicro" | ||
}, | ||
"proton_c": { | ||
"processor": "STM32F303", | ||
"bootloader": "stm32-dfu", | ||
"board": "QMK_PROTON_C", | ||
"pin_compatible": "promicro" | ||
}, | ||
"bluepill": { | ||
"processor": "STM32F103", | ||
"bootloader": "stm32duino", | ||
"board": "STM32_F103_STM32DUINO" | ||
}, | ||
"blackpill_f401": { | ||
"processor": "STM32F401", | ||
"bootloader": "stm32-dfu", | ||
"board": "BLACKPILL_STM32_F401" | ||
}, | ||
"blackpill_f411": { | ||
"processor": "STM32F411", | ||
"bootloader": "stm32-dfu", | ||
"board": "BLACKPILL_STM32_F411" | ||
} | ||
} | ||
} |
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.