From 72500f226f74173e0b50312e906d1cd56e2d080a Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 3 Jun 2019 13:30:23 +0200 Subject: [PATCH] Start GDB in text UI mode This is much more pleasant to debug with. --- .cargo/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index 7720f4f..f47c879 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,5 +1,5 @@ [target.thumbv7em-none-eabihf] -runner = 'arm-none-eabi-gdb -q -x openocd.gdb' +runner = "arm-none-eabi-gdb -q -tui -x openocd.gdb" rustflags = [ "-C", "link-arg=-Tlink.x", ]