Skip to content

Commit

Permalink
Merge pull request #874 from bdring/FixInstallFS
Browse files Browse the repository at this point in the history
install-fs should refer to littlefs.bin, not spiffs.bin
  • Loading branch information
bdring committed Apr 26, 2023
2 parents 855b0c9 + 83f6a07 commit d0a3332
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install_scripts/posix/install-fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if ! . ./tools.sh; then exit 1; fi

if ! check_security; then exit 1; fi

LocalFS="0x3d0000 wifi/spiffs.bin"
LocalFS="0x3d0000 wifi/littlefs.bin"
esptool_write $LocalFS

deactivate
2 changes: 1 addition & 1 deletion install_scripts/win64/install-fs.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set EsptoolPath=win64\esptool.exe
set BaseArgs=--chip esp32 --baud 921600
set SetupArgs=--before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size detect

set LocalFS=0x3d0000 wifi\spiffs.bin
set LocalFS=0x3d0000 wifi\littlefs.bin

echo %EsptoolPath% %BaseArgs% %SetupArgs% %LocalFS%
%EsptoolPath% %BaseArgs% %SetupArgs% %LocalFS%
Expand Down

0 comments on commit d0a3332

Please sign in to comment.