-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings-esp32.json
More file actions
30 lines (30 loc) · 1.19 KB
/
settings-esp32.json
File metadata and controls
30 lines (30 loc) · 1.19 KB
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
{
"actionButtons": {
"defaultColor": "yellow", // Can also use string color names.
"loadNpmCommands":false, // Disables automatic generation of actions for npm commands.
"reloadButton":"♻️", // Custom reload button text or icon (default ↻). null value enables automatic reload on configuration change
"commands": [
{
"name": "OCF Gen",
"singleInstance": false,
"command": "gen.sh", // This is executed in the terminal.
},
{
"name": "OCF Build",
"singleInstance": false,
"command": ". ~/esp-idf/export.sh && idf.py build", // This is executed in the terminal.
},
{
"name": "OCF Run",
"singleInstance": false,
"command": ". ~/esp-idf/export.sh && idf.py -p /dev/ttyUSB0 flash monitor", // This is executed in the terminal.
},
{
"name": "OCF Reset",
"singleInstance": false,
"command": ". ~/esp-idf/export.sh && idf.py erase_flash",
}
]
},
"cmake.configureOnOpen": true
}