Remove stray ` from STM32F1 HAL

As noted in #8585
This commit is contained in:
Scott Lahteine 2018-02-14 01:05:40 -06:00
parent 5b70d3da1c
commit 272f132b82

View File

@ -83,7 +83,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
for (int i = 0; i < size; i++) {
uint8_t c = HAL_STM32F1_eeprom_content[pos + i];
if (writing) value[i] = c`;
if (writing) value[i] = c;
crc16(crc, &c, 1);
}
pos += size;