Files
paparazzi/conf/boards/lisa_mxs_1.0.makefile
T
Kirk Scheper e84ff368c2 Add rangesensor module (#2158)
* added rangesensors to gazebo model and NPS
* added module to handle the range sensors
* added sender IDS and added to abi messages
* added abi message to flight plan guided
2017-11-06 17:16:13 +01:00

31 lines
658 B
Makefile

# Hey Emacs, this is a -*- makefile -*-
#
# lisa_mxs_1.0.makefile
#
# https://wiki.paparazziuav.org/wiki/Lisa/MXS_v1.0
#
BOARD=lisa_mxs
BOARD_VERSION=1.0
BOARD_CFG=\"boards/$(BOARD)_$(BOARD_VERSION).h\"
ARCH=stm32
ARCH_L=f4
HARD_FLOAT=yes
$(TARGET).ARCHDIR = $(ARCH)
$(TARGET).LDSCRIPT=$(SRC_ARCH)/lisa-mx.ld
# -----------------------------------------------------------------------
HAS_LUFTBOOT ?= 0
ifeq (,$(findstring $(HAS_LUFTBOOT),0 FALSE))
$(TARGET).CFLAGS+=-DLUFTBOOT
$(TARGET).LDFLAGS+=-Wl,-Ttext=0x8004000
DFU_ADDR = 0x8004000
DFU_PRODUCT = Lisa/Lia
endif
FLASH_MODE ?= SWD_NOPWR
include $(PAPARAZZI_SRC)/conf/boards/lisa_m_defaults.makefile