- Download installer from Atmel: https://ww1.microchip.com/downloads/en/DeviceDoc/awincupl.exe.zip.
- Install into known folder, e.g.
C:\PROG\opt\WinCUPL. - Reboot after install.
- Launch WinCUPL GUI from the start menu.
- Enter company name (whatever no one cares) and use serial number
60008009. - Close GUI, won't need it again.
- Install the
tlgkccampbell.code-cuplextension - Add the following task to your workspace (see code-cupl repo for more info!)
{ "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 } } ], }