diff options
Diffstat (limited to 'i2c.c')
-rw-r--r-- | i2c.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,7 +24,7 @@ void I2C_Write(gulong address, guchar value) int device = open(I2C_BUS, O_RDWR); if (device == -1) { - g_print_debug("ERROR: could not open I2C bus %s\n", I2C_BUS); + g_print_debug("ERROR: could not open I2C bus %s for writing\n", I2C_BUS); return; } @@ -49,6 +49,7 @@ guchar I2C_Read(gulong address) int device = open(I2C_BUS, O_RDWR); if (device == -1) { + g_print_debug("ERROR: could not open I2C bus %s for reading\n", I2C_BUS); return 0; } |