├── .gitignore ├── .gitmodules ├── CITATION.cff ├── LICENSE ├── README.md ├── media ├── hmpc.gif ├── hmpc_system_diagram.svg └── platform.svg └── src ├── Dockerfile.lab ├── Dockerfile.sim ├── README.md ├── config_files ├── .config │ └── tmuxinator │ │ ├── hmpc-lab.yml │ │ └── hmpc-sim.yml ├── dotfiles │ └── .tmux.conf ├── rosdep_ignore_lab.yaml └── rosdep_ignore_sim.yaml ├── docker_build.sh ├── docker_run.sh ├── lab.md ├── px4_files ├── Pixhawk6_firmware_hoverthrust │ └── px4_fmu-v6x_default.px4 ├── Pixhawk6_parameters │ └── pixhawk6_2023-11-08_good.params ├── Pixhawk6_sdcard │ └── etc │ │ └── extras.txt └── setup_px4.sh ├── scripts └── install_deps.sh └── sim.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/README.md -------------------------------------------------------------------------------- /media/hmpc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/media/hmpc.gif -------------------------------------------------------------------------------- /media/hmpc_system_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/media/hmpc_system_diagram.svg -------------------------------------------------------------------------------- /media/platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/media/platform.svg -------------------------------------------------------------------------------- /src/Dockerfile.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/Dockerfile.lab -------------------------------------------------------------------------------- /src/Dockerfile.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/Dockerfile.sim -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/README.md -------------------------------------------------------------------------------- /src/config_files/.config/tmuxinator/hmpc-lab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/config_files/.config/tmuxinator/hmpc-lab.yml -------------------------------------------------------------------------------- /src/config_files/.config/tmuxinator/hmpc-sim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/config_files/.config/tmuxinator/hmpc-sim.yml -------------------------------------------------------------------------------- /src/config_files/dotfiles/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/config_files/dotfiles/.tmux.conf -------------------------------------------------------------------------------- /src/config_files/rosdep_ignore_lab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/config_files/rosdep_ignore_lab.yaml -------------------------------------------------------------------------------- /src/config_files/rosdep_ignore_sim.yaml: -------------------------------------------------------------------------------- 1 | vicon_bridge: {ubuntu: []} 2 | -------------------------------------------------------------------------------- /src/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/docker_build.sh -------------------------------------------------------------------------------- /src/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/docker_run.sh -------------------------------------------------------------------------------- /src/lab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/lab.md -------------------------------------------------------------------------------- /src/px4_files/Pixhawk6_firmware_hoverthrust/px4_fmu-v6x_default.px4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/px4_files/Pixhawk6_firmware_hoverthrust/px4_fmu-v6x_default.px4 -------------------------------------------------------------------------------- /src/px4_files/Pixhawk6_parameters/pixhawk6_2023-11-08_good.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/px4_files/Pixhawk6_parameters/pixhawk6_2023-11-08_good.params -------------------------------------------------------------------------------- /src/px4_files/Pixhawk6_sdcard/etc/extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/px4_files/Pixhawk6_sdcard/etc/extras.txt -------------------------------------------------------------------------------- /src/px4_files/setup_px4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/px4_files/setup_px4.sh -------------------------------------------------------------------------------- /src/scripts/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/scripts/install_deps.sh -------------------------------------------------------------------------------- /src/sim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbenders1/hmpc/HEAD/src/sim.md --------------------------------------------------------------------------------