Private
Public Access
2
0

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 <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2015-08-25 10:55:30 +01:00
parent 02399b61f9
commit 2504e36e5f

View File

@@ -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;