mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
e84ff368c2
* 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
31 lines
658 B
Makefile
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
|