From 75eb2161c641f85dded64a99cb862abfab64eff7 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Tue, 12 Jun 2018 17:52:40 +0200 Subject: Improved supervisor requests & events recording Change-Id: I4eb52820d2bec4ca4f2e3e455db7eb79d1a09d12 Signed-off-by: Sebastien Douheret --- .vscode/c_cpp_properties.json | 1 + .vscode/launch.json | 1 + .vscode/settings.json | 22 ++++++++++++++++++++-- .vscode/tasks.json | 3 ++- 4 files changed, 24 insertions(+), 3 deletions(-) (limited to '.vscode') 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" }, -- cgit 1.2.3-korg