Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello! I’ve updated the
py32f07x
example’s dependency on py32-hal to version 0.3.0.Due to limited RAM and some odd stack memory issues, I’ve split this PR into two commits for easier testing.
Enabling storage support required us to disable
defmt
.It also caused the stack pointer (SP) to drop to 0x2000668 when entering the
main
function, which is already within the .bss section (and will cause the program to fail to run if using flip-link). It increased stack memory usage by 9KB, which is abnormal.More info about it can be find in examples/use_rust/py32f07x/README.md
Note: defmt is not completely disabled in the current commit, and can be used in the current main.rs to get the current stack position. (ROM is not overflow under this condition but RAM is still overflow)
If the issue cannot be resolved, it may be best to merge only the first commit (I’ll remove the second commit).