mirror of
https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
synced 2025-02-04 21:38:14 +00:00
Merge branch 'master' of https://github.com/pascallanger/DIY-Multiprotocol-TX-Module
This commit is contained in:
commit
a15371d989
194
.github/workflows/main.yml
vendored
194
.github/workflows/main.yml
vendored
@ -1,6 +1,6 @@
|
|||||||
# Workflow for testing MULTI-Module firmware builds
|
# Workflow for testing MULTI-Module firmware builds
|
||||||
|
|
||||||
name: CI
|
name: MULTI Test, Build, Deploy, Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Trigger the workflow on pushes, except those that are tagged (avoids double-testing releases)
|
# Trigger the workflow on pushes, except those that are tagged (avoids double-testing releases)
|
||||||
@ -32,7 +32,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
# Configure the board matrix
|
# Configure the board matrix
|
||||||
@ -51,21 +51,21 @@ jobs:
|
|||||||
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=none"
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=none"
|
||||||
name: "STM32F103 (128KB)"
|
name: "STM32F103 (128KB)"
|
||||||
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=native"
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=native"
|
||||||
name: "STM32F103 (128KB, USB Debugging)"
|
name: "STM32F103 (128KB, USB Debug)"
|
||||||
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=ftdi"
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=ftdi"
|
||||||
name: "STM32F103 (128KB, Serial Debugging)"
|
name: "STM32F103 (128KB, Serial Debug)"
|
||||||
- board: "multi4in1:STM32F1:multi5in1t18int"
|
- board: "multi4in1:STM32F1:multi5in1t18int"
|
||||||
name: "T18 5-in-1 (128KB)"
|
name: "T18 5-in-1 (128KB)"
|
||||||
|
|
||||||
# Set the build name using the friendly board name
|
# Set the build name using the friendly board name
|
||||||
name: ${{ matrix.name }}
|
name: "[Test] ${{ matrix.name }}"
|
||||||
|
|
||||||
# Set the environment variables
|
# Set the environment variables
|
||||||
env:
|
env:
|
||||||
BOARD: ${{ matrix.board }}
|
BOARD: ${{ matrix.board }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Arduino CLI
|
- name: Install Arduino CLI
|
||||||
uses: arduino/setup-arduino-cli@v1.1.2
|
uses: arduino/setup-arduino-cli@v1.1.2
|
||||||
@ -161,23 +161,38 @@ jobs:
|
|||||||
|
|
||||||
- name: Build serial only
|
- name: Build serial only
|
||||||
run: |
|
run: |
|
||||||
|
# Skip the serial-only build for boards where it's too large now
|
||||||
|
if [[ "$BOARD" =~ ":STM32F1:multistm32f103cb:debug_option=none" ]] || [[ "$BOARD" =~ ":STM32F1:multi5in1t18int" ]]; then
|
||||||
|
printf "Not testing serial-only build for $BOARD.";
|
||||||
|
else
|
||||||
source ./buildroot/bin/buildFunctions;
|
source ./buildroot/bin/buildFunctions;
|
||||||
cp ./_Config.h.bak Multiprotocol/_Config.h
|
cp ./_Config.h.bak Multiprotocol/_Config.h
|
||||||
opt_disable ENABLE_PPM;
|
opt_disable ENABLE_PPM;
|
||||||
buildMulti;
|
buildMulti;
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Build PPM only
|
- name: Build PPM only
|
||||||
run: |
|
run: |
|
||||||
|
# Skip the PPM-only build for boards where it's too large now
|
||||||
|
if [[ "$BOARD" =~ ":STM32F1:multistm32f103cb:debug_option=none" ]] || [[ "$BOARD" =~ ":STM32F1:multi5in1t18int" ]]; then
|
||||||
|
printf "Not testing PPM-only build for $BOARD.";
|
||||||
|
else
|
||||||
source ./buildroot/bin/buildFunctions;
|
source ./buildroot/bin/buildFunctions;
|
||||||
cp ./_Config.h.bak Multiprotocol/_Config.h
|
cp ./_Config.h.bak Multiprotocol/_Config.h
|
||||||
opt_disable ENABLE_SERIAL;
|
opt_disable ENABLE_SERIAL;
|
||||||
buildMulti;
|
buildMulti;
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Build each RF module individually
|
- name: Build each RF module individually
|
||||||
run: |
|
run: |
|
||||||
|
# Skip the per-RF module builds for boards which have fixed modules
|
||||||
|
if [[ "$BOARD" =~ ":STM32F1:multi5in1t18int" ]]; then
|
||||||
|
printf "Not testing individual RF module builds for $BOARD.";
|
||||||
|
else
|
||||||
source ./buildroot/bin/buildFunctions;
|
source ./buildroot/bin/buildFunctions;
|
||||||
cp ./_Config.h.bak Multiprotocol/_Config.h;
|
cp ./_Config.h.bak Multiprotocol/_Config.h;
|
||||||
buildEachRFModule;
|
buildEachRFModule;
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Build each protocol individually
|
- name: Build each protocol individually
|
||||||
run: |
|
run: |
|
||||||
@ -185,6 +200,128 @@ jobs:
|
|||||||
cp ./_Config.h.bak Multiprotocol/_Config.h;
|
cp ./_Config.h.bak Multiprotocol/_Config.h;
|
||||||
buildEachProtocol;
|
buildEachProtocol;
|
||||||
|
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# Configure the board matrix
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- board: "multi4in1:avr:multiatmega328p:bootloader=none"
|
||||||
|
name: "ATmega328p"
|
||||||
|
release: "atmega328p"
|
||||||
|
- board: "multi4in1:avr:multiatmega328p:bootloader=optiboot"
|
||||||
|
name: "ATmega328p (Optiboot)"
|
||||||
|
release: "atmega328p-optiboot"
|
||||||
|
- board: "multi4in1:avr:multixmega32d4"
|
||||||
|
name: "OrangeRX"
|
||||||
|
release: "orangerx"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103c8:debug_option=none"
|
||||||
|
name: "STM32F103 CC2500 (64KB)"
|
||||||
|
release: "stm32f103-cc2500-64k"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=none"
|
||||||
|
name: "STM32F103 CC2500 (128KB)"
|
||||||
|
release: "stm32f103-cc2500-128k"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=none"
|
||||||
|
name: "STM32F103 (128KB)"
|
||||||
|
release: "stm32f103-128k-4in1"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=native"
|
||||||
|
name: "STM32F103 (128KB, USB Debug)"
|
||||||
|
release: "stm32f103-128k-usb-debug"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=ftdi"
|
||||||
|
name: "STM32F103 (128KB, Serial Debug)"
|
||||||
|
release: "stm32f103-128k-serial-debug"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=none"
|
||||||
|
name: "STM32F103 5-in-1 (128KB)"
|
||||||
|
release: "stm32f103-128k-5in1"
|
||||||
|
- board: "multi4in1:STM32F1:multistm32f103cb:debug_option=none"
|
||||||
|
name: "T-Lite 5-in-1 (128KB)"
|
||||||
|
release: "tlite-5in1"
|
||||||
|
- board: "multi4in1:STM32F1:multi5in1t18int"
|
||||||
|
name: "T18 5-in-1 (128KB)"
|
||||||
|
release: "t18-5in1"
|
||||||
|
- board: "none"
|
||||||
|
name: "Scripts"
|
||||||
|
release: "scripts"
|
||||||
|
|
||||||
|
# Set the build name using the friendly board name
|
||||||
|
name: "[Build] ${{ matrix.name }}"
|
||||||
|
|
||||||
|
# Set the environment variables
|
||||||
|
env:
|
||||||
|
BOARD: ${{ matrix.board }}
|
||||||
|
RELEASE: ${{ matrix.release }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Arduino CLI
|
||||||
|
uses: arduino/setup-arduino-cli@v1.1.2
|
||||||
|
with:
|
||||||
|
version: "0.32.2"
|
||||||
|
|
||||||
|
- name: Prepare build environment
|
||||||
|
run: |
|
||||||
|
echo "Github Ref: $GITHUB_REF"
|
||||||
|
echo "Event name: ${{ github.event_name }}"
|
||||||
|
echo "Event action: ${{ github.event.action }}"
|
||||||
|
echo "Tag name: ${{ github.event.release.tag_name }}"
|
||||||
|
|
||||||
|
arduino-cli config init --additional-urls https://raw.githubusercontent.com/pascallanger/DIY-Multiprotocol-TX-Module-Boards/master/package_multi_4in1_board_index.json,https://raw.githubusercontent.com/pascallanger/DIY-Multiprotocol-TX-Module-Boards/devel/source/package_multi_4in1_board_devel_index.json
|
||||||
|
arduino-cli core update-index
|
||||||
|
|
||||||
|
if [[ "$BOARD" =~ ":avr:" ]]; then
|
||||||
|
arduino-cli core install arduino:avr;
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$BOARD" =~ "multi4in1-devel:avr" ]]; then
|
||||||
|
arduino-cli core install multi4in1-devel:avr
|
||||||
|
elif [[ "$BOARD" =~ "multi4in1:avr" ]]; then
|
||||||
|
arduino-cli core install multi4in1:avr
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$BOARD" =~ "multi4in1-devel:STM32F1:" ]]; then
|
||||||
|
arduino-cli core install multi4in1-devel:STM32F1
|
||||||
|
elif [[ "$BOARD" =~ "multi4in1:STM32F1:" ]]; then
|
||||||
|
arduino-cli core install multi4in1:STM32F1
|
||||||
|
fi
|
||||||
|
|
||||||
|
chmod +x ${GITHUB_WORKSPACE}/buildroot/bin/*
|
||||||
|
echo "${GITHUB_WORKSPACE}/buildroot/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
|
mkdir ./build
|
||||||
|
mkdir ./binaries
|
||||||
|
|
||||||
|
- name: Configure MULTI-Module firmware options
|
||||||
|
run: |
|
||||||
|
# Load the build functions
|
||||||
|
source ./buildroot/bin/buildFunctions;
|
||||||
|
|
||||||
|
# Get the version
|
||||||
|
getMultiVersion
|
||||||
|
echo "MULTI_VERSION=$(echo $MULTI_VERSION)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Get all the protocols for this board
|
||||||
|
getAllProtocols
|
||||||
|
echo "A7105_PROTOCOLS=$(echo $A7105_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
echo "CC2500_PROTOCOLS=$(echo $CC2500_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
echo "CYRF6936_PROTOCOLS=$(echo $CYRF6936_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
echo "NRF24L01_PROTOCOLS=$(echo $NRF24L01_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
echo "SX1276_PROTOCOLS=$(echo $SX1276_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
echo "CCNRF_INO_PROTOCOLS=$(echo $CCNRF_INO_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
echo "ALL_PROTOCOLS=$(echo $ALL_PROTOCOLS)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Disable CHECK_FOR_BOOTLOADER when not needed
|
||||||
|
if [[ "$BOARD" =~ ":avr:multiatmega328p:bootloader=none" ]]; then
|
||||||
|
opt_disable CHECK_FOR_BOOTLOADER;
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Save default firmware configuration
|
||||||
|
run: |
|
||||||
|
cat Multiprotocol/_Config.h
|
||||||
|
cp Multiprotocol/_Config.h ./_Config.h.bak
|
||||||
|
|
||||||
- name: Build release files
|
- name: Build release files
|
||||||
run: |
|
run: |
|
||||||
source ./buildroot/bin/buildFunctions;
|
source ./buildroot/bin/buildFunctions;
|
||||||
@ -199,16 +336,43 @@ jobs:
|
|||||||
echo "HAVE_FILES=false" >> $GITHUB_ENV
|
echo "HAVE_FILES=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Deploy files to release
|
|
||||||
if: github.event_name == 'release' && github.event.action == 'created' && env.HAVE_FILES == 'true'
|
|
||||||
uses: AButler/upload-release-assets@v2.0
|
|
||||||
with:
|
|
||||||
files: './binaries/*'
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: 'Upload Artifacts'
|
- name: 'Upload Artifacts'
|
||||||
if: env.HAVE_FILES == 'true'
|
if: env.HAVE_FILES == 'true'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact/@v4
|
||||||
|
with:
|
||||||
|
name: multi-${{ matrix.release }}
|
||||||
|
path: ./binaries/
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
name: "[Deploy] Attach Build Artifacts"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [test, build]
|
||||||
|
steps:
|
||||||
|
- name: Combine and upload build artifacts
|
||||||
|
uses: actions/upload-artifact/merge@v4
|
||||||
with:
|
with:
|
||||||
name: multi-test-build
|
name: multi-test-build
|
||||||
path: ./binaries/
|
pattern: multi-*
|
||||||
|
delete-merged: true
|
||||||
|
retention-days: 90
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: "[Release] Publish Files to Release"
|
||||||
|
if: github.event_name == 'release' && github.event.action == 'created'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: deploy
|
||||||
|
steps:
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: multi-test-build
|
||||||
|
path: ./artifacts/
|
||||||
|
|
||||||
|
- name: Display downloaded artifacts
|
||||||
|
run: ls -R ./artifacts/
|
||||||
|
|
||||||
|
- name: Deploy artifacts to release
|
||||||
|
uses: AButler/upload-release-assets@v3.0
|
||||||
|
with:
|
||||||
|
files: './artifacts/*'
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -84,23 +84,30 @@ buildEachRFModule() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildReleaseFiles(){
|
buildReleaseFiles(){
|
||||||
if [[ "$BOARD" =~ ":avr:multixmega32d4" ]]; then
|
if [[ "$RELEASE" == "scripts" ]]; then
|
||||||
|
build_release_scripts;
|
||||||
|
elif [[ "$RELEASE" == "orangerx" ]]; then
|
||||||
build_release_orx;
|
build_release_orx;
|
||||||
build_release_extras;
|
elif [[ "$RELEASE" == "atmega328p" ]]; then
|
||||||
elif [[ "$BOARD" =~ ":avr:multiatmega328p:bootloader=none" ]]; then
|
|
||||||
build_release_avr_noboot;
|
build_release_avr_noboot;
|
||||||
elif [[ "$BOARD" =~ ":avr:multiatmega328p:bootloader=optiboot" ]]; then
|
elif [[ "$RELEASE" == "atmega328p-optiboot" ]]; then
|
||||||
build_release_avr_optiboot;
|
build_release_avr_optiboot;
|
||||||
elif [[ "$BOARD" =~ ":STM32F1:multistm32f103cb:debug_option=none" ]]; then
|
elif [[ "$RELEASE" == "stm32f103-128k-4in1" ]]; then
|
||||||
build_release_stm32f1_no_debug;
|
build_release_stm32f1_4in1_no_debug;
|
||||||
elif [[ "$BOARD" =~ ":STM32F1:multistm32f103cb:debug_option=native" ]]; then
|
elif [[ "$RELEASE" == "stm32f103-128k-usb-debug" ]]; then
|
||||||
build_release_stm32f1_native_debug;
|
build_release_stm32f1_4in1_native_debug;
|
||||||
elif [[ "$BOARD" =~ ":STM32F1:multistm32f103cb:debug_option=ftdi" ]]; then
|
elif [[ "$RELEASE" == "stm32f103-128k-serial-debug" ]]; then
|
||||||
build_release_stm32f1_serial_debug;
|
build_release_stm32f1_4in1_serial_debug;
|
||||||
elif [[ "$BOARD" =~ ":STM32F1:multi5in1t18int" ]]; then
|
elif [[ "$RELEASE" == "stm32f103-cc2500-64k" ]]; then
|
||||||
|
build_release_stm32f1_cc2500_64k;
|
||||||
|
elif [[ "$RELEASE" == "stm32f103-cc2500-128k" ]]; then
|
||||||
|
build_release_stm32f1_cc2500_128k;
|
||||||
|
elif [[ "$RELEASE" == "stm32f103-128k-5in1" ]]; then
|
||||||
|
build_release_stm32f1_5in1;
|
||||||
|
elif [[ "$RELEASE" == "tlite-5in1" ]]; then
|
||||||
|
build_release_stm32f1_tlite;
|
||||||
|
elif [[ "$RELEASE" == "t18-5in1" ]]; then
|
||||||
build_release_stm32f1_t18int;
|
build_release_stm32f1_t18int;
|
||||||
elif [[ "$BOARD" =~ ":STM32F1:multistm32f103c8:debug_option=none" ]]; then
|
|
||||||
build_release_stm32f1_64k;
|
|
||||||
else
|
else
|
||||||
printf "No release files for this board.";
|
printf "No release files for this board.";
|
||||||
fi
|
fi
|
||||||
|
97
buildroot/bin/build_release_stm32f1_4in1_no_debug
Normal file
97
buildroot/bin/build_release_stm32f1_4in1_no_debug
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source ./buildroot/bin/buildFunctions;
|
||||||
|
exitcode=0;
|
||||||
|
|
||||||
|
# Generic 4-in-1 AIR builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-aetr-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_AIR
|
||||||
|
opt_disable ENABLE_PPM;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-aetr-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-taer-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-taer-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-reta-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-reta-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# Generic 4-in-1 SURFACE builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-aetr-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
opt_remove MULTI_AIR;
|
||||||
|
opt_add MULTI_SURFACE;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-aetr-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-taer-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-taer-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-reta-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-reta-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# Generic 4-in-1 LBT/EU builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
opt_remove MULTI_SURFACE;
|
||||||
|
opt_add MULTI_EU;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-aetr-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-taer-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-serial-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-reta-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# 4-in-1 PPM builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-ppm-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_AIR;
|
||||||
|
opt_enable A7105_INSTALLED;
|
||||||
|
opt_enable CYRF6936_INSTALLED;
|
||||||
|
opt_enable NRF24L01_INSTALLED;
|
||||||
|
opt_remove MULTI_EU;
|
||||||
|
opt_enable ENABLE_PPM;
|
||||||
|
opt_disable ENABLE_SERIAL;
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
opt_disable MULTI_STATUS;
|
||||||
|
opt_disable MULTI_TELEMETRY;
|
||||||
|
opt_set NBR_BANKS 5;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-ppm-aetr-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-ppm-taer-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-ppm-taer-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-ppm-reta-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-ppm-reta-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
exit $exitcode;
|
71
buildroot/bin/build_release_stm32f1_5in1
Normal file
71
buildroot/bin/build_release_stm32f1_5in1
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source ./buildroot/bin/buildFunctions;
|
||||||
|
exitcode=0;
|
||||||
|
|
||||||
|
# DIY 5-in-1 AIR builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-aetr-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_AIR;
|
||||||
|
opt_disable ENABLE_PPM;
|
||||||
|
opt_disable CFLIE_NRF24L01_INO
|
||||||
|
opt_enable SX1276_INSTALLED;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-aetr-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-taer-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-taer-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-reta-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-reta-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# DIY 5-in-1 SURFACE builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-aetr-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_SURFACE;
|
||||||
|
opt_remove MULTI_AIR;
|
||||||
|
opt_enable CFLIE_NRF24L01_INO
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-aetr-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-taer-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-taer-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-reta-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-reta-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# DIY 5-in-1 LBT builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_remove MULTI_SURFACE;
|
||||||
|
opt_add MULTI_EU;
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-aetr-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-taer-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-5in1-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-reta-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
exit $exitcode;
|
49
buildroot/bin/build_release_stm32f1_cc2500_128k
Normal file
49
buildroot/bin/build_release_stm32f1_cc2500_128k
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source ./buildroot/bin/buildFunctions;
|
||||||
|
exitcode=0;
|
||||||
|
|
||||||
|
# CC2500-only FCC builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-cc2500-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_disable A7105_INSTALLED;
|
||||||
|
opt_disable CYRF6936_INSTALLED;
|
||||||
|
opt_disable NRF24L01_INSTALLED;
|
||||||
|
opt_disable ENABLE_PPM;
|
||||||
|
opt_disable INVERT_TELEMETRY;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-aetr-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-cc2500-taer-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-taer-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-cc2500-reta-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-reta-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# CC2500-only LBT/EU builds
|
||||||
|
printf "\e[33;1mBuilding mm-stm-cc2500-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
opt_add MULTI_EU;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-aetr-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-cc2500-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-taer-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-stm-cc2500-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-reta-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
exit $exitcode;
|
@ -5,8 +5,8 @@ exitcode=0;
|
|||||||
|
|
||||||
# CC2500-only 64Kb FCC builds
|
# CC2500-only 64Kb FCC builds
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-64-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
printf "\e[33;1mBuilding mm-stm-cc2500-64-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
opt_enable $ALL_PROTOCOLS;
|
#opt_enable $ALL_PROTOCOLS;
|
||||||
opt_disable IKEAANSLUTA_CC2500_INO;
|
#opt_disable IKEAANSLUTA_CC2500_INO;
|
||||||
opt_disable ENABLE_PPM;
|
opt_disable ENABLE_PPM;
|
||||||
opt_disable A7105_INSTALLED;
|
opt_disable A7105_INSTALLED;
|
||||||
opt_disable CYRF6936_INSTALLED;
|
opt_disable CYRF6936_INSTALLED;
|
@ -1,160 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
source ./buildroot/bin/buildFunctions;
|
|
||||||
exitcode=0;
|
|
||||||
|
|
||||||
# Generic 4-in-1 FCC builds
|
|
||||||
printf "\e[33;1mBuilding mm-stm-serial-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_disable ENABLE_PPM;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-aetr-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-serial-taer-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-taer-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-serial-reta-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-reta-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
# Generic 4-in-1 LBT/EU builds
|
|
||||||
printf "\e[33;1mBuilding mm-stm-serial-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace RETA AETR;
|
|
||||||
opt_add MULTI_EU;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-aetr-lbt-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-serial-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-taer-lbt-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-serial-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-serial-reta-lbt-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
# DIY 5-in-1 builds
|
|
||||||
printf "\e[33;1mBuilding mm-stm-5in1-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_remove MULTI_EU;
|
|
||||||
opt_replace RETA AETR;
|
|
||||||
opt_enable SX1276_INSTALLED;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-aetr-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-5in1-taer-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-taer-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-5in1-reta-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-5in1-reta-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
# T-Lite 5-in-1 builds
|
|
||||||
printf "\e[33;1mBuilding mm-tlite5in1-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace RETA AETR;
|
|
||||||
opt_disable INVERT_TELEMETRY;
|
|
||||||
opt_disable SX1276_INSTALLED;
|
|
||||||
opt_enable "MULTI_5IN1_INTERNAL JP_TLite"
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-aetr-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-tlite5in1-taer-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-taer-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-tlite5in1-reta-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-reta-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
# CC2500-only FCC builds
|
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace RETA AETR;
|
|
||||||
opt_disable "MULTI_5IN1_INTERNAL JP_TLite"
|
|
||||||
opt_disable A7105_INSTALLED;
|
|
||||||
opt_disable CYRF6936_INSTALLED;
|
|
||||||
opt_disable NRF24L01_INSTALLED;
|
|
||||||
opt_disable INVERT_TELEMETRY;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-aetr-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-taer-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-taer-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-reta-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-reta-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
# CC2500-only LBT/EU builds
|
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace RETA AETR;
|
|
||||||
opt_add MULTI_EU;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-aetr-lbt-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-taer-lbt-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-cc2500-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-cc2500-reta-lbt-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
# 4-in-1 PPM builds
|
|
||||||
printf "\e[33;1mBuilding mm-stm-ppm-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_enable A7105_INSTALLED;
|
|
||||||
opt_enable CYRF6936_INSTALLED;
|
|
||||||
opt_enable NRF24L01_INSTALLED;
|
|
||||||
opt_remove MULTI_EU;
|
|
||||||
opt_enable ENABLE_PPM;
|
|
||||||
opt_disable ENABLE_SERIAL;
|
|
||||||
opt_replace RETA AETR;
|
|
||||||
opt_disable MULTI_STATUS;
|
|
||||||
opt_disable MULTI_TELEMETRY;
|
|
||||||
opt_set NBR_BANKS 5;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-ppm-aetr-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-ppm-taer-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace AETR TAER;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-ppm-taer-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-stm-ppm-reta-v$MULTI_VERSION.bin\e[0m\n";
|
|
||||||
opt_replace TAER RETA;
|
|
||||||
buildMulti;
|
|
||||||
exitcode=$((exitcode+$?));
|
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-stm-ppm-reta-v$MULTI_VERSION.bin;
|
|
||||||
|
|
||||||
exit $exitcode;
|
|
@ -3,23 +3,65 @@
|
|||||||
source ./buildroot/bin/buildFunctions;
|
source ./buildroot/bin/buildFunctions;
|
||||||
exitcode=0;
|
exitcode=0;
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-t18int-aetr-v$MULTI_VERSION.bin\e[0m\n";
|
# T18 5-in-1 AIR builds
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-aetr-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_AIR
|
||||||
opt_disable ENABLE_PPM;
|
opt_disable ENABLE_PPM;
|
||||||
opt_disable INVERT_TELEMETRY;
|
opt_disable INVERT_TELEMETRY;
|
||||||
buildMulti;
|
buildMulti;
|
||||||
exitcode=$((exitcode+$?));
|
exitcode=$((exitcode+$?));
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-aetr-v$MULTI_VERSION.bin;
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-aetr-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-t18int-taer-v$MULTI_VERSION.bin\e[0m\n";
|
printf "\e[33;1mBuilding mm-t18int-taer-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
opt_replace AETR TAER;
|
opt_replace AETR TAER;
|
||||||
buildMulti;
|
buildMulti;
|
||||||
exitcode=$((exitcode+$?));
|
exitcode=$((exitcode+$?));
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-taer-v$MULTI_VERSION.bin;
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-taer-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
printf "\e[33;1mBuilding mm-t18int-reta-v$MULTI_VERSION.bin\e[0m\n";
|
printf "\e[33;1mBuilding mm-t18int-reta-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
opt_replace TAER RETA;
|
opt_replace TAER RETA;
|
||||||
buildMulti;
|
buildMulti;
|
||||||
exitcode=$((exitcode+$?));
|
exitcode=$((exitcode+$?));
|
||||||
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-reta-v$MULTI_VERSION.bin;
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-reta-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# T18 5-in-1 SURFACE builds
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-aetr-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_remove MULTI_AIR
|
||||||
|
opt_add MULTI_SURFACE
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-aetr-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-taer-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-taer-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-reta-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-reta-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# T18 5-in-1 LBT/EU builds
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_remove MULTI_SURFACE
|
||||||
|
opt_add MULTI_EU
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-aetr-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-taer-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-t18int-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-t18int-reta-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
exit $exitcode;
|
exit $exitcode;
|
||||||
|
70
buildroot/bin/build_release_stm32f1_tlite
Normal file
70
buildroot/bin/build_release_stm32f1_tlite
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source ./buildroot/bin/buildFunctions;
|
||||||
|
exitcode=0;
|
||||||
|
|
||||||
|
# T-Lite 5-in-1 AIR builds
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-aetr-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_AIR;
|
||||||
|
opt_disable ENABLE_PPM;
|
||||||
|
opt_disable INVERT_TELEMETRY;
|
||||||
|
opt_enable "MULTI_5IN1_INTERNAL JP_TLite"
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-aetr-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-taer-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-taer-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-reta-air-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-reta-air-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# T-Lite 5-in-1 SURFACE builds
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-aetr-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_add MULTI_SURFACE;
|
||||||
|
opt_remove MULTI_AIR;
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-aetr-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-taer-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-taer-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-reta-sfc-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-reta-sfc-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
# T-Lite 5-in-1 SURFACE builds
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-aetr-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_remove MULTI_SURFACE;
|
||||||
|
opt_add MULTI_EU;
|
||||||
|
opt_replace RETA AETR;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-aetr-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-taer-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace AETR TAER;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-taer-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
printf "\e[33;1mBuilding mm-tlite5in1-reta-lbt-v$MULTI_VERSION.bin\e[0m\n";
|
||||||
|
opt_replace TAER RETA;
|
||||||
|
buildMulti;
|
||||||
|
exitcode=$((exitcode+$?));
|
||||||
|
mv build/Multiprotocol.ino.bin ./binaries/mm-tlite5in1-reta-lbt-v$MULTI_VERSION.bin;
|
||||||
|
|
||||||
|
exit $exitcode;
|
Loading…
x
Reference in New Issue
Block a user