mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
68 lines
1.3 KiB
Makefile
68 lines
1.3 KiB
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
#
|
|
# cc3d.makefile
|
|
#
|
|
# https://www.openpilot.org/product/coptercontrol/
|
|
#
|
|
|
|
BOARD=cc3d
|
|
BOARD_CFG=\"boards/$(BOARD).h\"
|
|
|
|
ARCH=stm32
|
|
$(TARGET).ARCHDIR = $(ARCH)
|
|
# not needed?
|
|
$(TARGET).OOCD_INTERFACE=flossjtag
|
|
$(TARGET).LDSCRIPT=$(SRC_ARCH)/cc3d.ld
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# default flash mode is via SWD
|
|
# other possibilities: DFU-UTIL, JTAG, SWD, STLINK, SERIAL
|
|
FLASH_MODE ?= STLINK
|
|
|
|
HAS_LUFTBOOT ?= 0
|
|
ifeq (,$(findstring $(HAS_LUFTBOOT),0 FALSE))
|
|
$(TARGET).CFLAGS+=-DLUFTBOOT
|
|
$(TARGET).LDFLAGS+=-Wl,-Ttext=0x8002000
|
|
endif
|
|
|
|
#
|
|
#
|
|
# some default values shared between different firmwares
|
|
#
|
|
#
|
|
|
|
|
|
#
|
|
# default LED configuration
|
|
#
|
|
RADIO_CONTROL_LED ?= none
|
|
BARO_LED ?= none
|
|
AHRS_ALIGNER_LED ?= none
|
|
GPS_LED ?= none
|
|
SYS_TIME_LED ?= 1
|
|
|
|
|
|
#
|
|
# default uart configuration
|
|
#
|
|
RADIO_CONTROL_SPEKTRUM_PRIMARY_PORT ?= UART3
|
|
RADIO_CONTROL_SPEKTRUM_SECONDARY_PORT ?= UART1
|
|
|
|
MODEM_PORT ?= UART1
|
|
MODEM_BAUD ?= B57600
|
|
|
|
GPS_PORT ?= UART3
|
|
GPS_BAUD ?= B38400
|
|
|
|
|
|
#
|
|
# default actuator configuration
|
|
#
|
|
# you can use different actuators by adding a configure option to your firmware section
|
|
# e.g. <configure name="ACTUATORS" value="actuators_ppm/>
|
|
# and by setting the correct "driver" attribute in servo section
|
|
# e.g. <servo driver="Ppm">
|
|
#
|
|
ACTUATORS ?= actuators_pwm
|