From 2504e36e5f5fab24c86fe4b2974e4209aae8a1af Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Tue, 25 Aug 2015 10:55:30 +0100 Subject: [PATCH] intel_minnow_max.c: change i2c bus count to 0 There are technically two i2c buses that are user accesible on minnowboard max but the other one is on the high speed expansion header that I've never tested and it's not mapped in mraa so leave this to 1 until someone enables it. Signed-off-by: Brendan Le Foll --- src/x86/intel_minnow_max.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x86/intel_minnow_max.c b/src/x86/intel_minnow_max.c index fa58328..d54e26c 100644 --- a/src/x86/intel_minnow_max.c +++ b/src/x86/intel_minnow_max.c @@ -152,7 +152,7 @@ mraa_intel_minnow_max() mraa_set_pininfo(b, 26, "IBL8254", (mraa_pincapabilities_t){ 1, 1, 0, 0, 0, 0, 0, 0 }, 208); // Set number of i2c adaptors usable from userspace - b->i2c_bus_count = 2; + b->i2c_bus_count = 1; // Configure i2c adaptor #7 and make it the default int pin_index_sda, pin_index_scl;