Skip to content

Commit

Permalink
updated workflows, updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Oct 10, 2023
1 parent 19e8a1a commit 185a292
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ros_build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ros_build_test

on:

push:
branches: [ devel ]

paths-ignore:
- '**/README.md'

pull_request:
branches: [ master ]

workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:

build:
uses: ctu-mrs/ci_scripts/.github/workflows/ros_build_test.yml@master
secrets:
PUSH_TOKEN: ${{ secrets.PUSH_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/ros_package_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
push:
branches: [ master ]

paths-ignore:
- '**/README.md'

workflow_dispatch:

concurrency:
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# MRS Multirotor Simulator

The multirotor UAV dynamics simulator.

> :warning: **Attention please: This README needs work.**
>
> The MRS UAV System 1.5 is being released and this page needs updating. Please, keep in mind that the information on this page might not be valid.
This package provides a minimalistic dynamics simulator for multirotor UAVs.

## Features

* Header-only implementation of a single-UAV dynamics with feedback controllers. The header-only library can be using within your code for, e.g., reinforcement learning.
* Full rigid-body UAV dynamics stepped by an ODE solver.
* A cascade of feedback controllers that provide various references anywhere from individual actuator control up to desired 3D position + heading.
* A ROS wrapper for an individual UAV.
* A ROS simulator packed for multir-UAV simulation with mutual collisions and a ground plane.
* The barebone simulation work with hundreds of UAVs in real time.

0 comments on commit 185a292

Please sign in to comment.