Files
bizhang_-obav/Tools/tests-host/mixer_test.cpp

15 lines
357 B
C++
Raw Normal View History

2013-10-12 20:19:34 +02:00
#include <systemlib/mixer/mixer.h>
#include <systemlib/err.h>
2013-10-13 11:44:42 +02:00
#include "../../src/systemcmds/tests/tests.h"
2013-10-12 20:19:34 +02:00
int main(int argc, char *argv[]) {
warnx("Host execution started");
2013-10-13 11:44:42 +02:00
char* args[] = {argv[0], "../../ROMFS/px4fmu_common/mixers/IO_pass.mix",
"../../ROMFS/px4fmu_common/mixers/FMU_quad_w.mix"};
2013-10-12 20:19:34 +02:00
2013-10-13 11:44:42 +02:00
test_mixer(3, args);
test_conv(1, args);
2014-05-03 12:40:11 +02:00
}