fdcavalcanti opened a new pull request, #18520: URL: https://github.com/apache/nuttx/pull/18520
## Summary <!-- This field should contain a summary of the changes. It will be pre-filled with the commit's message and descriptions. Adjust it accordingly --> * boards/risc-v: increase init stacksize for efuse defconfig on ESP32-C6 Fixes a crash when executing basic commands on the efuse defconfig. Signed-off-by: Filipe Cavalcanti <[email protected]> ## Impact <!-- Please fill the following sections with YES/NO and provide a brief explanation --> Impact on user: Yes, fixes efuse defconfig crash. <!-- Does it impact user's applications? How? --> Impact on build: No. <!-- Does it impact on building NuttX? How? (please describe the required changes on the build system) --> Impact on hardware: No. <!-- Does it impact a specific hardware supported by NuttX? --> Impact on documentation: No. <!-- Does it impact the existing documentation? Please provide additional documentation to reflect that --> Impact on security: No. <!-- Does it impact NuttX's security? --> Impact on compatibility: No. <!-- Does it impact compatibility between previous and current versions? Is this a breaking change? --> ## Testing Build `esp32c3-devkit:efuse` and execute `ps` command. <!-- Please provide all the testing procedure. Consider that upstream reviewers should be able to reproduce the same testing performed internally --> ### Building <!-- Provide how to build the test for each SoC being tested --> - `./tools/configure.sh esp32c6-devkitc:efuse` - Enable debug assertions - Make and flash ### Running <!-- Provide how to run the test for each SoC being tested --> Boot the device and execute `ps` command. ### Results <!-- Provide tests' results and runtime logs --> Before changes: ``` nsh> ps TID PID PPID PRI POLICY TYPE NPX STATE EVENT riscv_exception: EXCEPTION: Load access fault. MCAUSE: 00000005, EPC: 40031e3e, MTVAL: 5f68736e riscv_exception: PANIC!!! Exception = 00000005 dump_assert_info: Current Version: NuttX 12.12.0 72be575b1a Mar 10 2026 12:09:09 risc-v dump_assert_info: Assertion failed panic: at file: common/riscv_exception.c:134 task: nsh_main process: nsh_main 0x4200fa0a ... ``` After changes: ``` nsh> ps TID PID PPID PRI POLICY TYPE NPX STATE EVENT SIGMASK STACK COMMAND 0 0 0 0 FIFO Kthread - Ready 0000000000000000 0002016 Idle_Task 1 1 0 100 RR Task - Running 0000000000000000 0004032 nsh_main nsh> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
