nmpc_px4_ros2
ROS2 package that implements a nonlinear model predictive control (NMPC) pipeline for trajectory tracking for aerial vehicles that use the PX4 Autopilot
파일 탐색기
- acados
- COLCON_IGNORE
- custom_dds_topics.yaml
- COLCON_IGNORE
- nmpc_px4_ros2_clip.gif
- env_var.dsv.in
- nmpc_flight_mode_node.hpp
- nmpc_flight_mode_expl_ode_fun.c
- nmpc_flight_mode_expl_ode_fun.o
- nmpc_flight_mode_expl_vde_adj.c
- nmpc_flight_mode_expl_vde_adj.o
- nmpc_flight_mode_expl_vde_forw.c
- nmpc_flight_mode_expl_vde_forw.o
- nmpc_flight_mode_model.h
- acados_sim_solver_nmpc_flight_mode.c
- acados_sim_solver_nmpc_flight_mode.h
- acados_solver.pxd
- acados_solver_nmpc_flight_mode.c
- acados_solver_nmpc_flight_mode.h
- acados_solver_nmpc_flight_mode.o
- libacados_ocp_solver_nmpc_flight_mode.so
- main_nmpc_flight_mode.c
- main_sim_nmpc_flight_mode.c
- Makefile
- acados_ocp.json
- nmpc_flight_mode.py
- trajectory_generator.py
- nmpc_flight_mode_node.cpp
- CMakeLists.txt
- LICENSE
- package.xml
- nmpc_params.yaml
- ref_traj_params.yaml
- state_est_params.yaml
- bringup.launch.py
- config.rviz
- CMakeLists.txt
- LICENSE
- package.xml
- StateTrajectory.msg
- CMakeLists.txt
- LICENSE
- package.xml
- circle.txt
- eight.txt
- spiral.txt
- static.txt
- straight_line.txt
- utils.hpp
- external_state_estimation_node.cpp
- odometry_republisher_node.cpp
- reference_trajectory_node.cpp
- utils.cpp
- CMakeLists.txt
- LICENSE
- package.xml
- .gitmodules
- Dockerfile
- LICENSE
- px4-ros2-interface-lib
- px4_msgs
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cmake
설명 보기 ▼
cmake
네이티브 빌드 시스템을 위한 빌드 설정 파일을 생성하는, 크로스 플랫폼 빌드 자동화 도구.
더 많은 정보: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
cmake {{path/to/project_directory}}
프로젝트 디렉터리의 `CMakeLists.txt`를 사용해 현재 디렉터리에 빌드 설정을 생성:
cmake --build {{path/to/build_directory}}
지정한 디렉터리의 빌드 설정을 사용해 빌드 산출물을 생성:
cmake --install {{path/to/build_directory}} --strip
빌드 산출물을 `/usr/local/`에 설치하고 디버그 심볼을 제거:
docker build
설명 보기 ▼
docker build
Build an image from a Dockerfile.
docker build .
Build a Docker image using the Dockerfile in the current directory:
docker build {{github.com/creack/docker-firefox}}
Build a Docker image from a Dockerfile at a specified URL:
docker build {{[-t|--tag]}} {{name:tag}} .
Build a Docker image and tag it:
docker run
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python3
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
virtualenv
설명 보기 ▼
virtualenv
가상 격리된 Python 환경 생성.
더 많은 정보: <https://virtualenv.pypa.io/en/latest/cli_interface.html>.
virtualenv {{path/to/venv}}
새 환경 생성:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}
프롬프트 접두사를 사용자 정의:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}
virtualenv에 다른 버전의 Python 사용:
xhost
설명 보기 ▼
xhost
Manage access control lists for X server connections.
xhost
Display the current access control list:
xhost +{{hostname}}
Allow a specific host to connect to the X server:
xhost -{{hostname}}
Deny a specific host from connecting to the X server:
