commented out something causing trouble with CI, it is in an unused function but I'd like to keep the comment there as a reference for future development effort

This commit is contained in:
Jake Dahl
2018-10-16 18:09:44 -06:00
committed by Daniel Agar
parent 6ba78858e3
commit 69b59b9d63

View File

@@ -360,7 +360,7 @@ int BATT_SMBUS::dataflash_read(uint16_t &address, void *data)
// When reading a BATT_SMBUS_MANUFACTURER_BLOCK_ACCESS the first 2 bytes will be the command code
// We will remove these since we do not care about the command code.
memcpy(data, &((uint8_t *)data)[2], DATA_BUFFER_SIZE);
//memcpy(data, &((uint8_t *)data)[2], DATA_BUFFER_SIZE);
return result;
}