From 886f61f8a8291af75b2023b819955f0f07187ace Mon Sep 17 00:00:00 2001 From: Nav Date: Mon, 2 May 2022 13:18:31 +0100 Subject: [PATCH] Referenced new TC documentation in DebugServer docs --- src/DebugServer/Gdb/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/DebugServer/Gdb/README.md b/src/DebugServer/Gdb/README.md index 9d27b10d..8c5802eb 100644 --- a/src/DebugServer/Gdb/README.md +++ b/src/DebugServer/Gdb/README.md @@ -69,7 +69,8 @@ and is expected to handle the command and deliver any necessary response to the `handle()` member function - a reference to the active `DebugSession` object, and a reference to a `TargetControllerConsole` object. The `DebugSession` object provides access to the current connection with the GDB client, as well as other debug session specific information. The `TargetControllerConsole` object provides an interface -to the `TargetController`, for any GDB commands that need to interface with the connected target. +to the `TargetController`, for any GDB commands that need to interface with the connected target (see the +[TargetController documentation](../../TargetController/README.md) for more on this). Handling the `SetBreakpoint` command packet: