px4-firmware/makefiles/config_px4fmu-v2_default.mk

156 lines
3.8 KiB
Makefile
Raw Normal View History

#
# Makefile for the px4fmu_default configuration
#
#
# Use the configuration's ROMFS, copy the px4iov2 firmware into
# the ROMFS if it's available
#
ROMFS_ROOT = $(PX4_BASE)/ROMFS/px4fmu_common
ROMFS_OPTIONAL_FILES = $(PX4_BASE)/Images/px4io-v2_default.bin
2013-04-06 05:00:07 -03:00
#
# Board support modules
#
2013-04-28 06:03:25 -03:00
MODULES += drivers/device
MODULES += drivers/stm32
MODULES += drivers/stm32/adc
MODULES += drivers/stm32/tone_alarm
2013-07-17 17:54:05 -03:00
MODULES += drivers/led
MODULES += drivers/px4fmu
MODULES += drivers/px4io
MODULES += drivers/boards/px4fmu-v2
MODULES += drivers/rgbled
MODULES += drivers/lsm303d
MODULES += drivers/l3gd20
2013-04-27 13:27:17 -03:00
MODULES += drivers/hmc5883
2013-06-25 18:01:27 -03:00
MODULES += drivers/ms5611
2013-04-27 13:27:17 -03:00
MODULES += drivers/mb12xx
MODULES += drivers/gps
MODULES += drivers/hil
2013-07-16 04:08:05 -03:00
MODULES += drivers/hott/hott_telemetry
MODULES += drivers/hott/hott_sensors
2013-04-27 13:27:17 -03:00
MODULES += drivers/blinkm
2013-10-21 22:28:26 -03:00
MODULES += drivers/roboclaw
MODULES += drivers/airspeed
MODULES += drivers/ets_airspeed
MODULES += drivers/meas_airspeed
MODULES += modules/sensors
# Needs to be burned to the ground and re-written; for now,
# just don't build it.
#MODULES += drivers/mkblctrl
#
# System commands
#
MODULES += systemcmds/ramtron
MODULES += systemcmds/bl_update
MODULES += systemcmds/boardinfo
MODULES += systemcmds/mixer
MODULES += systemcmds/param
MODULES += systemcmds/perf
MODULES += systemcmds/preflight_check
MODULES += systemcmds/pwm
2013-09-21 12:32:07 -03:00
MODULES += systemcmds/esc_calib
MODULES += systemcmds/reboot
MODULES += systemcmds/top
MODULES += systemcmds/tests
MODULES += systemcmds/config
MODULES += systemcmds/nshterm
2013-04-06 05:00:07 -03:00
#
# General system control
#
MODULES += modules/commander
MODULES += modules/navigator
MODULES += modules/mavlink
MODULES += modules/mavlink_onboard
#
# Estimation modules (EKF / other filters)
#
MODULES += modules/attitude_estimator_ekf
2013-04-27 13:27:17 -03:00
MODULES += modules/att_pos_estimator_ekf
2013-08-21 13:36:10 -03:00
MODULES += modules/position_estimator_inav
MODULES += examples/flow_position_estimator
2013-04-27 13:27:17 -03:00
#
# Vehicle Control
#
MODULES += modules/segway
MODULES += modules/fw_pos_control_l1
MODULES += modules/fw_att_control
2013-04-27 13:27:17 -03:00
MODULES += modules/multirotor_att_control
MODULES += modules/multirotor_pos_control
#
# Logging
#
2013-08-11 12:39:10 -03:00
MODULES += modules/sdlog2
#
# Unit tests
#
#MODULES += modules/unit_test
#MODULES += modules/commander/commander_tests
2013-04-28 06:03:25 -03:00
#
2013-05-22 07:25:13 -03:00
# Library modules
2013-04-28 06:03:25 -03:00
#
MODULES += modules/systemlib
MODULES += modules/systemlib/mixer
MODULES += modules/controllib
MODULES += modules/uORB
2013-05-22 07:25:13 -03:00
#
# Libraries
#
2013-08-21 13:36:10 -03:00
LIBRARIES += lib/mathlib/CMSIS
MODULES += lib/mathlib
MODULES += lib/mathlib/math/filter
MODULES += lib/ecl
MODULES += lib/external_lgpl
2013-08-21 13:36:10 -03:00
MODULES += lib/geo
MODULES += lib/conversion
2013-05-22 07:25:13 -03:00
2013-04-28 06:03:25 -03:00
#
# Demo apps
#
#MODULES += examples/math_demo
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/hello_sky
#MODULES += examples/px4_simple_app
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/daemon
#MODULES += examples/px4_daemon_app
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/debug_values
#MODULES += examples/px4_mavlink_debug
2013-10-10 16:15:44 -03:00
# Tutorial code from
# https://pixhawk.ethz.ch/px4/dev/example_fixedwing_control
#MODULES += examples/fixedwing_control
# Hardware test
2013-10-10 16:15:44 -03:00
#MODULES += examples/hwtest
#
# 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 06:03:25 -03:00
$(call _B, serdis, , 2048, serdis_main )