AP_HAL_ChibiOS: support iFlight BeastF7

reduce DMA contention on BeastH7 and correct sharing
add README's for BeastF7 and BeastH7
This commit is contained in:
Andy Piper 2021-01-05 22:03:38 +00:00 committed by Andrew Tridgell
parent fdbf2d369a
commit e781572d53
7 changed files with 365 additions and 3 deletions

View File

@ -0,0 +1,87 @@
# iFlight Beast F7 45A AIO Flight Controller
https://shop.iflight-rc.com/index.php?route=product/product&product_id=1377
The Beast F7 AIO is a flight controller produced by [iFlight](https://shop.iflight-rc.com/).
## Features
- MCU: BGA-STM32F745
- Gyro: MPU6000
- 8Mb Onboard Flash
- BEC output: 5V 2.5A
- Barometer: BMP280
- OSD: AT7456E
- 5 UARTS: (UART1, UART2, UART3, UART4, UART7)
- 5 PWM outputs (4 motors and 1 LED)
## Pinout
![Beast F7 AIO Board](../BeastH7/beast_h7_pinout.png "Beast F7 AIO")
## UART Mapping
The UARTs are marked Rn and Tn in the above pinouts. The Rn pin is the
receive pin for UARTn. The Tn pin is the transmit pin for UARTn.
|Name|Pin|Function|
|:-|:-|:-|
|SERIAL0|COMPUTER|USB|
|SERIAL1|RX1/TX1|UART1 (Telem1 / Alt RC Input/Output)|
|SERIAL2|TX2/RX2|UART2 (DJI)|
|SERIAL3|RX3|UART3 (DJI RC Input)|
|SERIAL4|TX4/RX4|UART4 (GPS)|
|SERIAL7|TX7/RX7|UART7|
UART1 supports RX and TX DMA. UART2, UART3 and UART4 support RX DMA. UART7 supports TX DMA
## RC Input
RC input is configured on the (UART3_RX) pin which forms part of the DJI connector. It supports all RC protocols.
For RC input/output use UART1 wih SERIAL1_PROTOCOL as 23 and set SERIAL3_PROTOCOL set to -1
## OSD Support
The Beast F7 AIO supports OSD using OSD_TYPE 1 (MAX7456 driver).
## PWM Output
The Beast F7 AIO supports up to 4 PWM outputs. The pads for motor output ESC1 to ESC4 on the above diagram are for the 4 outputs. All 4 outputs support DShot as well as all PWM types.
The PWM are in in two groups.
Channels within the same group need to use the same output rate. If
any channel in a group uses DShot then all channels in the group need
to use DShot.
## Battery Monitoring
The board has a builtin voltage sensor. The voltage sensor can handle up to 6S
LiPo batteries.
The correct battery setting parameters are:
- BATT_MONITOR 4
- BATT_VOLT_PIN 12
- BATT_VOLT_MULT around 10.9
- BATT_CURR_PIN 13
- BATT_CURR_MULT around 28.5
These are set by default in the firmware and shouldn't need to be adjusted
## Compass
The Beast F7 AIO does not have a builtin compass and you cannot attach an external compass due to the lack of an external I2C connector.
## NeoPixel LED
The board includes a NeoPixel LED on the underside which is pre-configured to output ArduPilot sequences. This is the fifth PWM output.
## Loading Firmware
Initial firmware load can be done with DFU by plugging in USB with the
bootloader button pressed. Then you should load the "with_bl.hex"
firmware, using your favourite DFU loading tool.
Once the initial firmware is loaded you can update the firmware using
any ArduPilot ground station software. Updates should be done with the
*.apj firmware files.

View File

@ -0,0 +1,9 @@
# setup for LEDs on chan5
SERVO5_FUNCTION 120
NTF_LED_TYPES 257
# disable compass
COMPASS_USE 0
COMPASS_USE2 0
COMPASS_USE3 0
# setup SERIAL3 for RCIN
SERIAL3_BAUD 115

View File

@ -0,0 +1,44 @@
# hw definition file for processing by chibios_pins.py
# for iFlight Beast H7 hardware.
# MCU class and specific type
MCU STM32F7xx STM32F745xx
# board ID for firmware load
APJ_BOARD_ID 1026
# crystal frequency, setup to use external oscillator
OSCILLATOR_HZ 8000000
FLASH_SIZE_KB 1024
# bootloader starts at zero offset
FLASH_RESERVE_START_KB 0
# the location where the bootloader will put the firmware
FLASH_BOOTLOADER_LOAD_KB 96
# order of UARTs (and USB). Allow bootloading on USB and telem1
SERIAL_ORDER OTG1 USART1
# USART1
PA10 USART1_RX USART1
PA9 USART1_TX USART1
# USB
PA11 OTG_FS_DM OTG1
PA12 OTG_FS_DP OTG1
PA13 JTMS-SWDIO SWD
PA14 JTCK-SWCLK SWD
PC13 LED_BOOTLOADER OUTPUT LOW
define HAL_LED_ON 0
define HAL_USE_EMPTY_STORAGE 1
define HAL_STORAGE_SIZE 16384
# Add CS pins to ensure they are high in bootloader
PA4 MPU6000_CS CS
PA15 FLASH_CS CS
PE4 AT7456E_CS CS

View File

@ -0,0 +1,136 @@
# hw definition file for processing by chibios_pins.py
# for iFlight Beast F7 hardware.
# thanks to betaflight for pin information
# MCU class and specific type
MCU STM32F7xx STM32F745xx
# board ID for firmware load
APJ_BOARD_ID 1026
# crystal frequency, setup to use external oscillator
OSCILLATOR_HZ 8000000
FLASH_SIZE_KB 1024
# bootloader takes first sector
FLASH_RESERVE_START_KB 96
# only one I2C bus
I2C_ORDER I2C1
# order of UARTs (and USB)
SERIAL_ORDER OTG1 USART1 USART2 USART3 UART4 EMPTY EMPTY UART7
# Buzzer - DMA timer channel use by LEDs
#PD15 TIM4_CH4 TIM4 GPIO(80) ALARM
PD15 BUZZER OUTPUT GPIO(80) LOW
define HAL_BUZZER_PIN 80
define HAL_BUZZER_ON 1
define HAL_BUZZER_OFF 0
# USB
PA11 OTG_FS_DM OTG1
PA12 OTG_FS_DP OTG1
# Debug
PA13 JTMS-SWDIO SWD
PA14 JTCK-SWCLK SWD
# SPI1 for MPU6000
PA4 MPU6000_CS CS
PA5 SPI1_SCK SPI1
PA6 SPI1_MISO SPI1
PA7 SPI1_MOSI SPI1
# SPI3 for Flash Storage 16mb
PA15 FLASH_CS CS
PC10 SPI3_SCK SPI3
PC11 SPI3_MISO SPI3
PC12 SPI3_MOSI SPI3
# SPI4 for OSD
PE4 AT7456E_CS CS
PE2 SPI4_SCK SPI4
PE5 SPI4_MISO SPI4
PE6 SPI4_MOSI SPI4
# I2C1 for baro
PB8 I2C1_SCL I2C1 PULLUP
PB9 I2C1_SDA I2C1 PULLUP
PC3 BATT_VOLTAGE_SENS ADC1 SCALE(1)
PC2 BATT_CURRENT_SENS ADC1 SCALE(1)
# define default battery setup
define HAL_BATT_VOLT_PIN 13
define HAL_BATT_CURR_PIN 12
define HAL_BATT_VOLT_SCALE 10.9
define HAL_BATT_CURR_SCALE 28.5
define HAL_BATT_MONITOR_DEFAULT 4
PC5 RSSI_ADC ADC1
# USART1 - RCIN
PA10 USART1_RX USART1
PA9 USART1_TX USART1
# USART2 (DJI)
PA2 USART2_TX USART2
PA3 USART2_RX USART2 NODMA
# USART3 (DJI RCIN)
PB11 USART3_RX USART3
define HAL_SERIAL3_PROTOCOL SerialProtocol_RCIN
# UART4
PA0 UART4_TX UART4
PA1 UART4_RX UART4 NODMA
# UART7
PE7 UART7_RX UART7
PE8 UART7_TX UART7 NODMA
# Motors
PB1 TIM3_CH4 TIM3 PWM(1) GPIO(50) # 1
PE9 TIM1_CH1 TIM1 PWM(2) GPIO(51) # 2
PE11 TIM1_CH2 TIM1 PWM(3) GPIO(52) BIDIR # 3
PB0 TIM3_CH3 TIM3 PWM(4) GPIO(53) BIDIR # 4
# NeoPixel LED strip
PD12 TIM4_CH1 TIM4 PWM(5) GPIO(54)
PC13 LED0 OUTPUT LOW GPIO(90) # Blue LED
DMA_PRIORITY USART1* TIM1* TIM3*
DMA_NOSHARE SPI3_TX TIM1_CH2 TIM3_CH3
define HAL_STORAGE_SIZE 16384
define STORAGE_FLASH_PAGE 1
# enable logging to dataflash
define HAL_LOGGING_DATAFLASH
# spi devices
SPIDEV mpu6000 SPI1 DEVID1 MPU6000_CS MODE3 1*MHZ 4*MHZ
SPIDEV dataflash SPI3 DEVID2 FLASH_CS MODE3 32*MHZ 32*MHZ
SPIDEV osd SPI4 DEVID4 AT7456E_CS MODE0 10*MHZ 10*MHZ
# no built-in compass and no external I2C so no compass
define ALLOW_ARM_NO_COMPASS
define HAL_COMPASS_DEFAULT HAL_COMPASS_NONE
define HAL_I2C_INTERNAL_MASK 0
# one IMU
IMU Invensense SPI:mpu6000 ROTATION_YAW_270
define HAL_DEFAULT_INS_FAST_SAMPLE 1
# one BARO
BARO BMP280 I2C:0:0x76
# setup for OSD
define OSD_ENABLED 1
define HAL_OSD_TYPE_DEFAULT 1
ROMFS_WILDCARD libraries/AP_OSD/fonts/font*.bin
define BOARD_PWM_COUNT_DEFAULT 5
define STM32_PWM_USE_ADVANCED TRUE

View File

@ -0,0 +1,87 @@
# iFlight Beast H7 55A AIO Flight Controller
https://shop.iflight-rc.com/index.php?route=product/product&product_id=1376
The Beast H7 AIO is a flight controller produced by [iFlight](https://shop.iflight-rc.com/).
## Features
- MCU: BGA-STM32H743
- Gyro: MPU6000
- 16Mb Onboard Flash
- BEC output: 5V 2.5A
- Barometer: DPS310
- OSD: AT7456E
- 5 UARTS: (UART1, UART2, UART3, UART4, UART7)
- 5 PWM outputs (4 motors and 1 LED)
## Pinout
![Beast H7 AIO Board](beast_h7_pinout.png "Beast H7 AIO")
## UART Mapping
The UARTs are marked Rn and Tn in the above pinouts. The Rn pin is the
receive pin for UARTn. The Tn pin is the transmit pin for UARTn.
|Name|Pin|Function|
|:-|:-|:-|
|SERIAL0|COMPUTER|USB|
|SERIAL1|RX1/TX1|UART1 (Telem1 / Alt RC Input/Output)|
|SERIAL2|TX2/RX2|UART2 (DJI)|
|SERIAL3|RX3|UART3 (DJI RC Input)|
|SERIAL4|TX4/RX4|UART4 (GPS)|
|SERIAL7|TX7/RX7|UART7|
All UARTS support DMA.
## RC Input
RC input is configured on the (UART3_RX) pin which forms part of the DJI connector. It supports all RC protocols.
For RC input/output use UART1 wih SERIAL1_PROTOCOL as 23 and set SERIAL3_PROTOCOL set to -1
## OSD Support
The Beast H7 AIO supports OSD using OSD_TYPE 1 (MAX7456 driver).
## PWM Output
The Beast H7 AIO supports up to 4 PWM outputs. The pads for motor output ESC1 to ESC4 on the above diagram are for the 4 outputs. All 4 outputs support DShot as well as all PWM types.
The PWM are in in two groups.
Channels within the same group need to use the same output rate. If
any channel in a group uses DShot then all channels in the group need
to use DShot.
## Battery Monitoring
The board has a builtin voltage sensor. The voltage sensor can handle up to 6S
LiPo batteries.
The correct battery setting parameters are:
- BATT_MONITOR 4
- BATT_VOLT_PIN 12
- BATT_VOLT_MULT around 10.9
- BATT_CURR_PIN 13
- BATT_CURR_MULT around 28.5
These are set by default in the firmware and shouldn't need to be adjusted
## Compass
The Beast H7 AIO does not have a builtin compass and you cannot attach an external compass due to the lack of an external I2C connector.
## NeoPixel LED
The board includes a NeoPixel LED on the underside which is pre-configured to output ArduPilot sequences. This is the fifth PWM output.
## Loading Firmware
Initial firmware load can be done with DFU by plugging in USB with the
bootloader button pressed. Then you should load the "with_bl.hex"
firmware, using your favourite DFU loading tool.
Once the initial firmware is loaded you can update the firmware using
any ArduPilot ground station software. Updates should be done with the
*.apj firmware files.

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -103,7 +103,7 @@ PD12 TIM4_CH1 TIM4 PWM(5) GPIO(54)
PC13 LED0 OUTPUT LOW GPIO(90) # Blue LED PC13 LED0 OUTPUT LOW GPIO(90) # Blue LED
DMA_PRIORITY TIM1* TIM3* DMA_PRIORITY TIM1* TIM3*
DMA_NOSHARE TIM1_UP TIM3_UP DMA_NOSHARE SPI1_RX SPI3_TX TIM1* TIM3* TIM4_UP USART1_TX
define HAL_STORAGE_SIZE 16384 define HAL_STORAGE_SIZE 16384
# use last 2 pages for flash storage # use last 2 pages for flash storage
@ -114,11 +114,10 @@ define STORAGE_FLASH_PAGE 14
define HAL_LOGGING_DATAFLASH define HAL_LOGGING_DATAFLASH
# spi devices # spi devices
SPIDEV mpu6000 SPI1 DEVID1 MPU6000_CS MODE3 1*MHZ 2*MHZ SPIDEV mpu6000 SPI1 DEVID1 MPU6000_CS MODE3 1*MHZ 4*MHZ
SPIDEV dataflash SPI3 DEVID2 FLASH_CS MODE3 32*MHZ 32*MHZ SPIDEV dataflash SPI3 DEVID2 FLASH_CS MODE3 32*MHZ 32*MHZ
SPIDEV osd SPI4 DEVID4 AT7456E_CS MODE0 10*MHZ 10*MHZ SPIDEV osd SPI4 DEVID4 AT7456E_CS MODE0 10*MHZ 10*MHZ
DMA_NOSHARE SPI1_RX SPI3_TX TIM1* TIM3*
# no built-in compass and no external I2C so no compass # no built-in compass and no external I2C so no compass
define ALLOW_ARM_NO_COMPASS define ALLOW_ARM_NO_COMPASS