aboutsummaryrefslogtreecommitdiff
path: root/apps/systemlib/mixer
Commit message (Collapse)AuthorAgeFilesLines
* Moved last libs, drivers and headers, cleaned up IO buildLorenz Meier2013-04-287-1610/+0
|
* Update the quad V values.Simon Wilks2013-04-262-8/+8
|
* Add support for V for quads with offset arms such as the TBS and SteadiDrone ↵Simon Wilks2013-04-253-1/+20
| | | | QU4D
* Made dtors virtual, tested on IO and FMULorenz Meier2013-03-091-1/+1
|
* Working on restart resilience, hunting down multi-load mixer issue (still ↵Lorenz Meier2013-03-072-0/+2
| | | | present)
* lib_lowprintf -> lowsyslogpx4dev2013-02-062-4/+4
|
* Merge branch 'master' into fixedwingLorenz Meier2013-01-072-40/+42
|\
| * Fixed minor compile errorLorenz Meier2013-01-071-0/+5
| |
| * Merged with masterLorenz Meier2013-01-075-395/+584
| |\
| * | Attention: flipped the yaw direction of multirotors in order to be ↵Julian Oes2013-01-022-41/+38
| | | | | | | | | | | | compatible to APM
* | | The multirotor mixer return 0 instead of the number of channels, my Hex is ↵Julian Oes2012-12-312-1/+7
| |/ |/| | | | | flying now (not reliably now, random flips
* | Rework the way we scan text for scaler definitions; something weird was ↵px4dev2012-12-301-25/+27
| | | | | | | | going on with sscanf's handling of %n that wasn't obvious. This seems to work around the issue.
* | Fix logic for handling partial buffers.px4dev2012-12-301-9/+28
| |
* | Assorted compile fixes.px4dev2012-12-292-4/+4
| |
* | whitespace/formattingpx4dev2012-12-292-16/+26
| |
* | Factory method for a simple mixer that converts PWM/PPM values to the ↵px4dev2012-12-292-26/+118
| | | | | | | | standard internal format.
* | Add the ability to reset a mixer group. Report the remaining buffer size ↵px4dev2012-12-292-11/+23
| | | | | | | | from load_from_buf.
* | Make mixer ioctls load from a memory buffer rather than a file. This is prep ↵px4dev2012-12-295-401/+453
|/ | | | for uploading the memory buffer to IO to be processed there.
* Merge remote-tracking branch 'upstream/master' into ioJulian Oes2012-11-131-0/+1
|\
| * Fixed the number of control inputs for simple mixer. Contributed by Thomas ↵Lorenz Meier2012-11-101-0/+1
| | | | | | | | Gubler
* | Several fixes, hex flies, failsafe not really tested yetJulian Oes2012-11-111-1/+1
| |
* | Got rid of the control limitation at high throttleJulian Oes2012-11-071-7/+7
| |
* | Scale control signals with thrust for low thrustJulian Oes2012-11-061-0/+22
|/
* Major formatting/whitespace cleanuppx4dev2012-10-233-9/+19
|
* Avoid a couple of unnecessary promotions to double.px4dev2012-09-031-2/+2
|
* Adjust the mixer tables for observed yaw sign behavior.px4dev2012-09-032-37/+37
|
* sscanf field widths seem to be broken, don't use them.px4dev2012-08-201-1/+1
|
* fix a fatal one-character typo in the multirotor output scaling logicpx4dev2012-08-161-1/+1
|
* New multirotor mixer; builds, not yet tested.px4dev2012-08-155-9/+331
|
* mechanical style fixupspx4dev2012-08-143-13/+24
|
* Syntax change to improve readability; output scalers are now labelled O: ↵px4dev2012-08-112-33/+84
| | | | | | instead of looking like control scalers. Make mixer terminology more consistent; mixer inputs are 'controls'.
* Rework the mixer architecture based on discussions about arbitrary geometry ↵px4dev2012-08-105-0/+977
mixing and plugins. Now the mixer is a C++ library that can be fairly easily bolted into an output driver to provide mixing services. Teach the FMU driver how to use it as an example. More testing is still required.