aboutsummaryrefslogtreecommitdiff
path: root/ROMFS/px4fmu_common
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2015-01-04 00:14:09 +0100
committerLorenz Meier <lm@inf.ethz.ch>2015-01-04 00:14:09 +0100
commit5f147f3a6f9c823d1835646739ecb49a5a64e34b (patch)
tree9cedab6ae20081bf47a50c093cc1a14b4df61e4d /ROMFS/px4fmu_common
parent4d9e4949fcd4212b4c4957da065baac0c4a031c6 (diff)
downloadpx4-firmware-5f147f3a6f9c823d1835646739ecb49a5a64e34b.tar.gz
px4-firmware-5f147f3a6f9c823d1835646739ecb49a5a64e34b.tar.bz2
px4-firmware-5f147f3a6f9c823d1835646739ecb49a5a64e34b.zip
Mixer: Rename to .md and change syntax to markup
Diffstat (limited to 'ROMFS/px4fmu_common')
-rw-r--r--ROMFS/px4fmu_common/mixers/README.md (renamed from ROMFS/px4fmu_common/mixers/README)17
1 files changed, 6 insertions, 11 deletions
diff --git a/ROMFS/px4fmu_common/mixers/README b/ROMFS/px4fmu_common/mixers/README.md
index f671a177c..b766d05aa 100644
--- a/ROMFS/px4fmu_common/mixers/README
+++ b/ROMFS/px4fmu_common/mixers/README.md
@@ -1,14 +1,12 @@
-PX4 mixer definitions
-=====================
+## PX4 mixer definitions ##
Files in this directory implement example mixers that can be used as a basis
for customisation, or for general testing purposes.
For a detailed description of the mixing architecture and examples see:
-https://pixhawk.org/dev/mixing
+http://px4.io/dev/mixing
-Syntax
-------
+### Syntax ###
Mixer definitions are text files; lines beginning with a single capital letter
followed by a colon are significant. All other lines are ignored, meaning that
@@ -28,8 +26,7 @@ A mixer begins with a line of the form
The tag selects the mixer type; 'M' for a simple summing mixer, 'R' for a
multirotor mixer, etc.
-Null Mixer
-..........
+#### Null Mixer ####
A null mixer consumes no controls and generates a single actuator output whose
value is always zero. Typically a null mixer is used as a placeholder in a
@@ -39,8 +36,7 @@ The null mixer definition has the form:
Z:
-Simple Mixer
-............
+#### Simple Mixer ####
A simple mixer combines zero or more control inputs into a single actuator
output. Inputs are scaled, and the mixing function sums the result before
@@ -78,8 +74,7 @@ discussed above. Whilst the calculations are performed as floating-point
operations, the values stored in the definition file are scaled by a factor of
10000; i.e. an offset of -0.5 is encoded as -5000.
-Multirotor Mixer
-................
+#### Multirotor Mixer ####
The multirotor mixer combines four control inputs (roll, pitch, yaw, thrust)
into a set of actuator outputs intended to drive motor speed controllers.