From 35a738f962d045f07eaba08890a5c1342a7dd053 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 3 May 2019 09:06:47 +0200 Subject: [PATCH] Forgot debug string --- common/i2c.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/i2c.c b/common/i2c.c index ceb548948..df5450f9f 100644 --- a/common/i2c.c +++ b/common/i2c.c @@ -606,7 +606,6 @@ int I2C_get_version(uint8_t *maj, uint8_t *min) { I2C_Reset_EnterMainProgram(); uint8_t len = I2C_BufferRead(resp, sizeof(resp), I2C_DEVICE_CMD_GETVERSION, I2C_DEVICE_ADDRESS_MAIN); if (len > 0) { - Dbprintf(" version.................v%x.%02d", maj, min); *maj = resp[0]; *min = resp[1]; return PM3_SUCCESS;