Skip to content
This repository was archived by the owner on Dec 1, 2020. It is now read-only.
/ march Public archive

The main repository of the March exoskeleton πŸŽ›οΈ

Notifications You must be signed in to change notification settings

project-march/march

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f31c477 Β· Dec 1, 2020
Sep 16, 2020
Aug 5, 2020
Sep 19, 2020
Oct 8, 2020
Oct 8, 2020
Aug 14, 2020
Jul 30, 2020
Sep 14, 2020
Sep 16, 2020
Oct 31, 2019
Aug 10, 2020
Jun 1, 2020
Mar 23, 2020
Jul 8, 2020
Nov 18, 2019
Dec 1, 2020

Repository files navigation

This repository has been archived. A recent version can be found on https://gitlab.com/project-march.

March

The main repository of the MARCH exoskeleton.

GitHub release (latest by date including pre-releases)

Branch Build Status
master Build Status
develop Build Status

Fixing code style

All C++ code must follow the roscpp_code_format code styling rules. The rules for this format are set in the .clang-format file. clang-format is a tool that can detect and fix these problems in your code. Before pushing you should make sure that this is fixed, otherwise the Travis build will fail. First you need to install clang-format:

sudo apt install clang-format

Then you can run clang-format from the root of this repository:

find . -name '*.h' -or -name '*.cpp' | xargs clang-format -i -style=file

NOTE: This command can make changes to your files.

If you would like to show a diff and not use find, install clang_format_check.