mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-02-05 18:51:00 +08:00
Some checks are pending
Doxygen / build (push) Waiting to run
--------- Co-authored-by: Florian Sansou <florian.sansou@enac.fr>
98 lines
2.2 KiB
Makefile
98 lines
2.2 KiB
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
#
|
|
# tmotor_aiof7.makefile
|
|
#
|
|
# based on STM32F7
|
|
# only compatible with ChibiOS
|
|
#
|
|
MANUFACTURER=tmotor
|
|
BOARD=aiof7
|
|
BOARD_VERSION=1
|
|
|
|
BOARD_DIR=$(MANUFACTURER)/$(BOARD)/v$(BOARD_VERSION)
|
|
BOARD_CFG=\"arch/chibios/common_board.h\"
|
|
# BOARD_CFG=\"boards/$(BOARD_DIR)/$(BOARD)$(MANUFACTURER).h\"
|
|
|
|
ARCH=chibios
|
|
$(TARGET).ARCHDIR = $(ARCH)
|
|
|
|
RTOS=chibios
|
|
MCU=cortex-m7
|
|
|
|
## FPU on F7
|
|
USE_FPU=softfp
|
|
USE_FPU_OPT= -mfpu=fpv5-sp-d16
|
|
|
|
USE_LTO ?= yes
|
|
|
|
$(TARGET).CFLAGS += -DPPRZLINK_ENABLE_FD -DDSHOT_CHANNEL_FIRST_INDEX=1U
|
|
|
|
##############################################################################
|
|
# 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 = STM32F7xx/platform.mk
|
|
CHIBIOS_BOARD_LINKER = STM32F722xE.ld
|
|
CHIBIOS_BOARD_STARTUP = startup_stm32f7xx.mk
|
|
|
|
# ITCM flash is a special flash that allow faster operations
|
|
# At the moment it is not possible to flash the code in this mode using dfu-util
|
|
# but it should work with the BlackMagicProbe or STLINK
|
|
# By default, normal flash is used
|
|
ifeq ($(USE_ITCM),1)
|
|
$(TARGET).CFLAGS += -DUSE_ITCM=1
|
|
DFU_ADDR = 0x00200000
|
|
else
|
|
$(TARGET).CFLAGS += -DUSE_ITCM=0
|
|
DFU_ADDR = 0x08000000
|
|
endif
|
|
|
|
##############################################################################
|
|
# Compiler settings
|
|
#
|
|
|
|
# default flash mode is via usb dfu bootloader
|
|
# possibilities: DFU-UTIL, SWD, STLINK
|
|
FLASH_MODE ?= DFU-UTIL
|
|
|
|
HAS_LUFTBOOT = FALSE
|
|
|
|
#
|
|
# default LED configuration
|
|
#
|
|
RADIO_CONTROL_LED ?= none
|
|
BARO_LED ?= none
|
|
AHRS_ALIGNER_LED ?= none
|
|
GPS_LED ?= none
|
|
SYS_TIME_LED ?= 1
|
|
|
|
#
|
|
# default UART configuration (modem, gps, spektrum)
|
|
#
|
|
|
|
MODEM_PORT ?= UART5
|
|
MODEM_BAUD ?= B57600
|
|
|
|
GPS_PORT ?= UART4
|
|
GPS_BAUD ?= B57600
|
|
|
|
RADIO_CONTROL_SPEKTRUM_PRIMARY_PORT ?= UART1
|
|
|
|
# single mode
|
|
SBUS_PORT ?= UART1
|
|
|
|
#
|
|
# 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
|
|
|
|
|