From 522c8526d68d2b1b8775bea53b84d9e8ec2912df Mon Sep 17 00:00:00 2001 From: roy01 Date: Mon, 27 Apr 2026 15:42:44 +0800 Subject: [PATCH] feat: update project name to pec930_pfc_llc --- .vscode/launch.json | 4 ++-- CMakeLists.txt | 2 +- pec930_motor.code-workspace => pec930_pfc_llc.code-workspace | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename pec930_motor.code-workspace => pec930_pfc_llc.code-workspace (100%) diff --git a/.vscode/launch.json b/.vscode/launch.json index ad0fc36..6555cbc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,7 @@ "request": "launch", "servertype": "external", "cwd": "${workspaceFolder}", - "executable": "./build/Debug/pec930_motor.elf", + "executable": "./build/Debug/pec930_pfc_llc.elf", "gdbPath": "/opt/riscv64-unknown-elf/bin/riscv64-unknown-elf-gdb", "gdbTarget": "localhost:3333", "runToEntryPoint": "main", @@ -22,7 +22,7 @@ "request": "launch", "servertype": "external", "cwd": "${workspaceFolder}", - "executable": "./build/Debug/pec930_motor.elf", + "executable": "./build/Debug/pec930_pfc_llc.elf", "gdbPath": "C:/Program Files/nuclei_riscv_newlibc_prebuilt_win64_2025.10/gcc/bin/riscv64-unknown-elf-gdb.exe", "gdbTarget": "localhost:3333", "runToEntryPoint": "main", diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f21752..e7a22a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/cmake/riscv64-unknown-elf.cmake) # ========================== # Project Setup # ========================== -project(pec930_motor VERSION 0.0.1 LANGUAGES C ASM) +project(pec930_pfc_llc VERSION 0.0.1 LANGUAGES C ASM) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) diff --git a/pec930_motor.code-workspace b/pec930_pfc_llc.code-workspace similarity index 100% rename from pec930_motor.code-workspace rename to pec930_pfc_llc.code-workspace