Add STM32F1 support for SD-based EEPROM

This commit is contained in:
Scott Lahteine
2018-07-06 22:32:15 -05:00
parent 63f4c9bdb9
commit d05e832f29
8 changed files with 29 additions and 44 deletions

View File

@ -33,13 +33,8 @@
namespace HAL {
namespace PersistentStore {
bool access_start() {
return true;
}
bool access_finish(){
return true;
}
bool access_start() { return true; }
bool access_finish() { return true; }
bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
while (size--) {