-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HELP] ESP32-C3 Lower memory on 12.7 #14263
Comments
Thanks for reporting. |
Build
12.6
12.7
|
12.7 with ESP-HAL-8e8e62cf6a7ae8a9659b91706024cab38af29118 (Jul 10, 2024)
|
12.7 with ESP-HAL-4da68b02f8d65613d80eadc269034acb84aca756 (Aug 13, 2024)
|
Hi @metarutaiga, |
Show free memory after make diff --git a/tools/espressif/Config.mk b/tools/espressif/Config.mk
index 4e76bd1d0c..ab6e659c8b 100644
--- a/tools/espressif/Config.mk
+++ b/tools/espressif/Config.mk
@@ -136,6 +136,10 @@ define MKIMAGE
imgtool sign $(IMGTOOL_SIGN_ARGS) nuttx.hex nuttx.bin
$(Q) echo nuttx.bin >> nuttx.manifest
$(Q) echo "Generated: nuttx.bin (MCUboot compatible)"
+ $(Q) git log -1 --pretty=" * nuttx:%cs (%h)"
+ $(Q) git -C arch/risc-v/src/esp32c3/esp-hal-3rdparty log -1 --pretty=" * hal:%cs (%h)"
+ $(Q) imgtool dumpinfo nuttx.bin | grep img_size | awk -F ' ' '{print " * " "firmware:" 0 + $$2 " (" $$2 ")"}'
+ $(Q) objdump -h nuttx | grep .[di]ram | awk -F ' ' '{print "0x" $$3}' | awk '{s+=$$1} END {print " * " "free:" 16384 + 393216 - s "\n * " "used:" s}'
endef
else
define MKIMAGE Result
|
I found it updated and replaced the rom codes from 5.1.4 to 5.1.5
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
I upgrade to 12.7 but it show lower memory than 12.6
Verification
The text was updated successfully, but these errors were encountered: