-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Channels belonging to a certain timer were not all grouped together. This is required by the .first_channel_index and .last_channel_index data members. We introduce a new mixer geometry to solve the problem.
- Loading branch information
Showing
6 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# @board px4_fmu-v2 exclude | ||
# Quad X with clock-wise motor assigment | ||
|
||
R: 4xcw 10000 10000 10000 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generic Quadcopter in X configuration | ||
# with clock-wise motor numbering | ||
|
||
[info] | ||
key = "4xcw" | ||
description = "Quadcopter in X configuration with clock-wise motor numbering" | ||
|
||
[rotor_default] | ||
direction = "CW" | ||
axis = [0.0, 0.0, -1.0] | ||
Ct = 1.0 | ||
Cm = 0.05 | ||
|
||
[[rotors]] | ||
name = "front_right" | ||
position = [0.707107, 0.707107, 0.0] | ||
direction = "CCW" | ||
|
||
[[rotors]] | ||
name = "rear_right" | ||
position = [-0.707107, 0.707107, 0.0] | ||
|
||
[[rotors]] | ||
name = "rear_left" | ||
position = [-0.707107, -0.707107, 0.0] | ||
direction = "CCW" | ||
|
||
[[rotors]] | ||
name = "front_left" | ||
position = [0.707107, -0.707107, 0.0] |