mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 09:59:01 +00:00
fix for nrf52 lfs assert boot loop (#5670)
* fix for nrf52 lfs assert boot loop * guard format in ifdef FSCom block * add ifndef portduino for format call
This commit is contained in:
parent
b12ac6d564
commit
b1d25ac7b7
@ -55,6 +55,15 @@ extern "C" void lfs_assert(const char *reason)
|
|||||||
{
|
{
|
||||||
LOG_ERROR("LFS assert: %s", reason);
|
LOG_ERROR("LFS assert: %s", reason);
|
||||||
lfs_assert_failed = true;
|
lfs_assert_failed = true;
|
||||||
|
|
||||||
|
#ifndef ARCH_PORTDUINO
|
||||||
|
#ifdef FSCom
|
||||||
|
// CORRUPTED FILESYSTEM. This causes bootloop so
|
||||||
|
// might as well try formatting now.
|
||||||
|
LOG_ERROR("Trying FSCom.format()");
|
||||||
|
FSCom.format();
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user