mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
5b13467c71
- use correct main file with chibios - fix pin definitions
89 lines
2.0 KiB
Makefile
89 lines
2.0 KiB
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
#
|
|
# crazyflie_2.1.makefile
|
|
#
|
|
# https://www.bitcraze.io/crazyflie-2-1/
|
|
#
|
|
# based on STM32F4
|
|
# only compatible with PPRZ/ChibiOS
|
|
#
|
|
|
|
BOARD=crazyflie
|
|
BOARD_VERSION=2.1
|
|
BOARD_DIR=$(BOARD)/chibios/v$(BOARD_VERSION)
|
|
BOARD_CFG=\"boards/$(BOARD_DIR)/$(BOARD).h\"
|
|
|
|
ARCH=chibios
|
|
RTOS=chibios
|
|
|
|
## FPU on F4
|
|
USE_FPU=softfp
|
|
|
|
$(TARGET).CFLAGS += -DPPRZLINK_ENABLE_FD
|
|
|
|
##############################################################################
|
|
# Architecture or project specific options
|
|
#
|
|
# Define project name here (target)
|
|
PROJECT = $(TARGET)
|
|
|
|
# Project specific files and paths (see Makefile.chibios for details)
|
|
CHIBIOS_BOARD_PLATFORM = STM32F4xx/platform.mk
|
|
CHIBIOS_BOARD_LINKER = STM32F405xG.ld
|
|
CHIBIOS_BOARD_STARTUP = startup_stm32f4xx.mk
|
|
|
|
##############################################################################
|
|
# Compiler settings
|
|
#
|
|
MCU = cortex-m4
|
|
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# default flash mode is via usb dfu bootloader (luftboot)
|
|
# other possibilities: DFU-UTIL, SWD, JTAG_BMP, STLINK, SERIAL
|
|
FLASH_MODE ?= DFU-UTIL
|
|
|
|
# while the crazyflie doesn't have luftboot, it has a bootloader until same offset
|
|
# see also https://wiki.bitcraze.io/projects:crazyflie2:development:dfu
|
|
HAS_LUFTBOOT ?= 1
|
|
ifeq (,$(findstring $(HAS_LUFTBOOT),0 FALSE))
|
|
$(TARGET).CFLAGS+=-DLUFTBOOT
|
|
$(TARGET).LDFLAGS+=-Wl,-Ttext=0x8004000
|
|
DFU_ADDR = 0x8004000
|
|
endif
|
|
|
|
|
|
#
|
|
# default LED configuration
|
|
#
|
|
RADIO_CONTROL_LED ?= 3
|
|
BARO_LED ?= none
|
|
AHRS_ALIGNER_LED ?= 2
|
|
GPS_LED ?= 4
|
|
SYS_TIME_LED ?= 1
|
|
CHARGING_LED ?= 5
|
|
|
|
|
|
#
|
|
# default uart configuration
|
|
#
|
|
|
|
# Over NRF/Syslink
|
|
MODEM_PORT ?= syslink
|
|
|
|
# External port
|
|
#MODEM_PORT ?= UART3
|
|
#MODEM_BAUD ?= B57600
|
|
|
|
|
|
#
|
|
# 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
|