px4-firmware/Tools/tests-host/mixer_test.cpp

12 lines
334 B
C++
Raw Normal View History

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-10-12 15:19:34 -03:00
}