Browse Source

Added control library to build.

sbg
jgoppert 12 years ago
parent
commit
84d7f19d7d
  1. 15
      apps/systemlib/Makefile
  2. 3
      nuttx/configs/px4fmu/nsh/appconfig

15
apps/systemlib/Makefile

@ -43,12 +43,19 @@ CSRCS = err.c \ @@ -43,12 +43,19 @@ CSRCS = err.c \
conversions.c \
cpuload.c \
getopt_long.c \
up_cxxinitialize.c
up_cxxinitialize.c \
control/test_params.c
# ppm_decode.c \
CXXSRCS = test/test.cpp \
control/block/Block.cpp \
control/block/BlockParam.cpp \
control/block/UOrbPublication.cpp \
control/block/UOrbSubscription.cpp \
control/blocks.cpp \
control/fixedwing.cpp \
math/Vector.cpp \
math/Vector3.cpp \
math/EulerAngles.cpp \
@ -57,6 +64,12 @@ CXXSRCS = test/test.cpp \ @@ -57,6 +64,12 @@ CXXSRCS = test/test.cpp \
math/Matrix.cpp
CXXHDRS = test/test.hpp \
control/block/Block.hpp \
control/block/BlockParam.hpp \
control/block/UOrbPublication.hpp \
control/block/UOrbSubscription.hpp \
control/blocks.hpp \
control/fixedwing.hpp \
math/Vector.hpp \
math/Vector3.hpp \
math/EulerAngles.hpp \

3
nuttx/configs/px4fmu/nsh/appconfig

@ -68,6 +68,9 @@ CONFIGURED_APPS += systemcmds/delay_test @@ -68,6 +68,9 @@ CONFIGURED_APPS += systemcmds/delay_test
# Math library
CONFIGURED_APPS += examples/math_demo
# Control library
CONFIGURED_APPS += examples/control_demo
# Shared object broker; required by many parts of the system.
CONFIGURED_APPS += uORB

Loading…
Cancel
Save