Code style fix

This commit is contained in:
rueckix 2022-04-29 23:47:53 +02:00 committed by GitHub
parent 10beb907c2
commit c6dd834e35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,8 +44,7 @@ uint8_t * Stm32Platform::getEepromBuffer(uint16_t size)
_eepromPtr = new uint8_t[size]; _eepromPtr = new uint8_t[size];
eeprom_buffer_fill(); eeprom_buffer_fill();
for (uint16_t i = 0; i < size; ++i) for (uint16_t i = 0; i < size; ++i)
_eepromPtr[i] = eeprom_buffered_read_byte(i); _eepromPtr[i] = eeprom_buffered_read_byte(i);
} }
return _eepromPtr; return _eepromPtr;