Skip to content
forked from ctu-mrs/uav_core

The main integrator of MRS UAV packages in ROS, part of the "mrs_uav_system".

License

Notifications You must be signed in to change notification settings

vrbadev/uav_core

 
 

Repository files navigation

The MRS UAV system core

UAV core build status Build Status
ROS Package 20.04
mrs_bumper Build Status
mrs_lib Build Status
mrs_mavros_interface Build Status
mrs_msgs Build Status
mrs_rviz_plugins Build Status
mrs_uav_controllers Build Status
mrs_uav_general Build Status
mrs_uav_managers Build Status
mrs_uav_odometry Build Status
mrs_uav_status Build Status
mrs_uav_testing Build Status
mrs_uav_trackers Build Status
mrs_uav_trajectory_generation Build Status
Third-party
nlopt_ros
tf2

System requirements

Required OS is Ubuntu 20.04 LTS 64-bit or their flavors that can install ROS Noetic. The suggested variant of OS installation is dual boot instead of virtualization that can be slow and can not handle well the simulation GUI. We use Gitman to manage the repository submodules. The repository are supposed to be compiled by catkin tools.

Installing uav_core

The preferred way is to install the whole MRS UAV system. However, if you prefer to install only the uav_core, you can do the following:

  1. Clone the repository,
  2. place it into your catkin workspace (guide),
  3. call installation/install.sh to install the dependencies,
  4. build your workspace.

Finishing your .bashrc

The install.sh script will add the following to your .bashrc:

source /opt/ros/noetic/setup.bash

# source uav_core shell additions
source $HOME/git/uav_core/miscellaneous/shell_additions/shell_additions.sh
export UAV_NAME="uav1"
export NATO_NAME="" # lower-case name of the UAV frame {alpha, bravo, charlie, ...}
export UAV_MASS="3.0" # [kg], used only with real UAV
export RUN_TYPE="simulation" # {simulation, uav}
export UAV_TYPE="f550" # {f550, f450, t650, eagle, naki}
export PROPULSION_TYPE="default" # {default, new_esc, ...}
export ODOMETRY_TYPE="gps" # {gps, optflow, hector, vio, ...}
export INITIAL_DISTURBANCE_X="0.0" # [N], external disturbance in the body frame
export INITIAL_DISTURBANCE_Y="0.0" # [N], external disturbance in the body frame
export STANDALONE="false" # disables the core nodelete manager
export SWAP_GARMINS="false" # swap up/down garmins
export PIXGARM="false" # true if Garmin lidar is connected throught Pixhawk
export SENSORS="" # {garmin_down, garmin_up, rplidar, realsense_front, teraranger, bluefox_optflow, realsense_brick, bluefox_brick}
export WORLD_NAME="simulation" # e.g.: "simulation" <= mrs_general/config/world_simulation.yaml
export MRS_STATUS="readme" # {readme, dynamics, balloon, avoidance, control_error, gripper}
export LOGGER_DEBUG="false" # sets the ros console output level to debug

Our shell additions source $HOME/git/uav_core/miscellaneous/shell_additions/shell_additions.sh provide some useful command line aliases (git, catkin, cd) and some neccessary shell functions (wait* commands for simulation).

All the environment variables define a particular configuration of a UAV (through launch files). The variables apply mostly to real hardware. They allow us to make the core universal without the need of hardcoding configurations for a particular UAV, but only for a UAV type. In a simulation, they are mostly overloaded in each tmuxinator session.

The cd alias

One of the features of our shell_additions.sh that might be intrusive is our cd alias. Our cd is capable of automatically traversing from locations that have been symlinked somewhere, to the linked location. This is especially useful if you (like us) clone git repositories under a specific location, e.g., ~/git/my_repository and then link them to catkin workspaces, e.g., ~/project2_workspace/src/my_repository. When you call

cd ~/git/my_repository

our alias will put you in

user@machine:~/project2_workspace/src/my_repository$

A symlink map (stored in /tmp/symlink_array.sh) for all your workspaces is built automatically after boot (after the first start of the terminal) by a detached tmux session using the silversearcher-ag utility. Only the workspaces in the environment variable

export ROS_WORKSPACES="~/mrs_workspace ~/modules_workspace ~/workspace ~/project2_workspace"

are considered. The ROS_WORKSPACES variable is added during the installation of MRS UAV system since that is where we set up the workspaces for you.

About

The main integrator of MRS UAV packages in ROS, part of the "mrs_uav_system".

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 61.5%
  • Shell 29.1%
  • MATLAB 7.3%
  • C++ 2.1%