-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
147 lines (147 loc) · 3.55 KB
/
settings.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"editor.formatOnSave": true,
"C_Cpp.clang_format_fallbackStyle": "Visual Studio",
"files.associations": {
"*.js": "javascriptreact",
"array": "cpp",
"atomic": "cpp",
"*.tcc": "cpp",
"exception": "cpp",
"string_view": "cpp",
"fstream": "cpp",
"iosfwd": "cpp",
"new": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"streambuf": "cpp",
"cmath": "cpp",
"typeinfo": "cpp",
"regex": "cpp",
"memory": "cpp",
"istream": "cpp",
"functional": "cpp",
"tuple": "cpp",
"utility": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"clocale": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"algorithm": "cpp",
"iterator": "cpp",
"map": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"string": "cpp",
"system_error": "cpp",
"type_traits": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"limits": "cpp",
"stdexcept": "cpp",
"cinttypes": "cpp",
"chrono": "cpp",
"ratio": "cpp",
"list": "cpp",
"rope": "cpp",
"slist": "cpp",
"valarray": "cpp",
"*.ipp": "cpp",
"strstream": "cpp",
"complex": "cpp",
"csignal": "cpp",
"set": "cpp",
"iostream": "cpp",
"cfenv": "cpp",
"typeindex": "cpp",
"condition_variable": "cpp",
"mutex": "cpp",
"thread": "cpp",
"any": "cpp",
"variant": "cpp"
},
"cmake.configureOnOpen": false,
"platformio-ide.toolbar": [
{
"text": "$(tools) Build Plant-Master",
"tooltip": "Build the Plant-Master environment",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -e plant-master -a 'runExtraScripts'"
}
]
},
{
"text": "$(arrow-right) Upload Plant-Master",
"tooltip": "Upload the Plant-Master environment",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -e plant-master -t nobuild -t upload"
},
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -e plant-master -t uploadfs"
}
]
},
{
"text": "$(tools) Build Plant-Monitor",
"tooltip": "Build the Plant-Monitor environment",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -e plant-monitor -a 'runExtraScripts'"
}
]
},
{
"text": "$(arrow-right) Upload Plant-Monitor",
"tooltip": "Upload the Plant-Monitor environment",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -e plant-monitor -t nobuild -t upload"
},
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -e plant-monitor -t uploadfs"
}
]
},
{
"text": "$(trash) Clean All",
"tooltip": "Clean all environments",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -t clean"
}
]
},
{
"text": "$(plug) Serial Monitor",
"tooltip": "Open Serial Monitor",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio device monitor --environment plant-master "
}
]
}
]
}