Commit c608ac4e authored by Gallacchi Mattia's avatar Gallacchi Mattia
Browse files

Add vscode config and gitignore

parent 6276d7c8
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
build/
 No newline at end of file
+26 −0
Original line number Diff line number Diff line
{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**",
                "/usr/include/opencv4/**"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/gcc",
            "cStandard": "c17",
            "cppStandard": "gnu++17",
            "intelliSenseMode": "linux-gcc-x64"
        },
        {
            "name": "docker",
            "includePath": [
                "${workspaceFolder}/**",
                "/opt/pico-sdk/1.5.1/src/**"
            ],
            "intelliSenseMode": "linux-gcc-arm"
            
        }
    ],
    "version": 4
}
 No newline at end of file