diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-06-12 17:52:40 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-07-10 23:59:54 +0200 |
commit | 75eb2161c641f85dded64a99cb862abfab64eff7 (patch) | |
tree | c2c6c515e45bba9ca1b2e30fe392342cab643ae0 /.vscode | |
parent | 197d9acab4fb5097d3dce56227c2096abdc075bd (diff) |
Improved supervisor requests & events recording
Change-Id: I4eb52820d2bec4ca4f2e3e455db7eb79d1a09d12
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/c_cpp_properties.json | 1 | ||||
-rw-r--r-- | .vscode/launch.json | 1 | ||||
-rw-r--r-- | .vscode/settings.json | 22 | ||||
-rw-r--r-- | .vscode/tasks.json | 3 |
4 files changed, 24 insertions, 3 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index f7487f5..cf04612 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -17,6 +17,7 @@ "/usr/include" ], "defines": [ + "CONTROL_SUPPORT_LUA", "AFB_BINDING_PREV3", "USE_API_DYN" ], diff --git a/.vscode/launch.json b/.vscode/launch.json index b163338..a2162c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -13,6 +13,7 @@ "--port=5678", "--name=afb-xds", "--ws-client=unix:/tmp/supervisor", + "--ws-client=unix:/tmp/harvester", "--workdir=${workspaceRoot}/build/package/", "--ldpaths=lib", "--roothttp=htdocs", diff --git a/.vscode/settings.json b/.vscode/settings.json index 2777e9f..d41869a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,11 @@ { + "files.exclude": { + ".vscode": true, + "nbproject": true, + "build": true, + "**/.git": true, + "**/node_modules": true + }, "[json]": { "editor.quickSuggestions": { "strings": true @@ -42,12 +49,22 @@ "unistd.h": "c", "supervisor.h": "c", "sstream": "c", - "stat.h": "c" + "stat.h": "c", + "filescan-utils.h": "c", + "optional": "cpp", + "ostream": "cpp", + "system_error": "cpp", + "supervisor-api.h": "c", + "string_view": "c", + "initializer_list": "c", + "valarray": "c" }, // Words to add to dictionary for a workspace. "cSpell.words": [ "CTLP", + "SPVR", "callbinder", + "ctlso", "gotevent", "ldpaths", "lightgreen", @@ -58,7 +75,8 @@ "replyerr", "replyok", "reqid", - "roothttp" + "roothttp", + "spath" ], "C_Cpp.intelliSenseEngineFallback": "Enabled" } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d1709f7..fc33950 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -17,7 +17,8 @@ "command": "clear && cd build && make", "presentation": { "echo": true, - "reveal": "always", + //"reveal": "always", + "reveal": "silent", "focus": false, "panel": "shared" }, |