summaryrefslogtreecommitdiff
path: root/picl-firmware/.vscode/tasks.json
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2020-03-31 16:05:29 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2020-03-31 16:05:29 +0200
commitd50d2a22f0252f564fdbc0a58cbb9041f67ba357 (patch)
tree714a1d86faa516199f6e2d6d60a566649e3bcaeb /picl-firmware/.vscode/tasks.json
parent7e31ec13074d27c6173c89a9d12e9e4be51f9da8 (diff)
downloadPiCl-master.tar.gz
PiCl-master.tar.bz2
PiCl-master.zip
Tries to trace the OCOA and OCOB pins but no output?HEADmaster
Diffstat (limited to 'picl-firmware/.vscode/tasks.json')
-rw-r--r--picl-firmware/.vscode/tasks.json7
1 files changed, 3 insertions, 4 deletions
diff --git a/picl-firmware/.vscode/tasks.json b/picl-firmware/.vscode/tasks.json
index 069c853..5512abb 100644
--- a/picl-firmware/.vscode/tasks.json
+++ b/picl-firmware/.vscode/tasks.json
@@ -6,17 +6,16 @@
{
"type": "shell",
"label": "avr-gcc build active file",
- "command": "/bin/avr-gcc",
+ "command": "/usr/bin/avr-gcc",
"args": [
"-mmcu=attiny24",
"-g",
"${file}",
+ "-I",
+ "/usr/include/simavr/",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
- "options": {
- "cwd": "/bin"
- },
"problemMatcher": [
"$gcc"
],