Code reorganization and Drone Logic Update

This commit is contained in:
2026-01-05 02:38:46 +00:00
parent c5b208c91a
commit 27a70c4983
32 changed files with 1018 additions and 812 deletions

View File

@@ -131,8 +131,8 @@ else
echo "[OK] Environment already configured"
fi
# Install MAVProxy
pip3 install --user pymavlink mavproxy
# Install MAVProxy and Python dependencies
pip3 install --user pymavlink mavproxy pexpect
# -----------------------------------------------------------------------------
# Verification

View File

@@ -151,7 +151,7 @@ pip install --upgrade pip
if [ -f "$PROJECT_ROOT/requirements.txt" ]; then
pip install -r "$PROJECT_ROOT/requirements.txt"
else
pip install pybullet numpy pillow opencv-python pymavlink
pip install pybullet numpy pillow opencv-python pymavlink pexpect
fi
echo "[INFO] Python packages installed"