From c4160ed41717260b5941e2729c444b8ec051d5f0 Mon Sep 17 00:00:00 2001 From: David Timber Date: Thu, 10 Sep 2020 13:17:25 +0930 Subject: * Impl: rnd interface and WELL512 * cncp: query cnc txt rec after wait not before * In case the child keeps on dying --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index acc9e6b..6bcfd80 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -72,6 +72,21 @@ "preLaunchTask": "Build pack", "miDebuggerPath": "/usr/bin/gdb" }, + { + "name": "rnd", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/src/proone-rnd", + "args": [ "256", "256" ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [], + "preLaunchTask": "Build rnd", + "miDebuggerPath": "/usr/bin/gdb" + }, { "name": "proone", -- cgit