1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

Add support external clock for gyro ICM42688P (#13912)

This commit is contained in:
cvetaevvitaliy 2024-10-23 22:49:18 +03:00 committed by GitHub
parent 866191dfad
commit 715c1671a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 105 additions and 9 deletions

View file

@ -5141,6 +5141,9 @@ const cliResourceValue_t resourceTable[] = {
#endif
DEFW( OWNER_GYRO_EXTI, PG_GYRO_DEVICE_CONFIG, gyroDeviceConfig_t, extiTag, MAX_GYRODEV_COUNT ),
DEFW( OWNER_GYRO_CS, PG_GYRO_DEVICE_CONFIG, gyroDeviceConfig_t, csnTag, MAX_GYRODEV_COUNT ),
#if defined(USE_GYRO_CLKIN)
DEFW( OWNER_GYRO_CLKIN, PG_GYRO_DEVICE_CONFIG, gyroDeviceConfig_t, clkIn, MAX_GYRODEV_COUNT),
#endif
#ifdef USE_USB_DETECT
DEFS( OWNER_USB_DETECT, PG_USB_CONFIG, usbDev_t, detectPin ),
#endif