├── .gitignore ├── .gitmodules ├── README.md ├── bashrc ├── clearpath ├── discovery-server-start ├── manipulators │ ├── config │ │ ├── control.yaml │ │ └── moveit.yaml │ └── launch │ │ └── manipulators-service.launch.py ├── platform-extras │ └── launch │ │ └── platform-extras-service.launch.py ├── platform │ ├── config │ │ ├── control.yaml │ │ ├── diagnostic_aggregator.yaml │ │ ├── diagnostic_updater.yaml │ │ ├── foxglove_bridge.yaml │ │ ├── imu_filter.yaml │ │ ├── localization.yaml │ │ ├── teleop_interactive_markers.yaml │ │ ├── teleop_joy.yaml │ │ └── twist_mux.yaml │ └── launch │ │ └── platform-service.launch.py ├── robot.srdf ├── robot.srdf.xacro ├── robot.urdf.xacro ├── robot.yaml ├── sensors │ └── launch │ │ └── sensors-service.launch.py ├── setup.bash ├── vcan-start └── zenoh-router-start ├── join.bash ├── risk-mpc └── Dockerfile ├── run.bash ├── tmux.conf └── ws ├── record_pipeline.sh └── record_validate_risk.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/README.md -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- 1 | # Supplemental bashrc host-editable 2 | -------------------------------------------------------------------------------- /clearpath/discovery-server-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/discovery-server-start -------------------------------------------------------------------------------- /clearpath/manipulators/config/control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/manipulators/config/control.yaml -------------------------------------------------------------------------------- /clearpath/manipulators/config/moveit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/manipulators/config/moveit.yaml -------------------------------------------------------------------------------- /clearpath/manipulators/launch/manipulators-service.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/manipulators/launch/manipulators-service.launch.py -------------------------------------------------------------------------------- /clearpath/platform-extras/launch/platform-extras-service.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform-extras/launch/platform-extras-service.launch.py -------------------------------------------------------------------------------- /clearpath/platform/config/control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/control.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/diagnostic_aggregator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/diagnostic_aggregator.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/diagnostic_updater.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/diagnostic_updater.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/foxglove_bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/foxglove_bridge.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/imu_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/imu_filter.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/localization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/localization.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/teleop_interactive_markers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/teleop_interactive_markers.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/teleop_joy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/teleop_joy.yaml -------------------------------------------------------------------------------- /clearpath/platform/config/twist_mux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/config/twist_mux.yaml -------------------------------------------------------------------------------- /clearpath/platform/launch/platform-service.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/platform/launch/platform-service.launch.py -------------------------------------------------------------------------------- /clearpath/robot.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/robot.srdf -------------------------------------------------------------------------------- /clearpath/robot.srdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/robot.srdf.xacro -------------------------------------------------------------------------------- /clearpath/robot.urdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/robot.urdf.xacro -------------------------------------------------------------------------------- /clearpath/robot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/robot.yaml -------------------------------------------------------------------------------- /clearpath/sensors/launch/sensors-service.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/sensors/launch/sensors-service.launch.py -------------------------------------------------------------------------------- /clearpath/setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/setup.bash -------------------------------------------------------------------------------- /clearpath/vcan-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/vcan-start -------------------------------------------------------------------------------- /clearpath/zenoh-router-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/clearpath/zenoh-router-start -------------------------------------------------------------------------------- /join.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/join.bash -------------------------------------------------------------------------------- /risk-mpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/risk-mpc/Dockerfile -------------------------------------------------------------------------------- /run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/run.bash -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/tmux.conf -------------------------------------------------------------------------------- /ws/record_pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/ws/record_pipeline.sh -------------------------------------------------------------------------------- /ws/record_validate_risk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumarRobotics/risk_mpc/HEAD/ws/record_validate_risk.sh --------------------------------------------------------------------------------