From af5f00732d9551dca5040b18b822393ef27081c1 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 8 May 2014 11:26:13 -0600 Subject: Update the displayed I2C on each get iteraction (not the same starting address). From Ryan VanSickle --- apps/system/i2c/i2c_get.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/system') diff --git a/apps/system/i2c/i2c_get.c b/apps/system/i2c/i2c_get.c index 08510af4b..f2c16d4a7 100644 --- a/apps/system/i2c/i2c_get.c +++ b/apps/system/i2c/i2c_get.c @@ -164,7 +164,8 @@ int i2ccmd_get(FAR struct i2ctool_s *i2ctool, int argc, FAR char **argv) if (ret == OK) { i2ctool_printf(i2ctool, "READ Bus: %d Addr: %02x Subaddr: %02x Value: ", - i2ctool->bus, i2ctool->addr, i2ctool->regaddr); + i2ctool->bus, i2ctool->addr, regaddr); + if (i2ctool->width == 8) { i2ctool_printf(i2ctool, "%02x\n", result); -- cgit v1.2.3