diff options
Diffstat (limited to 'picl-firmware/.vscode/tasks.json')
| -rw-r--r-- | picl-firmware/.vscode/tasks.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/picl-firmware/.vscode/tasks.json b/picl-firmware/.vscode/tasks.json new file mode 100644 index 0000000..069c853 --- /dev/null +++ b/picl-firmware/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "type": "shell", + "label": "avr-gcc build active file", + "command": "/bin/avr-gcc", + "args": [ + "-mmcu=attiny24", + "-g", + "${file}", + "-o", + "${fileDirname}/${fileBasenameNoExtension}" + ], + "options": { + "cwd": "/bin" + }, + "problemMatcher": [ + "$gcc" + ], + "group": "build" + } + ] +}
\ No newline at end of file |
