mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-29 14:00:34 +08:00
26 lines
526 B
Makefile
26 lines
526 B
Makefile
|
|
|
|
SRCS = adc.c \
|
|
controls.c \
|
|
dsm.c \
|
|
px4io.c \
|
|
registers.c \
|
|
safety.c \
|
|
sbus.c \
|
|
../systemlib/up_cxxinitialize.c \
|
|
../systemlib/perf_counter.c \
|
|
mixer.cpp \
|
|
../systemlib/mixer/mixer.cpp \
|
|
../systemlib/mixer/mixer_group.cpp \
|
|
../systemlib/mixer/mixer_multirotor.cpp \
|
|
../systemlib/mixer/mixer_simple.cpp \
|
|
../systemlib/pwm_limit/pwm_limit.c
|
|
|
|
ifeq ($(BOARD),px4io-v1)
|
|
SRCS += i2c.c
|
|
endif
|
|
ifeq ($(BOARD),px4io-v2)
|
|
SRCS += serial.c \
|
|
../systemlib/hx_stream.c
|
|
endif
|