diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2020-03-28 20:30:24 +0100 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2020-03-28 20:30:24 +0100 |
| commit | 89be54a9feb65bfbad237b79969bf3446c90eebd (patch) | |
| tree | 39213238c9c6efcbda287efe4613129fe28571a4 /picl-firmware/.vscode | |
| parent | 456fe72cc5b026f9168af91767af6932f6e70866 (diff) | |
| download | PiCl-89be54a9feb65bfbad237b79969bf3446c90eebd.tar.gz PiCl-89be54a9feb65bfbad237b79969bf3446c90eebd.tar.bz2 PiCl-89be54a9feb65bfbad237b79969bf3446c90eebd.zip | |
Adds initial version of the Attiny24 firmware
Diffstat (limited to 'picl-firmware/.vscode')
| -rw-r--r-- | picl-firmware/.vscode/c_cpp_properties.json | 15 | ||||
| -rw-r--r-- | picl-firmware/.vscode/tasks.json | 26 |
2 files changed, 41 insertions, 0 deletions
diff --git a/picl-firmware/.vscode/c_cpp_properties.json b/picl-firmware/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..add3b91 --- /dev/null +++ b/picl-firmware/.vscode/c_cpp_properties.json @@ -0,0 +1,15 @@ +{ + "configurations": [ + { + "name": "AVR", + "includePath": [ + "${workspaceFolder}/**", + "/usr/avr/include/**" + ], + "defines": ["__AVR_ATtiny24__"], + "compilerPath": "/usr/bin/avr-gcc", + "intelliSenseMode": "clang-x64" + } + ], + "version": 4 +}
\ No newline at end of file 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 |
