-
-
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.
Enable better printing support for Storage/IFS classes, BitSet, TRange (
#2557) - Classes don't need to be virtual to support `printTo` method - Avoid `strlen` call in `Print::println()` - Fix issue with streaming operator and char[] - Replace String += operator overloads with template method - Update HostTests using Serial instead of debugf() - Add BitSet printTo() - Update HostTests printing - Revise Storage/IFS debug printing, making Device, Partition and various IFS classes printable - Add TRange printing
- Loading branch information
Showing
31 changed files
with
205 additions
and
216 deletions.
There are no files selected for viewing
Submodule FlashString
updated
8 files
+2 −2 | src/include/FlashString/ArrayPrinter.hpp | |
+2 −2 | src/include/FlashString/MapPrinter.hpp | |
+2 −2 | src/include/FlashString/StringPrinter.hpp | |
+12 −17 | test/app/array.cpp | |
+3 −8 | test/app/custom.cpp | |
+18 −25 | test/app/map.cpp | |
+4 −15 | test/app/string.cpp | |
+7 −10 | test/app/vector.cpp |
Submodule IFS
updated
15 files
+8 −8 | src/Access.cpp | |
+8 −60 | src/Debug.cpp | |
+1 −1 | src/FileCopier.cpp | |
+37 −0 | src/IFileSystem.cpp | |
+53 −0 | src/Stat.cpp | |
+37 −0 | src/TimeStamp.cpp | |
+11 −1 | src/include/IFS/Access.h | |
+0 −1 | src/include/IFS/Debug.h | |
+2 −0 | src/include/IFS/IFileSystem.h | |
+15 −9 | src/include/IFS/Profiler.h | |
+3 −0 | src/include/IFS/Stat.h | |
+11 −0 | src/include/IFS/TimeStamp.h | |
+3 −3 | test/modules/Host/Hybrid.cpp | |
+1 −1 | test/modules/Links.cpp | |
+1 −1 | test/modules/Performance.cpp |
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
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
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
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
Submodule LittleFS
updated
12 files
+5 −16 | samples/Inspect/app/application.cpp | |
+9 −0 | test/Makefile | |
+4 −0 | test/README.rst | |
+0 −0 | test/app/.cs | |
+22 −0 | test/app/Basic.cpp | |
+50 −0 | test/app/application.cpp | |
+3 −0 | test/app/modules.h | |
+33 −0 | test/component.mk | |
+9 −0 | test/lfstest-esp32.hw | |
+9 −0 | test/lfstest-std.hw | |
+13 −0 | test/lfstest.hw | |
+5 −4 | tools/fscopy/app/main.cpp |
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
Oops, something went wrong.