make the I2C and SPI device signons distinct

This commit is contained in:
px4dev 2012-08-25 18:26:21 -07:00
parent 5c6b6038a7
commit 26244c43f2
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ I2C::init()
}
// tell the world where we are
log("on bus %d at 0x%02x", _bus, _address);
log("on I2C bus %d at 0x%02x", _bus, _address);
out:
return ret;

View File

@ -111,7 +111,7 @@ SPI::init()
}
// tell the workd where we are
log("on bus %d at %d", _bus, _device);
log("on SPI bus %d at %d", _bus, _device);
out:
return ret;