diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-18 21:21:28 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-18 21:40:59 +0100 |
commit | 0435e762507e5513dec6d709b382d3c13b699e0c (patch) | |
tree | 0d87cf41f0c775f259bf874454d5dca753d47da4 /stmhal/boards/STM32F4DISC | |
parent | 03ec6e4d018debac8e6f3460cd6ddc78696211f1 (diff) | |
download | micropython-0435e762507e5513dec6d709b382d3c13b699e0c.tar.gz micropython-0435e762507e5513dec6d709b382d3c13b699e0c.zip |
stmhal: Make ld and af files configurable within Makefile.
Each board now needs an mpconfigboard.mk file which defines AF_FILE and
LD_FILE.
Also moved stm32f405.ld to boards/ directory to keep things organised.
Diffstat (limited to 'stmhal/boards/STM32F4DISC')
-rw-r--r-- | stmhal/boards/STM32F4DISC/mpconfigboard.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stmhal/boards/STM32F4DISC/mpconfigboard.mk b/stmhal/boards/STM32F4DISC/mpconfigboard.mk new file mode 100644 index 0000000000..3c2bdab98b --- /dev/null +++ b/stmhal/boards/STM32F4DISC/mpconfigboard.mk @@ -0,0 +1,2 @@ +AF_FILE = boards/stm32f405_af.csv +LD_FILE = boards/stm32f405.ld |