Biancaa Ramesh
Biancaa Ramesh
Adding a shell script for size checking, for windows and linux , for now the optimization is just with the strip flag ,will add more flags to optimize the size...
Fixes the issue : https://github.com/embox/embox/issues/3746 All the actual code references for including it in the code as in .conf files: Checking for f407 discovery board: ``` `make confload-project/pjsip/stm32f4discovery make clean...
* This patch fixes some of the spell issues pointed by codespell. * To make the repo better without spelling errors.
I integrated the ETL library as a third-party dependency in the Embox project by placing it in the third_party directory and adding its include paths in mk/flags.mk. Since ETL is...
Adds build-time validation to ensure control and widget names do not exceed maximum allowed length, preventing kernel load errors for topologies with overly long names. * Still in progress *...
This PR resolves this issue https://github.com/riscv-collab/riscv-openocd/issues/1264 These functions currently do not exit early if program the program buffer in the target is insufficient: csr_read_progbuf() fpr_read_progbuf() csr_write_progbuf() fpr_write_progbuf() This pr resolves...
* Solves the issue : https://github.com/riscv-collab/riscv-openocd/issues/1309 * Added a warning message incase of force writing a dirty register. * Helps to see which registers are inconsistent. * Can later filter...
This patch introduces batch.c and batch.h to implement the skip-rti-nop mechanism for RISC-V DTM transactions. The new logic optimizes DMI command batching by skipping redundant RTI and NOP sequences, improving...
cleared wps_to_enable in _exit after there is no further reference to it . The memory allocated at : ``` _exit: if (enable_watchpoints(target, wps_to_enable) != ERROR_OK) { success = false; LOG_TARGET_ERROR(target,...