Merge pull request #1110 from keyboardio/gd32-storage-commit-fix

pull/1112/head
Jesse Vincent 3 years ago committed by GitHub
commit a4f327df7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,7 +37,9 @@ class GD32Flash: public EEPROMClass<_StorageProps::length> {
void setup() { void setup() {
EEPROMClass<_StorageProps::length>::begin(); EEPROMClass<_StorageProps::length>::begin();
} }
void commit() {} void commit() {
EEPROMClass<_StorageProps::length>::commit();
}
}; };
} // namespace storage } // namespace storage

Loading…
Cancel
Save