mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
4e5d863291
* [board] support of the Chimera autopilot based on STM32F7 - based on ChibiOS only (updated to master for proper support of F7) - requires some specific ram for DMA operations - SBUS driver updated and support of internal inverted logic option of F7 * [chibios] fix some compilation errors * [chibios] fix some a few PR comments - test less MCU types - support F1 for uart driver - more autodetect for VTOR_INIT * use correct path * choose a working version of chibios * [chibios] fix some comments from PR review - add some doc - protect LED - update TRUE/FALSE for lowercase - pick a slightly older version of chibios (wrong path in makefile not fixed yet)
42 lines
842 B
Makefile
42 lines
842 B
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
#
|
|
# Lia_1.1_chibios.makefile
|
|
#
|
|
#
|
|
|
|
BOARD=lia
|
|
BOARD_VERSION=1.1
|
|
|
|
#
|
|
# default LED configuration
|
|
#
|
|
RADIO_CONTROL_LED ?= 4
|
|
BARO_LED ?= none
|
|
AHRS_ALIGNER_LED ?= 2
|
|
GPS_LED ?= 3
|
|
SYS_TIME_LED ?= 1
|
|
|
|
#
|
|
# default uart configuration
|
|
#
|
|
RADIO_CONTROL_SPEKTRUM_PRIMARY_PORT ?= UART1
|
|
RADIO_CONTROL_SPEKTRUM_SECONDARY_PORT ?= UART5
|
|
|
|
MODEM_PORT ?= UART2
|
|
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
|
|
|
|
include $(PAPARAZZI_HOME)/conf/boards/lisa_m_common_chibios.makefile
|