-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Basic_IFS sample and TemplateStream (#2324)
* Use per-arch hardware configs, and reduce ESP32 app. partition size * Fix bug in ReadWriteStream::copyFrom() * Fix TemplateStream Tested against large (1MB) JSON listing generated from templates, issues arising. Need to check for remaining plain data before continuing with next tag search Move check for missing end tag after `evaluate` * Add test for fragmented read of variable values Verified that debug statements #1, #3 and #4 are triggered by the test. Use smaller read buffers for testing to stress code more
- Loading branch information
Showing
7 changed files
with
106 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"base_config": "basic_ifs", | ||
"arch": "Esp32", | ||
"partitions": { | ||
"rom0": { | ||
"size": "960K" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"base_config": "basic_ifs", | ||
"arch": "Esp8266", | ||
"partitions": { | ||
"rom0": { | ||
"size": "480K" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"base_config": "basic_ifs", | ||
"arch": "Host", | ||
"partitions": { | ||
"rom0": { | ||
"size": "480K" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters