diff --git a/src/app/bme680-max44009-logger/Makefile.inc b/src/app/bme680-max44009-logger/Makefile.inc index 33d05b0481f6e62f461bebdb67127dacf9715ed7..d98dad236fcf89eafcde30221bed0eeafe1816ba 100644 --- a/src/app/bme680-max44009-logger/Makefile.inc +++ b/src/app/bme680-max44009-logger/Makefile.inc @@ -9,7 +9,7 @@ ifdef app override arch_drivers += ,i2c CONFIG_driver_bme680 = y CONFIG_driver_max44009 = y - COMMON_FLAGS += -DCONFIG_driver_bme680 -DCONFIG_driver_max44009 + COMMON_FLAGS += -DCONFIG_driver_bme680 -DCONFIG_driver_max44009 -DCONFIG_meta_driver_i2c -DCONFIG_meta_driver_hardware_i2c endif ifdef CONFIG_arch_posix diff --git a/src/app/button-and-motion-logger/Makefile.inc b/src/app/button-and-motion-logger/Makefile.inc index 65916aca08029ef7d60320094550eb13694621d7..803ef62efcd5052199f1f47f9fd9a7b4416c6e72 100644 --- a/src/app/button-and-motion-logger/Makefile.inc +++ b/src/app/button-and-motion-logger/Makefile.inc @@ -7,5 +7,7 @@ ifdef app override arch_drivers += ,adc,i2c CONFIG_driver_mpu9250 = y - COMMON_FLAGS += -DCONFIG_driver_mpu9250 + CONFIG_meta_driver_i2c = y + CONFIG_meta_driver_hardware_i2c = y + COMMON_FLAGS += -DCONFIG_driver_mpu9250 -DCONFIG_meta_driver_i2c -DCONFIG_meta_driver_hardware_i2c endif diff --git a/src/app/i2cdetect/Makefile.inc b/src/app/i2cdetect/Makefile.inc index 8a0b64e1dc0538eda0131af9e6b3130a66538d92..0ce00f117850df63d8c3181823ca3b038a628036 100644 --- a/src/app/i2cdetect/Makefile.inc +++ b/src/app/i2cdetect/Makefile.inc @@ -8,4 +8,5 @@ ifdef app override arch_drivers += ,i2c CONFIG_meta_driver_i2c = y CONFIG_meta_driver_hardware_i2c = y + COMMON_FLAGS += -DCONFIG_meta_driver_i2c -DCONFIG_meta_driver_hardware_i2c endif diff --git a/src/app/mpu9250_motionlog/Makefile.inc b/src/app/mpu9250_motionlog/Makefile.inc index 93b8d337baf198a16e9fb52aeaa92b607a1d53f6..7d5621b5c1eb86398869f2c2af65052a01a45bca 100644 --- a/src/app/mpu9250_motionlog/Makefile.inc +++ b/src/app/mpu9250_motionlog/Makefile.inc @@ -7,5 +7,7 @@ ifdef app override arch_drivers += ,i2c CONFIG_driver_mpu9250 = y - COMMON_FLAGS += -DCONFIG_driver_mpu9250 + CONFIG_meta_driver_i2c = y + CONFIG_meta_driver_hardware_i2c = y + COMMON_FLAGS += -DCONFIG_driver_mpu9250 -DCONFIG_meta_driver_i2c -DCONFIG_meta_driver_hardware_i2c endif diff --git a/src/app/ssd1306test/Makefile.inc b/src/app/ssd1306test/Makefile.inc index 8c4936b61c3148715ba09d6aae6c8a6b7ba82eef..3f0e13ef1f063e0e5bd9a26bfeb7fba2e30fa80b 100644 --- a/src/app/ssd1306test/Makefile.inc +++ b/src/app/ssd1306test/Makefile.inc @@ -7,8 +7,13 @@ ifdef app loop = 1 override arch_drivers += ,i2c + CONFIG_meta_driver_i2c = y + CONFIG_meta_driver_hardware_i2c = y CONFIG_driver_ssd1306 = y - COMMON_FLAGS += -DCONFIG_driver_ssd1306 CONFIG_driver_ssd1306_width = 128 CONFIG_driver_ssd1306_height = 64 + CONFIG_framebuffer = y + CONFIG_framebuffer_width = 128 + CONFIG_framebuffer_height = 64 + COMMON_FLAGS += -DCONFIG_driver_ssd1306 -DCONFIG_meta_driver_i2c -DCONFIG_meta_driver_hardware_i2c -DCONFIG_driver_ssd1306 -DCONFIG_driver_ssd1306_width=128 -DCONFIG_driver_ssd1306_height=64 -DCONFIG_framebuffer -DCONFIG_framebuffer_width=128 -DCONFIG_framebuffer_height=64 endif diff --git a/src/app/wetterstation/Makefile.inc b/src/app/wetterstation/Makefile.inc index 0eea52a8aaf27f7c93e1fc002662af73861caa61..c32523a1ea2e35d6dc87ca2815b6dcab6c127862 100644 --- a/src/app/wetterstation/Makefile.inc +++ b/src/app/wetterstation/Makefile.inc @@ -6,4 +6,5 @@ ifdef app loop = 1 + override arch_drivers += ,adc endif