You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
357 B
15 lines
357 B
12 years ago
|
#include <systemlib/mixer/mixer.h>
|
||
|
#include <systemlib/err.h>
|
||
11 years ago
|
#include "../../src/systemcmds/tests/tests.h"
|
||
12 years ago
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
warnx("Host execution started");
|
||
|
|
||
11 years ago
|
char* args[] = {argv[0], "../../ROMFS/px4fmu_common/mixers/IO_pass.mix",
|
||
|
"../../ROMFS/px4fmu_common/mixers/FMU_quad_w.mix"};
|
||
12 years ago
|
|
||
11 years ago
|
test_mixer(3, args);
|
||
11 years ago
|
|
||
|
test_conv(1, args);
|
||
11 years ago
|
}
|