mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
Added host-building mixer test
This commit is contained in:
2
Tools/tests-host/.gitignore
vendored
Normal file
2
Tools/tests-host/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
./obj/*
|
||||
mixer_test
|
||||
36
Tools/tests-host/Makefile
Normal file
36
Tools/tests-host/Makefile
Normal file
@@ -0,0 +1,36 @@
|
||||
|
||||
CC=g++
|
||||
CFLAGS=-I. -I../../src/modules -I ../../src/include -I../../src/drivers -I../../src -D__EXPORT="" -Dnullptr="0"
|
||||
|
||||
ODIR=obj
|
||||
LDIR =../lib
|
||||
|
||||
LIBS=-lm
|
||||
|
||||
#_DEPS = test.h
|
||||
#DEPS = $(patsubst %,$(IDIR)/%,$(_DEPS))
|
||||
|
||||
_OBJ = mixer_test.o test_mixer.o mixer_simple.o mixer_multirotor.o mixer.o mixer_group.o
|
||||
OBJ = $(patsubst %,$(ODIR)/%,$(_OBJ))
|
||||
|
||||
#$(DEPS)
|
||||
$(ODIR)/%.o: %.cpp
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
$(ODIR)/%.o: ../../src/systemcmds/tests/%.c
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
$(ODIR)/%.o: ../../src/modules/systemlib/%.cpp
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
$(ODIR)/%.o: ../../src/modules/systemlib/mixer/%.cpp
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
#
|
||||
mixer_test: $(OBJ)
|
||||
g++ -o $@ $^ $(CFLAGS) $(LIBS)
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
rm -f $(ODIR)/*.o *~ core $(INCDIR)/*~
|
||||
0
Tools/tests-host/arch/board/board.h
Normal file
0
Tools/tests-host/arch/board/board.h
Normal file
12
Tools/tests-host/mixer_test.cpp
Normal file
12
Tools/tests-host/mixer_test.cpp
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
0
Tools/tests-host/nuttx/config.h
Normal file
0
Tools/tests-host/nuttx/config.h
Normal file
Reference in New Issue
Block a user