chore: HERV 통합 저장소 초기 커밋
- 펌웨어(program), C# 대시보드(TestProgram), 시뮬레이터(Simulator), 프로토콜/문서(Protocol, doc) 전체를 단일 저장소로 통합 - program 폴더의 별도 git 저장소를 제거하고 통합 저장소에 흡수 - 빌드 산출물(program/build, bin/obj, *.o/.elf/.bin/.hex 등) .gitignore 처리 - 사내 Synology NAS Git 원격 연결 예정 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Nano100B",
|
||||
"compilerPath": "C:/Program Files (x86)/GNU Arm Embedded Toolchain/10 2021.10/bin/arm-none-eabi-gcc.exe",
|
||||
"compilerArgs": [
|
||||
"-mcpu=cortex-m0",
|
||||
"-mthumb"
|
||||
],
|
||||
"intelliSenseMode": "gcc-arm",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/User",
|
||||
"${workspaceFolder}/Library/CMSIS/Include",
|
||||
"${workspaceFolder}/Library/Device/Nuvoton/Nano100Series/Include",
|
||||
"${workspaceFolder}/Library/StdDriver/inc"
|
||||
],
|
||||
"defines": [],
|
||||
"cStandard": "gnu11",
|
||||
"cppStandard": "gnu++14",
|
||||
"browse": {
|
||||
"path": [
|
||||
"${workspaceFolder}/User",
|
||||
"${workspaceFolder}/Library"
|
||||
],
|
||||
"limitSymbolsToIncludedHeaders": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
Vendored
+34
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug HERV (Nu-Link)",
|
||||
"type": "cortex-debug",
|
||||
"request": "launch",
|
||||
"servertype": "openocd",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"executable": "${workspaceFolder}/build/HERV.elf",
|
||||
"device": "NANO100SE3BN",
|
||||
"configFiles": [
|
||||
"openocd.cfg"
|
||||
],
|
||||
"runToEntryPoint": "main",
|
||||
"preLaunchTask": "build",
|
||||
"showDevDebugOutput": "none"
|
||||
// SVD 파일 있으면 아래 주석 풀고 경로 지정 (디버그시 레지스터 이름으로 표시)
|
||||
// "svdFile": "${workspaceFolder}/Nano100B.svd"
|
||||
},
|
||||
{
|
||||
"name": "Attach to HERV (Nu-Link)",
|
||||
"type": "cortex-debug",
|
||||
"request": "attach",
|
||||
"servertype": "openocd",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"executable": "${workspaceFolder}/build/HERV.elf",
|
||||
"device": "NANO100SE3BN",
|
||||
"configFiles": [
|
||||
"openocd.cfg"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Vendored
+34
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"*.h": "c",
|
||||
"*.c": "c",
|
||||
"Nano100Series.h": "c",
|
||||
"system_Nano100Series.h": "c"
|
||||
},
|
||||
"C_Cpp.default.intelliSenseMode": "gcc-arm",
|
||||
"C_Cpp.errorSquiggles": "enabled",
|
||||
"[c]": {
|
||||
"editor.tabSize": 4,
|
||||
"editor.insertSpaces": true,
|
||||
"editor.detectIndentation": false
|
||||
},
|
||||
"[makefile]": {
|
||||
"editor.insertSpaces": false,
|
||||
"editor.tabSize": 8
|
||||
},
|
||||
"files.encoding": "utf8",
|
||||
"files.eol": "\r\n",
|
||||
"search.exclude": {
|
||||
"**/build": true,
|
||||
"**/Release": true
|
||||
},
|
||||
"files.exclude": {
|
||||
"**/.cproject": false,
|
||||
"**/.project": false,
|
||||
"**/.settings": true
|
||||
},
|
||||
"terminal.integrated.defaultProfile.windows": "PowerShell",
|
||||
"terminal.integrated.env.windows": {
|
||||
"CLAUDE_CODE_USE_POWERSHELL_TOOL": "1"
|
||||
}
|
||||
}
|
||||
Vendored
+60
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["-j8"],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": ["$gcc"],
|
||||
"presentation": {
|
||||
"echo": true,
|
||||
"reveal": "always",
|
||||
"panel": "shared",
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "rebuild",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["rebuild", "-j8"],
|
||||
"problemMatcher": ["$gcc"],
|
||||
"presentation": {
|
||||
"clear": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "clean",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["clean"]
|
||||
},
|
||||
{
|
||||
"label": "flash",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["flash"],
|
||||
"dependsOn": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "erase",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["erase"],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "size",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["size"],
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user