Skip to content

Commit

Permalink
[target] HGLRCF411 enable dual gyro; add BMI270 ICM42688P (emuflight#…
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdCopter committed Apr 17, 2024
1 parent 57d9265 commit ab318f0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
30 changes: 22 additions & 8 deletions src/main/target/HGLRCF411/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
*/

#pragma once
#define TARGET_BOARD_IDENTIFIER "S411"
#define USBD_PRODUCT_STRING "HGLRCF411"
#define TARGET_MANUFACTURER_IDENTIFIER "HGLR"

#define BOARD_NAME HGLRCF411
#define MANUFACTURER_ID HGLR
#define TARGET_BOARD_IDENTIFIER "S411" // generic ID
#define FC_TARGET_MCU STM32F411 // not used in EmuF

#define ENABLE_DSHOT_DMAR true

Expand All @@ -39,14 +41,26 @@
#define USE_ACC
#define USE_ACC_SPI_MPU6000
#define USE_GYRO_SPI_MPU6000
#define USE_ACC_SPI_ICM42688P
#define USE_GYRO_SPI_ICM42688P
#define USE_ACCGYRO_BMI270

#define USE_SPI_GYRO
#define USE_EXTI
#define USE_GYRO_EXTI
#define USE_MPU_DATA_READY_SIGNAL

#define MPU_INT_EXTI PA1 //MPU_INT_EXTI
#define MPU6000_CS_PIN PA4 //GYRO_1_CS_PIN
#define MPU6000_SPI_INSTANCE SPI1 //GYRO_1_SPI_INSTANCE
#define GYRO_MPU6000_ALIGN CW180_DEG
#define ACC_MPU6000_ALIGN CW180_DEG
#define ACC_1_ALIGN CW180_DEG
#define GYRO_1_ALIGN CW180_DEG
#define GYRO_1_CS_PIN PA4
#define GYRO_1_EXTI_PIN PA1
#define GYRO_1_SPI_INSTANCE SPI1

#define USE_DUAL_GYRO

#define ACC_2_ALIGN CW0_DEG
#define GYRO_2_ALIGN CW0_DEG
#define GYRO_2_SPI_INSTANCE SPI1

// OSD
#define USE_MAX7456
Expand Down
2 changes: 2 additions & 0 deletions src/main/target/HGLRCF411/target.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ FEATURES += VCP ONBOARDFLASH
TARGET_SRC = \
drivers/accgyro/accgyro_mpu.c \
drivers/accgyro/accgyro_spi_mpu6000.c \
drivers/accgyro/accgyro_spi_icm426xx.c \
drivers/accgyro/accgyro_spi_bmi270.c \
drivers/compass/compass_hmc5883l.c \
drivers/compass/compass_qmc5883l.c \
drivers/max7456.c

0 comments on commit ab318f0

Please sign in to comment.