Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions 10-compiling_projects_with_headless_in_nuclei_studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@

很多客户咨询怎么在Nuclei Studio上使用IDE的无头Headless模式来构建和编译工程。

## 解决方案
## 解决方案

> 所有以 ``NucleiStudio.exe`` 开头的命令行执行时,会有一个弹框显示执行日志,如果需疲敝弹框,可以将命令改为 ``eclipsec.exe``
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo detected: The phrase '如果需疲敝弹框' seems to contain a typographical error. It likely should be '如果需屏蔽弹框' so that it correctly describes hiding the pop-up log window.

Suggested change
> 所有以 ``NucleiStudio.exe`` 开头的命令行执行时,会有一个弹框显示执行日志,如果需疲敝弹框,可以将命令改为 ``eclipsec.exe``
> 所有以 ``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的路径。

Expand Down
10 changes: 5 additions & 5 deletions 26-debugging_support_for_freertos_by_openocd.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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内容**

Expand All @@ -49,15 +49,15 @@ 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调试工程**

Debug运行程序,打开Debugger Console视图。

在Debugger Console视图下输入info threads,回车。

![image-20250513165625083](asserts\images\26\26-5.png)
![image-20250513165625083](asserts/images/26/26-5.png)

### 使用说明

Expand Down