2013-10-12 15:19:34 -03:00
|
|
|
#include <systemlib/mixer/mixer.h>
|
|
|
|
#include <systemlib/err.h>
|
2013-10-13 06:44:42 -03:00
|
|
|
#include "../../src/systemcmds/tests/tests.h"
|
2013-10-12 15:19:34 -03:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
warnx("Host execution started");
|
|
|
|
|
2013-10-13 06:44:42 -03:00
|
|
|
char* args[] = {argv[0], "../../ROMFS/px4fmu_common/mixers/IO_pass.mix",
|
|
|
|
"../../ROMFS/px4fmu_common/mixers/FMU_quad_w.mix"};
|
2013-10-12 15:19:34 -03:00
|
|
|
|
2013-10-13 06:44:42 -03:00
|
|
|
test_mixer(3, args);
|
2013-12-31 09:45:38 -04:00
|
|
|
|
|
|
|
test_conv(1, args);
|
2013-10-12 15:19:34 -03:00
|
|
|
}
|