diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-05-28 13:49:46 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-05-28 13:49:46 +0200 |
commit | cf3ba89c46301bb8c0a1eda470c353801117fc0b (patch) | |
tree | 4b9c954fc1af7fce01bbae8106a56a586a2d170c /src/app/i2cdetect | |
parent | 060efcf52cb596194a037b4e11f5035fc969efd6 (diff) |
softi2c driver: move to kconfig-first approach
Diffstat (limited to 'src/app/i2cdetect')
-rw-r--r-- | src/app/i2cdetect/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/i2cdetect/main.cc b/src/app/i2cdetect/main.cc index 95a34bb..ab954d7 100644 --- a/src/app/i2cdetect/main.cc +++ b/src/app/i2cdetect/main.cc @@ -9,7 +9,7 @@ #ifdef DRIVER_HARDWARE_I2C #include "driver/i2c.h" #endif -#ifdef DRIVER_SOFTI2C +#ifdef CONFIG_driver_softi2c #include "driver/soft_i2c.h" #endif |