Browse Source
Merge pull request #7951 from erstec/erstec-project-files-update
Update of project files
master
Paweł Spychalski
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
29 additions and
5 deletions
-
.gitignore
-
board/f4fc.cfg
-
board/f7fc.cfg
-
board/h7fc.cfg
-
install-toolchain.sh
|
|
@ -19,6 +19,8 @@ cov-int* |
|
|
|
/patches/ |
|
|
|
/tools/ |
|
|
|
/downloads/ |
|
|
|
/debug/ |
|
|
|
/release/ |
|
|
|
|
|
|
|
# script-generated files |
|
|
|
docs/Manual.pdf |
|
|
|
|
|
@ -0,0 +1,9 @@ |
|
|
|
# Boardconfig for ST-Link/V2 with F4-FC |
|
|
|
|
|
|
|
source [find interface/stlink.cfg] |
|
|
|
|
|
|
|
transport select hla_swd |
|
|
|
|
|
|
|
source [find target/stm32f4x.cfg] |
|
|
|
|
|
|
|
reset_config none separate |
|
|
@ -0,0 +1,9 @@ |
|
|
|
# Boardconfig for ST-Link/V2 with F7-FC |
|
|
|
|
|
|
|
source [find interface/stlink.cfg] |
|
|
|
|
|
|
|
transport select hla_swd |
|
|
|
|
|
|
|
source [find target/stm32f7x.cfg] |
|
|
|
|
|
|
|
reset_config none separate |
|
|
@ -0,0 +1,9 @@ |
|
|
|
# Boardconfig for ST-Link/V2 with H7-FC |
|
|
|
|
|
|
|
source [find interface/stlink.cfg] |
|
|
|
|
|
|
|
transport select hla_swd |
|
|
|
|
|
|
|
source [find target/stm32h7x_dual_bank.cfg] |
|
|
|
|
|
|
|
reset_config none separate |
|
|
@ -1,5 +0,0 @@ |
|
|
|
#!/bin/bash |
|
|
|
|
|
|
|
if [ ! -d $PWD/gcc-arm-none-eabi-8-2018-q4-major/bin ] ; then |
|
|
|
curl --retry 10 --retry-max-time 120 -L "https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/8-2018q4/gcc-arm-none-eabi-8-2018-q4-major-linux.tar.bz2" | tar xfj - |
|
|
|
fi |