mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-12 19:10:27 +03:00
Project files updated (debug ready)
This commit is contained in:
parent
0fd1c395a7
commit
d0cae06594
5 changed files with 31 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -19,6 +19,8 @@ cov-int*
|
||||||
/patches/
|
/patches/
|
||||||
/tools/
|
/tools/
|
||||||
/downloads/
|
/downloads/
|
||||||
|
/debug/
|
||||||
|
/release/
|
||||||
|
|
||||||
# script-generated files
|
# script-generated files
|
||||||
docs/Manual.pdf
|
docs/Manual.pdf
|
||||||
|
|
9
board/f4fc.cfg
Normal file
9
board/f4fc.cfg
Normal file
|
@ -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
|
9
board/f7fc.cfg
Normal file
9
board/f7fc.cfg
Normal file
|
@ -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
|
9
board/h7fc.cfg
Normal file
9
board/h7fc.cfg
Normal file
|
@ -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 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ ! -d $PWD/gcc-arm-none-eabi-8-2018-q4-major/bin ] ; then
|
if [ ! -d $PWD/tools/gcc-arm-none-eabi-10-2020-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 -
|
curl --retry 10 --retry-max-time 120 -L "https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2" | tar xfj - -C $PWD/tools/
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue