Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlong13 committed Oct 8, 2024
1 parent ddc4c3b commit 6e4a722
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/carbonix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,11 @@ jobs:
run: |
. .github/workflows/ccache.env
- name: Install bash tools
run: |
sudo apt-get update
sudo apt-get -y install xxd
- name: build
shell: bash
run: |
Expand Down
18 changes: 9 additions & 9 deletions Tools/Carbonix_scripts/carbonix_waf_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
# Exit if any command fails
set -e

echo "Running distclean..."
./waf distclean
rm -Rf output
# echo "Running distclean..."
# ./waf distclean
# rm -Rf output

main_boards=("CubeOrange" "CubeOrangePlus" "CubeOrange-Volanti" "CubeOrangePlus-Volanti" "CubeOrange-Ottano" "CubeOrangePlus-Ottano")
for board in "${main_boards[@]}"; do
echo "Compiling ArduPlane for $board..."
./waf configure --board "$board" -g
./waf plane
done
# main_boards=("CubeOrange" "CubeOrangePlus" "CubeOrange-Volanti" "CubeOrangePlus-Volanti" "CubeOrange-Ottano" "CubeOrangePlus-Ottano")
# for board in "${main_boards[@]}"; do
# echo "Compiling ArduPlane for $board..."
# ./waf configure --board "$board" -g
# ./waf plane
# done

periph_boards=("CarbonixF405" "CarbonixF405-no-crystal")

Expand Down

0 comments on commit 6e4a722

Please sign in to comment.