~ruther/avr-shift-registers

ref: 67cde4955cfd8a7717372d7084c080de2b29e1b0 avr-shift-registers/.vscode/c_cpp_properties.json -rw-r--r-- 974 bytes
67cde495 — František Boháček chore: update README 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
    "env": {
        "projectIncludePath": [
            "${workspaceFolder}/src/"
        ],
        "myCompilerPath": "/usr/local/bin/gcc-7"
    },
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "/usr/avr/include",
                "${projectIncludePath}"
            ],
            "defines": [
                "__AVR_ATmega8__"
            ],
            "intelliSenseMode": "clang-x64",
            "cStandard": "c11",
            "cppStandard": "c++11",
            "compilerPath": "/usr/bin/avr-gcc",
            "compilerArgs": [
                "-mmcu=atmega8",
                ""
            ],
            "forcedInclude": [
                "/usr/avr/include/avr/iom8.h"
            ],
            "browse": {
                "path": ["${workspaceFolder}"],
                "limitSymbolsToIncludedHeaders": true,
                "databaseFilename": ""
            }
        }
    ],
    "version": 4
}