1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 01:05:27 +03:00

Merge pull request #9750 from supersidor/matekf405-barometer-fix

I2C3_SCL and I2C3_SDA pins are mixed up
This commit is contained in:
Michael Keller 2020-06-22 00:31:44 +12:00 committed by GitHub
commit 3eabb814ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,8 +74,8 @@
#define USE_I2C_DEVICE_3
#define I2C_DEVICE (I2CDEV_3)
#define I2C3_SCL PC9 // S4 pad
#define I2C3_SDA PA8 // S6 pad
#define I2C3_SCL PA8 // S4 pad
#define I2C3_SDA PC9 // S6 pad
#define BARO_I2C_INSTANCE (I2CDEV_3)
#else
#define USE_I2C_DEVICE_1