Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the cpp interface of Acados in mpc_planner and pin the version of acados #1

Merged
merged 2 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion planner.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
mpc_planner:
type: git
url: https://github.com/tud-amr/mpc_planner.git
version: 5f40374610afaf7c9065cb20d69279135618df68
version: d9bc195a93e0e1aca50a2d47f29cd99286051ff4
guidance_planner:
type: git
url: https://github.com/tud-amr/guidance_planner.git
Expand Down
2 changes: 2 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ if [ ! -d "/workspace/acados/build" ]; then
echo "Installing Acados ..."
git clone https://github.com/acados/acados.git
cd acados
# Specific commit (remove to change to newest version)
git checkout c48cf1135b779fb4582358da89c119f7c481dcea
git submodule update --recursive --init
mkdir -p build
cd build
Expand Down
Loading