summaryrefslogtreecommitdiff
path: root/platforms/chibios/boards/BLACKPILL_STM32_F401/board
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-08-18 00:04:15 +0100
committerGitHub <noreply@github.com>2021-08-18 00:04:15 +0100
commit4c9003b1779b7b404e3bb0ce103db683bd92bccb (patch)
tree7170b435e4456cb8ffc04b6b5abdd3e00cb63d15 /platforms/chibios/boards/BLACKPILL_STM32_F401/board
parent4c4f632378867b5c3e61461333974f59170893c3 (diff)
Move chibios board files to allow tmk_core platform migration (#13777)
* Move board files * fix up after rebase
Diffstat (limited to 'platforms/chibios/boards/BLACKPILL_STM32_F401/board')
-rw-r--r--platforms/chibios/boards/BLACKPILL_STM32_F401/board/board.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/platforms/chibios/boards/BLACKPILL_STM32_F401/board/board.mk b/platforms/chibios/boards/BLACKPILL_STM32_F401/board/board.mk
new file mode 100644
index 0000000000..fddf7dace4
--- /dev/null
+++ b/platforms/chibios/boards/BLACKPILL_STM32_F401/board/board.mk
@@ -0,0 +1,9 @@
+# List of all the board related files.
+BOARDSRC = $(CHIBIOS)/os/hal/boards/ST_STM32F401C_DISCOVERY/board.c
+
+# Required include directories
+BOARDINC = $(CHIBIOS)/os/hal/boards/ST_STM32F401C_DISCOVERY
+
+# Shared variables
+ALLCSRC += $(BOARDSRC)
+ALLINC += $(BOARDINC)