沁恆 CH32V208(三): CH32V208 Ubuntu22.04 Makefile VSCode環境配置

来源:https://www.cnblogs.com/milton/archive/2023/05/03/17368566.html
-Advertisement-
Play Games

以沁恆官方的定製版 RISC-V Embedded GCC 和 OpenOCD 為例說明 Ubuntu 下如何配置基於Makefile的開發環境, 如何進行命令行Debug, 以及VSCode下Debug環境的配置 ...


目錄

硬體部分

  • CH32V208WBU6 評估板
  • WCH-LinkE 或 WCH-Link

硬體環境與Windows下相同, 不詳細介紹

軟體部分

沁恆已經開源WCH-Link的協議, 因此這部分的選項將會很豐富, 這裡還是以沁恆官方的定製版 RISC-V Embedded GCC 和 OpenOCD 為例進行說明.

下載

http://mounriver.com/download 下載最新的工具鏈. 當前版本是 MRS_Toolchain_Linux_X64_V170.tar.xz, 對於 CH32V208, V1.60版本也能支持. 壓縮包中包含 RISC-V Embedded GCC 和 OpenOCD.

配置

解壓工具鏈,

sudo tar -xvf MRS_Toolchain_Linux_X64_V170.tar.xz

在解壓後的目錄下有一個README, 這個文件比較重要. 因為沁恆每次出新版本都可能有一些變動, 導致前一個版本的 cfg 或者命令行無法使用, 這個 README 中會列舉當前版本可用的燒錄和debug命令, 需要留意.

將工具鏈移動到合適的位置, 並修改owner為root避免誤修改

sudo mkdir -p /opt/gcc-riscv/
sudo mv "MRS_Toolchain_Linux_x64_V1.70/RISC-V Embedded GCC" /opt/gcc-riscv/riscv-wch-embedded-gcc-v1.70
sudo chown -R root:root /opt/gcc-riscv/riscv-wch-embedded-gcc-v1.70

sudo mkdir -p /opt/openocd/
sudo mv MRS_Toolchain_Linux_x64_V1.70/OpenOCD /opt/openocd/wch-openocd-v1.70
sudo chown -R root:root /opt/openocd/wch-openocd-v1.70

額外的動態鏈接庫, 在 beforeinstall/start.sh 里是直接複製到 /usr/lib, 穩妥起見, 還是單獨建一個目錄放進去

sudo mkdir -p /usr/lib/wch/
sudo cp -P beforeinstall/lib* /usr/lib/wch/
sudo ldconfig

配置設備許可權

根據 start.sh 中執行的命令, 需要將兩個規則文件複製到 /etc/udev/rules.d.
先檢查一下 /etc/udev/ 下是否已經存在相關的配置, 如果有, 需要和這兩個規則整合一下, 如果沒有, 直接複製然後更新就可以了

sudo cp beforeinstall/50-wch.rules /etc/udev/rules.d
sudo cp beforeinstall/60-openocd.rules  /etc/udev/rules.d
# Reload rules
sudo udevadm control  --reload-rules

驗證

執行這兩個命令應該能看到正確的輸出, 如果有報錯, 需要先排查問題

~$ /opt/gcc-riscv/riscv-wch-embedded-gcc-v1.70/bin/riscv-none-embed-gcc --version
riscv-none-embed-gcc (xPack GNU RISC-V Embedded GCC, 64-bit) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

~$ /opt/openocd/wch-openocd-v1.70/bin/openocd --version
Open On-Chip Debugger 0.11.0+dev-02415-gfad123a16-dirty (2023-02-22-15:09)
Licensed under GNU GPL v2
For bug reports, read
	http://openocd.org/doc/doxygen/bugs.html

運行示例項目

基於 CH32V20x 的參考常式 https://www.wch.cn/downloads/CH32V20xEVT_ZIP.html, 調整結構並增加 Makefile, 已經提交至 GitHub, 可以直接導出進行編譯和燒錄.

項目地址: https://github.com/IOsetting/ch32v208-template

從 GitHub 導出項目

git clone https://github.com/IOsetting/ch32v208-template.git

根據自己的環境, 調整 Makefile 中的路徑信息, 其它內容可以保持預設

##### Toolchains #######

GCC_TOOCHAIN	?= /opt/gcc-riscv/riscv-wch-embedded-gcc-v1.70/bin

OPENOCD_PATH	?= /opt/openocd/wch-openocd-v1.70/bin

執行編譯

make clean
make

如果CH32V208評估板已經通過 WCH-Link 連接上PC, 可以執行下麵的命令進行燒錄

make flash

GDB Debug

打開終端, 用沁恆定製的 openocd 啟動 GDB Server, 註意要連上 WCH-Link, 不然 Server 會報錯退出.

/opt/openocd/wch-openocd-v1.70/bin$ ./openocd -f wch-riscv.cfg 
Open On-Chip Debugger 0.11.0+dev-02415-gfad123a16-dirty (2023-02-22-15:09)
Licensed under GNU GPL v2
For bug reports, read
	http://openocd.org/doc/doxygen/bugs.html
Info : only one transport option; autoselect 'sdi'
Warn : Transport "sdi" was already selected
Ready for Remote Connections
Info : Listening on port 6666 for tcl connections
Info : Listening on port 4444 for telnet connections
Info : WCH-Link-CH549  mode:RV version 2.8 
Info : wlink_init ok
Info : clock speed 6000 kHz
Info : [wch_riscv.cpu.0] datacount=2 progbufsize=8
Info : [wch_riscv.cpu.0] Examined RISC-V core; found 1 harts
Info : [wch_riscv.cpu.0]  XLEN=32, misa=0x40901105
[wch_riscv.cpu.0] Target successfully examined.
Info : starting gdb server for wch_riscv.cpu.0 on 3333
Info : Listening on port 3333 for gdb connections

在第二個終端中, 啟動 GDB Client

/opt/gcc-riscv/riscv-wch-embedded-gcc-v1.70/bin/riscv-none-embed-gdb Build/app.elf
GNU gdb (xPack GNU RISC-V Embedded GCC, 64-bit) 8.3
Copyright (C) 2019 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "--host=x86_64-unknown-linux-gnu --target=riscv-none-embed".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://github.com/sifive/freedom-tools/issues>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from Build/app.elf...

設置GDB參數

(gdb) set mem inaccessible-by-default off
(gdb) set remotetimeout unlimited
(gdb) set architecture riscv:rv32
The target architecture is assumed to be riscv:rv32

連接到GDB服務, load 載入程式, b 設置斷點, c 繼續執行, i r 查看寄存器, i local 查看全部局部變數, list 查看代碼. c過程中可以用Ctrl+C暫停, quit 退出

(gdb) target remote localhost:3333
Remote debugging using localhost:3333
0x00000428 in Delay_Ms (n=n@entry=1000) at Debug/debug.c:74
74	    while((SysTick->SR & (1 << 0)) != (1 << 0));
(gdb) i r pc
pc             0x428	0x428 <Delay_Ms+46>
(gdb) load
Loading section .init, size 0x38 lma 0x0
Loading section .vector, size 0x148 lma 0x38
Loading section .text, size 0x1e4c lma 0x180
Loading section .data, size 0x88 lma 0x1fcc
Start address 0x0, load size 8276
Transfer rate: 4 KB/sec, 2069 bytes/write.
(gdb) i r pc
pc             0x0	0x0 <_start>
(gdb) b main
Breakpoint 1 at 0x25e: file User/main.c, line 55.
(gdb) c
Continuing.
Note: automatically using hardware breakpoints for read-only addresses.

Breakpoint 1, main () at User/main.c:55
55	    NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
(gdb) i r pc
pc             0x25e	0x25e <main>
(gdb) list
50	 */
51	int main(void)
52	{
53	    u8 i = 0;
54	
55	    NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
56	    Delay_Init();
57	    USART_Printf_Init(115200);
58	    printf("SystemClk:%ld\r\n", SystemCoreClock);
59	
(gdb) 

配置 VSCode 開發環境

如果以上步驟都已經順利完成, 直接在 VSCode 中打開這個項目目錄就可以了. VSCode 的 Makefile 擴展會自動識別對應的工具鏈和依賴庫, 代碼提示和高亮開箱即用.

需要配置的是編譯和燒錄的快捷命令, 可以通過 Ctrl+Shift+P 調出菜單, 用 Tasks:Configure Task 進行配置, 或者直接在 .vscode 目錄下創建 tasks.json 進行配置

tasks.json 的例子

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "clean & build",
            "type": "shell",
            "command": "make clean; make -j4",
            "problemMatcher": []
        },
        {
            "label": "build",
            "type": "shell",
            "command": "make -j4"
        },
        {
            "label": "build & download",
            "type": "shell",
            "command": "make -j4; make flash"
        }
    ]
}

配置之後, 可以通過 Alt + Shift + F10 調出 task 菜單, 選擇對應的任務進行編譯或下載.

配置 VSCode Cortex Debug

VSCode 的 Cortex Debug 可以用於 debug CH32V208, 但是不能直接使用, 需要一些調整.

Cortex Debug 降級到 1.4.4

首先是 Cortex Debug 的版本, 當前版本是 1.10.0, 這個版本運行沁恆的 gdb client 會提示如下錯誤

ERROR: GDB major version should be >= 9, yours is 8; GDB could not start as expected. Bad installation or version mismatch. See if you can start gdb from a shell prompt and check its version (Must be >= 9)

沁恆定製的這個gcc已經8.3很久了, 等著沁恆升級不太現實, 只能將 Cortex Debug 降級到 1.4.4 使用, 這是支持gcc 8的最後一個版本. 在 VSCode 的擴展中打開 Cortex Debug 的介紹頁, 在 Uninstall 右側的小箭頭點擊展開, 能看到 Install Another Version 的菜單, 在裡面選擇 1.4.4 安裝

配置文件 launch.json

在 .vscode 目錄下新建文件 launch.json, 我使用的配置如下

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Cortex Debug",
            "cwd": "${workspaceFolder}",
            "executable": "${workspaceFolder}/Build/app.elf",
            "request": "launch",
            "type": "cortex-debug",
            "servertype": "openocd",
            "serverpath": "/opt/openocd/wch-openocd-v1.70/bin/openocd",
            "configFiles": [
                "${workspaceFolder}/Misc/wch-riscv.cfg.v1.70"
            ],
            "runToEntryPoint": "main",
            "runToMain": true,          // false: run to reset handler
            "preLaunchTask": "build",   // task from tasks.json
            // "preLaunchCommands": ["Build all"], if not using preLaunchTask
            "showDevDebugOutput": "raw", // log level: parsed, raw, both(include parsed and raw)
            "device": "CH32V208",
            "svdFile": "${workspaceFolder}/Misc/ch32v208xx.svd",
            "toolchainPrefix": "/opt/gcc-riscv/riscv-wch-embedded-gcc-v1.70/bin/riscv-none-embed"
        }
    ]
}

關於配置項的說明:

  1. executable: 指向的是當前項目生成的 elf 文件
  2. servertype: 只能是 openocd
  3. serverpath: 這個很重要, 必須指向沁恆定製的 openocd 可執行文件
  4. configFiles: 當前的 openocd 版本是 1.70, 用倉庫里的cfg, 或者用 openocd 同目錄下的 wch-ricsv.cfg 都可以
  5. preLaunchTask: 填的是 tasks.json 中配置的任務, 如果找不到這個任務, 啟動時會有提示
  6. showDevDebugOutput: 用於在下方的 DEBUG CONSOLE 輸出 GDB 日誌, 可以選 both, parsed, raw, none, 其中 raw是顯示原始內容, parsed 是格式化過的, both 是兩種都顯示
  7. device: 對於 openocd 貌似可以隨便填
  8. svdFile: 標識外設寄存器名稱與地址關係的文件, 在debug時可以直接通過寄存器名稱查看對應地址的值, 倉庫中的 svd 是從沁恆的 MounRiver 開發環境中複製過來的.
  9. toolchainPrefix: 指向沁恆定製的 gcc, 註意是首碼, 不需要帶後面的 -gcc

運行 Debug

配置完成後就可以開始 Debug了, 可以通過右側的 Run And Debug 面板, 點綠色三角形啟動, 也可以按 F5啟動, 我使用的是 IntelliJ IDEA Keybinding, 所以debug快捷鍵和 IDEA 是一樣的, 單步 F8, 繼續 F9, 進入 F7. 在 Run And Debug 面板左側可以觀察變數和外設寄存器對應的值. 非常方便.

相關鏈接

GCC還沒找到有高版本的, 如果使用開源版本, 會對WCH特有的中斷處理有影響, 社區技術支持說會出GCC 12 版本, 也不知道進展如何了

GCC 12 編譯的二進位, 使用 GDB 會有問題, 在 的文章中提到

倉庫地址: https://github.com/Seneral/riscv-openocd-wch

這個驗證過能編譯, 編譯命令

git clone https://github.com/Seneral/riscv-openocd-wch.git
cd riscv-openocd-wch/
git submodule update --init --recursive
./bootstrap 
./configure --disable-jlink --enable-wlink --disable-werror
make -j8
./src/openocd --version

和沁恆提供的 openocd 的對比

riscv-openocd-wch$ ./src/openocd --version
Open On-Chip Debugger 0.11.0+dev-g395b49ca4 (2023-05-04-00:35)
Licensed under GNU GPL v2
For bug reports, read
	http://openocd.org/doc/doxygen/bugs.html

riscv-openocd-wch$ /opt/openocd/wch-openocd-v1.70/bin/openocd --version
Open On-Chip Debugger 0.11.0+dev-02415-gfad123a16-dirty (2023-02-22-15:09)
Licensed under GNU GPL v2
For bug reports, read
	http://openocd.org/doc/doxygen/bugs.html

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 有時,需要將 int 這樣的基本類型轉換為對象。所有的基本類型都有一個與之對應的類。例如,Integer 類對應基本類型 int。通常,這些類被稱為包裝器(wrapper)。這些對象包裝器類擁有很明顯的名字:Integer、Long、Float、Double、Short、Byte、Character ...
  • 構造 ServerSocket ServerSocket 的構造方法有以下幾種重載形式 ServerSocket() throws IOException ServerSocket(int port) throws IOException ServerSocket(int port, int bac ...
  • 在實際開發過程中,有時候會遇到如何編寫Go開機自啟服務的需求,在linux中我們可以使用systemd來進行托管,windows下可以通過註冊表來實現,mac下可以通過launchd來實現,上面的方式對於開發者來說,並不是什麼困難的事情,但是對於使用者而言,是並不希望通過這麼複雜的方式來達到開機自啟 ...
  • Pandas是一個開源的Python數據分析庫。 它提供了快速,靈活和富有表現力的數據結構,旨在使數據清洗和分析變得簡單而快速。 Pandas是基於NumPy數組構建的,因此它在許多NumPy函數上提供了直接的支持。它還提供了用於對錶格數據進行操作的數據結構,例如Series和DataFrame。 ...
  • 常量 const double PI = 3.1415926; 常量名命名一般使用大寫字母 枚舉類型 開發一個游戲,游戲角色有法師(Mage)、射手(Archer)、刺客(Assassin)、坦克(Tank)、鋪助(Support)、戰士(Warrior),等不同類型。 ❓如何存儲游戲角色 使用in ...
  • 接了個活, 寫個 WPF 上位機用 PCAN 或 ECAN 和單片機通訊, 讀取感測器數據. 程式邏輯是 : 選擇連接類型 PCAN / ECAN, 選擇波特率, 選擇通道號, 輸入查詢間隔, 連接設備. 然後開啟一個後臺線程迴圈發送讀取指令逐個讀取感測器數據. 使用 PCAN 時, 連接和收發數據 ...
  • 大家好,我是痞子衡,是正經搞技術的痞子。今天痞子衡給大家介紹的是i.MXRT1xxx上第三級啟動保障 - SDMMC manufacture模式。 如果你在 i.MXRT1xxx 板卡上嘗試過從 SD/eMMC 卡啟動,你會發現一個奇怪的現象:如果把 SD/eMMC 卡還插著(並且裡面保留正常的 A ...
  • https://github.com/zk2013/windows_remote_lock_unlock_screen 將生成的DLL註冊至註冊表 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...