Remove vestigal lfs assert

This commit is contained in:
Ben Meadors 2025-01-23 17:11:36 -06:00
parent 245c84a473
commit b1653ee588

View File

@ -8,7 +8,6 @@ static File openFile(const char *filename, bool fullAtomic)
concurrency::LockGuard g(spiLock);
LOG_DEBUG("Opening %s, fullAtomic=%d", filename, fullAtomic);
#ifdef ARCH_NRF52
lfs_assert_failed = false;
FSCom.remove(filename);
return FSCom.open(filename, FILE_O_WRITE);
#endif