mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-04 22:17:01 +08:00
7344099703
- defaults to 1/PERIODIC_FREQUENCY - should be the frequency of new accel measurements
13 lines
315 B
Makefile
13 lines
315 B
Makefile
#
|
|
# simple INS with float vertical filter
|
|
#
|
|
|
|
$(TARGET).CFLAGS += -DINS_TYPE_H=\"subsystems/ins/ins_int.h\"
|
|
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/ins.c
|
|
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/ins/ins_int.c
|
|
|
|
# vertical filter float version
|
|
$(TARGET).srcs += $(SRC_SUBSYSTEMS)/ins/vf_float.c
|
|
$(TARGET).CFLAGS += -DUSE_VFF
|
|
|