summaryrefslogtreecommitdiff
path: root/platforms/chibios/QMK_PROTON_C/board/board.mk
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-12-03 13:04:28 +1100
committerGitHub <noreply@github.com>2020-12-03 13:04:28 +1100
commit87291437bd5afccb44677db3ebcf0c284128e990 (patch)
treea7817c2b282c39fadb067d7e01fbacfe84a73601 /platforms/chibios/QMK_PROTON_C/board/board.mk
parent777a30cb423e0636431dae0b8578ef5e962bac30 (diff)
Add board specific to Proton-C, with usual defaults turned on. (#10976)
- Set all other ChibiOS defaults to 'off', when not targeting Proton-C - Modified all existing F303 boards to point at the QMK_PROTON_C to ensure repeatable binary output - Modified version.h generation so that SKIP_VERSION=yes generates the same output
Diffstat (limited to 'platforms/chibios/QMK_PROTON_C/board/board.mk')
-rw-r--r--platforms/chibios/QMK_PROTON_C/board/board.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/platforms/chibios/QMK_PROTON_C/board/board.mk b/platforms/chibios/QMK_PROTON_C/board/board.mk
new file mode 100644
index 0000000000..f891e65247
--- /dev/null
+++ b/platforms/chibios/QMK_PROTON_C/board/board.mk
@@ -0,0 +1,9 @@
+# List of all the board related files.
+BOARDSRC = $(CHIBIOS)/os/hal/boards/ST_STM32F3_DISCOVERY/board.c
+
+# Required include directories
+BOARDINC = $(CHIBIOS)/os/hal/boards/ST_STM32F3_DISCOVERY
+
+# Shared variables
+ALLCSRC += $(BOARDSRC)
+ALLINC += $(BOARDINC)