mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-27 04:40:36 +08:00
18 lines
366 B
Makefile
18 lines
366 B
Makefile
#
|
|
# Land detector
|
|
#
|
|
|
|
MODULE_COMMAND = land_detector
|
|
|
|
SRCS = land_detector_main.cpp \
|
|
land_detector_params.c \
|
|
LandDetector.cpp \
|
|
MulticopterLandDetector.cpp \
|
|
FixedwingLandDetector.cpp
|
|
|
|
EXTRACXXFLAGS = -Weffc++ -Os
|
|
|
|
# Startup handler, the actual app stack size is
|
|
# in the task_spawn command
|
|
MODULE_STACKSIZE = 1200
|