aboutsummaryrefslogtreecommitdiff
path: root/Tools/tests-host/mixer_test.cpp
blob: 5d92040f11f4be5fe1cd5ee53b1e92b920468129 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <systemlib/mixer/mixer.h>
#include <systemlib/err.h>

extern int test_mixer(int argc, char *argv[]);

int main(int argc, char *argv[]) {
	warnx("Host execution started");

	char* args[] = {argv[0], "../../ROMFS/px4fmu_common/mixers/IO_pass.mix"};

	test_mixer(2, args);
}