mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 11:29:51 +03:00
x9e with horus bt module (#5214)
* Basics to allow Horus BT module on X9E * wip * Temporary hack to prevent X9E to enter reset loop * The wait game starts :) * Temporary compil fixes * More sensibles defines
This commit is contained in:
parent
06f5e408ee
commit
6f3577c9a5
9 changed files with 37 additions and 17 deletions
|
@ -8,7 +8,7 @@ set -x
|
|||
: ${CORES:=2}
|
||||
# Default build treats warnings as errors, set -Wno-error to override, e.g.: commit-tests.sh -Wno-error
|
||||
: ${WERROR:=1}
|
||||
# A board name to build for, or ALL
|
||||
# A board name to build for, or ALL
|
||||
: ${FLAVOR:=ALL}
|
||||
|
||||
for i in "$@"
|
||||
|
@ -135,6 +135,15 @@ if [[ " X7 ALL " =~ " ${FLAVOR} " ]] ; then
|
|||
make -j${CORES} gtests ; ./gtests ${TEST_OPTIONS}
|
||||
fi
|
||||
|
||||
if [[ " X7S ALL " =~ " ${FLAVOR} " ]] ; then
|
||||
# OpenTX on X7S
|
||||
rm -rf *
|
||||
cmake ${COMMON_OPTIONS} -DPCB=X7S -DHELI=YES -DLUA=YES -DGVARS=YES ${SRCDIR}
|
||||
make -j${CORES} ${FIRMARE_TARGET}
|
||||
make -j${CORES} simu
|
||||
make -j${CORES} gtests ; ./gtests ${TEST_OPTIONS}
|
||||
fi
|
||||
|
||||
if [[ " X9D X9 ALL " =~ " ${FLAVOR} " ]] ; then
|
||||
# OpenTX on X9D
|
||||
rm -rf *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue