px4-firmware/makefiles/config_px4fmu_default.mk

135 lines
3.3 KiB
Makefile
Raw Normal View History

#
# Makefile for the px4fmu_default configuration
#
#
# Use the configuration's ROMFS.
#
ROMFS_ROOT = $(PX4_BASE)/ROMFS/px4fmu_common
#
# Board support modules
#
MODULES += drivers/device
MODULES += drivers/stm32
MODULES += drivers/stm32/adc
MODULES += drivers/stm32/tone_alarm
2013-05-09 10:39:54 -03:00
MODULES += drivers/led
2013-04-27 08:41:40 -03:00
MODULES += drivers/px4io
MODULES += drivers/px4fmu
MODULES += drivers/boards/px4fmu
MODULES += drivers/ardrone_interface
2013-04-27 08:41:40 -03:00
MODULES += drivers/l3gd20
MODULES += drivers/bma180
MODULES += drivers/mpu6000
MODULES += drivers/hmc5883
MODULES += drivers/ms5611
MODULES += drivers/mb12xx
MODULES += drivers/gps
MODULES += drivers/hil
MODULES += drivers/hott_telemetry
MODULES += drivers/blinkm
2013-05-05 06:24:31 -03:00
MODULES += drivers/mkblctrl
2013-05-09 10:52:36 -03:00
MODULES += drivers/md25
2013-05-09 10:58:23 -03:00
MODULES += drivers/ets_airspeed
2013-04-27 08:16:24 -03:00
MODULES += modules/sensors
2013-04-27 00:02:12 -03:00
#
# System commands
2013-04-27 00:02:12 -03:00
#
MODULES += systemcmds/eeprom
MODULES += systemcmds/bl_update
MODULES += systemcmds/boardinfo
MODULES += systemcmds/i2c
MODULES += systemcmds/mixer
MODULES += systemcmds/param
MODULES += systemcmds/perf
MODULES += systemcmds/preflight_check
MODULES += systemcmds/pwm
MODULES += systemcmds/reboot
MODULES += systemcmds/top
2013-04-27 00:02:12 -03:00
MODULES += systemcmds/tests
#
# General system control
#
MODULES += modules/commander
2013-04-26 19:10:20 -03:00
MODULES += modules/mavlink
MODULES += modules/mavlink_onboard
2013-05-09 15:41:09 -03:00
MODULES += modules/gpio_led
#
# Estimation modules (EKF / other filters)
#
MODULES += modules/attitude_estimator_ekf
2013-05-21 03:12:19 -03:00
MODULES += modules/attitude_estimator_so3_comp
#MODULES += modules/position_estimator_mc
2013-04-27 09:42:12 -03:00
MODULES += modules/position_estimator
MODULES += modules/att_pos_estimator_ekf
#
# Vehicle Control
#
MODULES += modules/fixedwing_backside
MODULES += modules/fixedwing_att_control
MODULES += modules/fixedwing_pos_control
2013-04-27 09:42:12 -03:00
MODULES += modules/multirotor_att_control
MODULES += modules/multirotor_pos_control
#
# Logging
#
MODULES += modules/sdlog
MODULES += modules/sdlog2
#
# Library modules
#
MODULES += modules/systemlib
MODULES += modules/systemlib/mixer
MODULES += modules/mathlib
MODULES += modules/controllib
MODULES += modules/uORB
#
# Libraries
#
LIBRARIES += modules/mathlib/CMSIS
#
# Demo apps
#
2013-04-28 05:38:45 -03:00
#MODULES += examples/math_demo
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/hello_sky
2013-04-28 05:38:45 -03:00
#MODULES += examples/px4_simple_app
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/daemon
2013-04-28 05:38:45 -03:00
#MODULES += examples/px4_daemon_app
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/debug_values
2013-04-28 05:38:45 -03:00
#MODULES += examples/px4_mavlink_debug
2013-05-12 15:08:09 -03:00
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/example_fixedwing_control
2013-05-13 03:28:36 -03:00
MODULES += examples/fixedwing_control
2013-05-12 15:08:09 -03:00
#
# Transitional support - add commands from the NuttX export archive.
#
# In general, these should move to modules over time.
#
# Each entry here is <command>.<priority>.<stacksize>.<entrypoint> but we use a helper macro
# to make the table a bit more readable.
#
define _B
$(strip $1).$(or $(strip $2),SCHED_PRIORITY_DEFAULT).$(or $(strip $3),CONFIG_PTHREAD_STACK_DEFAULT).$(strip $4)
endef
# command priority stack entrypoint
BUILTIN_COMMANDS := \
$(call _B, sercon, , 2048, sercon_main ) \
2013-04-28 09:54:06 -03:00
$(call _B, serdis, , 2048, serdis_main )