diff --git a/10-compiling_projects_with_headless_in_nuclei_studio.md b/10-compiling_projects_with_headless_in_nuclei_studio.md index e69a8f2..9a2cba7 100644 --- a/10-compiling_projects_with_headless_in_nuclei_studio.md +++ b/10-compiling_projects_with_headless_in_nuclei_studio.md @@ -4,9 +4,11 @@ 很多客户咨询怎么在Nuclei Studio上使用IDE的无头Headless模式来构建和编译工程。 -## 解决方案 +## 解决方案 + +> 所有以 ``NucleiStudio.exe`` 开头的命令行执行时,会有一个弹框显示执行日志,如果需疲敝弹框,可以将命令改为 ``eclipsec.exe`` -> 以下文档是在**2024.06**版本的IDE中实测,作为补充说明。 +> 以下文档是在**2024.06**版本的IDE中实测,作为补充说明。 因NucleiStudio 2024.06版运行在java 21的环境上,实际应用中很多用户的本地没有java 21环境,故在运行命令时发现在执行该命令时,因找不到对应的jre而报错。为解决上述问题,可以在本地机器上安装java 21的环境(如何安装用户可以自行搜索相关教程),也可以在命令行中通过 `-vm` 参数指定NucleiStudio 2024.06中自带的jre的路径。 diff --git a/26-debugging_support_for_freertos_by_openocd.md b/26-debugging_support_for_freertos_by_openocd.md index 34899e1..2ad7b6b 100644 --- a/26-debugging_support_for_freertos_by_openocd.md +++ b/26-debugging_support_for_freertos_by_openocd.md @@ -19,11 +19,11 @@ 在NucleiStudio IDE下载好0.7.1版本的sdk-nuclei_sdk。 -![image-20250513103947602](asserts\images\26\26-1.png) +![image-20250513103947602](asserts/images/26/26-1.png) 创建一个900的项目,如下图。 -![image-20250513170041690](asserts\images\26\26-2.png) +![image-20250513170041690](asserts/images/26/26-2.png) 开发板烧写对应的bit即可,这里我们使用u900_best_config_ku060_50M_c1dd7f44af_915aefa97_202504141013_v4.1.0.bit @@ -39,7 +39,7 @@ typedef uint32_t TickType_t; //#define portMAX_DELAY ( TickType_t )0xFFFFFFFFFFFFFFFFULL ~~~ -![image-20250513165844658](asserts\images\26\26-3.png) +![image-20250513165844658](asserts/images/26/26-3.png) **step3:修改openocd_evalsoc.cfg内容** @@ -49,7 +49,7 @@ typedef uint32_t TickType_t; target create $_TARGETNAME riscv -chain-position $_TARGETNAME -coreid $BOOTHART -rtos FreeRTOS ~~~ -![image-20250513165933970](asserts\images\26\26-4.png) +![image-20250513165933970](asserts/images/26/26-4.png) **step4:openocd调试工程** @@ -57,7 +57,7 @@ Debug运行程序,打开Debugger Console视图。 在Debugger Console视图下输入info threads,回车。 -![image-20250513165625083](asserts\images\26\26-5.png) +![image-20250513165625083](asserts/images/26/26-5.png) ### 使用说明