Skip to content

Commit

Permalink
Tools: carbonix script update to add Octano board
Browse files Browse the repository at this point in the history
  • Loading branch information
loki077 committed Oct 13, 2024
1 parent 6d7dd5c commit b99f65e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tools/Carbonix_scripts/build_no_clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e
# The board to build for is passed as an argument to the script
BOARD=$1

if [ "$BOARD" == "CubeOrange" ] || [ "$BOARD" == "CubeOrange-Volanti" ] || [ "$BOARD" == "CubeOrange-Ottano" ] || [ "$BOARD" == "sitl" ]
if [ "$BOARD" == "CubeOrange" ] || [ "$BOARD" == "CubeOrange-Volanti" ] || [ "$BOARD" == "CubeOrange-Ottano" ] || [ "$BOARD" == "CubeOrange-Octano" ] || [ "$BOARD" == "sitl" ]
then
echo "Compiling Plane for $BOARD..."
./waf plane
Expand Down
2 changes: 1 addition & 1 deletion Tools/Carbonix_scripts/carbonix_waf_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
echo "Running distclean..."
./waf distclean

main_boards=("CubeOrange" "CubeOrange-Volanti" "CubeOrange-Ottano" "sitl")
main_boards=("CubeOrange" "CubeOrange-Volanti" "CubeOrange-Ottano" "CubeOrange-Octano" "sitl")
for board in "${main_boards[@]}"; do
echo "Compiling ArduPlane for $board..."
./waf configure --board "$board" --define=CARBOPILOT=1
Expand Down

0 comments on commit b99f65e

Please sign in to comment.