ADM/.vscode/tasks.json
3minbe c8173fb901 ver 26.02.26.1
* ACU 전환 로직 수정 중으로 확정은 아님 *

- DBC 수정
  : Global Variable 수정
  : 0채널 1채널 송신부 버퍼 수정
- Drive Mode 수정 중
- Drive Mode Fault 조건 확인을 위한 타이머 추가
  : 30초 대기 로직 추가
2026-02-26 19:25:41 +09:00

56 lines
2.0 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "GW Build (Debug_FLASH)",
"type": "process",
"command": "powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-Command",
"if (-not $env:S32_GCC_BIN) { Write-Error 'S32_GCC_BIN is not set'; exit 1 }; if (-not $env:S32_MSYS_BIN) { Write-Error 'S32_MSYS_BIN is not set'; exit 1 }; $env:Path = \"$env:S32_GCC_BIN;$env:S32_MSYS_BIN;$env:Path\"; & \"$env:S32_MSYS_BIN\\make.exe\" -C Debug_FLASH all"
],
"options": {
"cwd": "${workspaceFolder}/GW"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
],
"detail": "Required env vars: S32_GCC_BIN, S32_MSYS_BIN"
},
{
"label": "GW Clean (Debug_FLASH)",
"type": "process",
"command": "powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-Command",
"if (-not $env:S32_GCC_BIN) { Write-Error 'S32_GCC_BIN is not set'; exit 1 }; if (-not $env:S32_MSYS_BIN) { Write-Error 'S32_MSYS_BIN is not set'; exit 1 }; $env:Path = \"$env:S32_GCC_BIN;$env:S32_MSYS_BIN;$env:Path\"; & \"$env:S32_MSYS_BIN\\make.exe\" -C Debug_FLASH clean"
],
"options": {
"cwd": "${workspaceFolder}/GW"
},
"problemMatcher": [
"$gcc"
],
"detail": "Required env vars: S32_GCC_BIN, S32_MSYS_BIN"
},
{
"label": "GW Rebuild (Debug_FLASH)",
"dependsOrder": "sequence",
"dependsOn": [
"GW Clean (Debug_FLASH)",
"GW Build (Debug_FLASH)"
]
}
]
}