From 4d302f06c985d1a6c54ec943c0a54e5fde0e1fc4 Mon Sep 17 00:00:00 2001 From: ZaPpInG Date: Thu, 24 Jan 2019 23:04:56 +0100 Subject: [PATCH] Fix missed backquote to make monospaced text in gdb.rst (#5663) * Fix missed backquote to make monospaced text in gdb.rst * Fix line spacing on example walkthrough --- doc/gdb.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/gdb.rst b/doc/gdb.rst index bc4c5c16d..1af885c59 100644 --- a/doc/gdb.rst +++ b/doc/gdb.rst @@ -80,7 +80,7 @@ Under Linux these files are stored in ``/tmp/arduino_build_*`` and the following find /tmp -name "*.elf" -print -Under Windows these files are stored in `%userprofile%\AppData\Local\Temp\arduino_build_*`` and the following command will help locate the right file for your app: +Under Windows these files are stored in ``%userprofile%\AppData\Local\Temp\arduino_build_*`` and the following command will help locate the right file for your app: .. code:: cpp @@ -239,6 +239,7 @@ We're now at the GDB prompt, but nothing has been set up for the ESP8266 and no debug information has been loaded. Cut-and-paste the setup options: .. code:: cpp + (gdb) set remote hardware-breakpoint-limit 1 (gdb) set remote hardware-watchpoint-limit 1 (gdb) set remote interrupt-on-connect on