mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
528f5d5b10
* [imu] Add Invensense V3 driver * [imu] Add samplerate to raw ABI message * [boards] Add support for the CubePilot - Cube Orange+
92 lines
2.2 KiB
Makefile
92 lines
2.2 KiB
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
#
|
|
# cube_orange_plus.makefile
|
|
#
|
|
# This is for the main MCU (STM32F767) on the PX4 board
|
|
# See https://pixhawk.org/modules/pixhawk for details
|
|
#
|
|
|
|
BOARD=cube
|
|
BOARD_VERSION=orange_plus
|
|
BOARD_DIR=$(BOARD)/orange
|
|
BOARD_CFG=\"arch/chibios/common_board.h\"
|
|
|
|
ARCH=chibios
|
|
$(TARGET).ARCHDIR = $(ARCH)
|
|
|
|
RTOS=chibios
|
|
MCU=cortex-m7
|
|
|
|
# FPU on F7
|
|
USE_FPU=hard
|
|
USE_FPU_OPT= -mfpu=fpv5-d16
|
|
|
|
#USE_LTO=yes
|
|
|
|
$(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 = STM32H7xx/platform.mk
|
|
CHIBIOS_LINKER_DIR = $(PAPARAZZI_SRC)/sw/airborne/arch/chibios/
|
|
CHIBIOS_BOARD_LINKER = STM32H743xI.ld
|
|
CHIBIOS_BOARD_STARTUP = startup_stm32h7xx.mk
|
|
|
|
##############################################################################
|
|
# Compiler settings
|
|
#
|
|
|
|
# default flash mode is the PX4 bootloader
|
|
# possibilities: DFU, SWD, PX4 bootloader
|
|
FLASH_MODE ?= PX4_BOOTLOADER
|
|
PX4_TARGET = "ap"
|
|
PX4_PROTOTYPE ?= "${PAPARAZZI_HOME}/sw/tools/px4/cube_orangeplus.prototype"
|
|
PX4_BL_PORT ?= "/dev/serial/by-id/*-BL_*,/dev/serial/by-id/*_BL_*"
|
|
|
|
#
|
|
# default LED configuration
|
|
#
|
|
SDLOG_LED ?= none
|
|
RADIO_CONTROL_LED ?= none
|
|
BARO_LED ?= none
|
|
AHRS_ALIGNER_LED ?= none
|
|
GPS_LED ?= none
|
|
SYS_TIME_LED ?= 1
|
|
|
|
#
|
|
# default UART configuration (modem, gps, spektrum)
|
|
# The TELEM2 port
|
|
SBUS_PORT ?= UART3
|
|
RADIO_CONTROL_SPEKTRUM_PRIMARY_PORT ?= UART3
|
|
|
|
# The TELEM1 port (UART3 is TELEM2)
|
|
MODEM_PORT ?= UART2
|
|
MODEM_BAUD ?= B57600
|
|
|
|
# The GPS1 port (UART8 is GPS2)
|
|
GPS_PORT ?= UART4
|
|
GPS_BAUD ?= B57600
|
|
|
|
# InterMCU port connected to the IO processor
|
|
INTERMCU_PORT ?= UART6
|
|
INTERMCU_BAUD ?= B1500000
|
|
|
|
# Overwrite default Cube IMU slave ID
|
|
CUBE_IMU2_SPI_SLAVE_IDX ?= SPI_SLAVE5
|
|
|
|
#
|
|
# 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
|
|
|