mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix filesystem size for RP2040 OTA (#3947)
This commit is contained in:
parent
9865cb7f55
commit
2de891dc32
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ async def to_code(config):
|
|||
)
|
||||
|
||||
cg.add_platformio_option("board_build.core", "earlephilhower")
|
||||
cg.add_platformio_option("board_build.filesystem_size", "0.5m")
|
||||
cg.add_platformio_option("board_build.filesystem_size", "1m")
|
||||
|
||||
ver: cv.Version = CORE.data[KEY_CORE][KEY_FRAMEWORK_VERSION]
|
||||
cg.add_define(
|
||||
|
|
Loading…
Reference in a new issue