Skip to content
Snippets Groups Projects
Unverified Commit 54492ef4 authored by Gunar Schorcht's avatar Gunar Schorcht Committed by GitHub
Browse files

Merge pull request #10451 from leandrolanzieri/pr/esp8266/i2c_buses_array

cpu/esp8266: Fix i2c buses array #ifdef
parents 059af139 566ef9f1
No related branches found
No related tags found
No related merge requests found
......@@ -75,21 +75,21 @@ typedef struct
static _i2c_bus_t _i2c_bus[] =
{
#if defined(I2C0_SDA) && defined(I2C0_SDA)
#if defined(I2C0_SDA) && defined(I2C0_SCL)
{
.speed = I2C0_SPEED,
.sda = I2C0_SDA,
.scl = I2C0_SCL
},
#endif
#if defined(I2C1_SDA) && defined(I2C1_SDA)
#if defined(I2C1_SDA) && defined(I2C1_SCL)
{
.speed = I2C1_SPEED,
.sda = I2C1_SDA,
.scl = I2C1_SCL
},
#endif
#if defined(I2C2_SDA) && defined(I2C2_SDA)
#if defined(I2C2_SDA) && defined(I2C2_SCL)
{
.speed = I2C2_SPEED,
.sda = I2C2_SDA,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment