Skip to content

Instantly share code, notes, and snippets.

@islandcontroller
Created June 3, 2025 20:24
Show Gist options
  • Save islandcontroller/efbf83ac15a9ed16435e3e0dec2428ed to your computer and use it in GitHub Desktop.
Save islandcontroller/efbf83ac15a9ed16435e3e0dec2428ed to your computer and use it in GitHub Desktop.
Integrate WinCUPL into VSCode

Integrate WinCUPL into VSCode

Install WinCUPL

VSCode Integration

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "cupl",
            "type": "process",
            "command": "C:\\PROG\\opt\\WinCUPL\\Shared\\cupl.exe", // Adjust to match your install path
            "args": [
                "-m1xfjnabe", // Add 's' to this jumble of flags if you're using the simulator.
                "${relativeFile}"
            ],
            "options": {
                "cwd": "${workspaceFolder}",
                "env": {
                    "LIBCUPL": "C:\\PROG\\opt\\WinCUPL\\Shared\\Atmel.dl" // Adjust to match your install path
                }
            },
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment