mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-19 23:22:16 +03:00
host emulation: littlefs was not fully enabled (#6342)
This commit is contained in:
parent
17ee38074f
commit
aecf113850
@ -152,7 +152,7 @@ static struct option options[] =
|
||||
void cleanup ()
|
||||
{
|
||||
mock_stop_spiffs();
|
||||
// mock_stop_littlefs();
|
||||
mock_stop_littlefs();
|
||||
mock_stop_uart();
|
||||
}
|
||||
|
||||
@ -182,7 +182,7 @@ int main (int argc, char* const argv [])
|
||||
|
||||
for (;;)
|
||||
{
|
||||
int n = getopt_long(argc, argv, "hlcfbvi:S:s:", options, NULL);
|
||||
int n = getopt_long(argc, argv, "hlcfbvi:S:s:L:", options, NULL);
|
||||
if (n < 0)
|
||||
break;
|
||||
switch (n)
|
||||
@ -239,7 +239,7 @@ int main (int argc, char* const argv [])
|
||||
name += "-littlefs";
|
||||
name += String(littlefs_kb > 0? littlefs_kb: -littlefs_kb, DEC);
|
||||
name += "KB";
|
||||
// mock_start_littlefs(name, littlefs_kb);
|
||||
mock_start_littlefs(name, littlefs_kb);
|
||||
}
|
||||
|
||||
// setup global global_ipv4_netfmt
|
||||
|
Loading…
x
Reference in New Issue
Block a user