summaryrefslogtreecommitdiff
path: root/picl-firmware/.vscode/c_cpp_properties.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/c_cpp_properties.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/c_cpp_properties.json')
-rw-r--r--picl-firmware/.vscode/c_cpp_properties.json16
1 files changed, 14 insertions, 2 deletions
diff --git a/picl-firmware/.vscode/c_cpp_properties.json b/picl-firmware/.vscode/c_cpp_properties.json
index add3b91..b9c3363 100644
--- a/picl-firmware/.vscode/c_cpp_properties.json
+++ b/picl-firmware/.vscode/c_cpp_properties.json
@@ -4,11 +4,23 @@
"name": "AVR",
"includePath": [
"${workspaceFolder}/**",
- "/usr/avr/include/**"
+ "/usr/avr/include/**",
+ "/usr/include/**"
+ ],
+ "defines": [
+ "__AVR_ATtiny24__"
],
- "defines": ["__AVR_ATtiny24__"],
"compilerPath": "/usr/bin/avr-gcc",
"intelliSenseMode": "clang-x64"
+ },
+ {
+ "name": "simAVR",
+ "includePath": [
+ "${workspaceFolder}/**",
+ "/usr/include/**"
+ ],
+ "compilerPath": "/usr/bin/clang++",
+ "intelliSenseMode": "clang-x64"
}
],
"version": 4