From 216c7a3bc995a3e654e54fe5725a42f86ddb6177 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 12 Mar 2024 12:49:01 -0700 Subject: [PATCH] Correct servertype identifier in "BlackMagic" programmer definition When Arduino IDE initializes the integrated sketch debugger, it sets the `servertype` debug attribute to the value of the `debug.server` platform property. This property must be set to one of the GDB Server type identifiers recognized by the Cortex-Debug debugger extension. The previous value was not a recognized identifier, which caused the debugger initialization to fail: Invalid servertype parameters. The following values are supported: "jlink", "openocd", "stlink", "stutil", "pyocd", "bmp", "pe", "qemu", "external" --- programmers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programmers.txt b/programmers.txt index 06ecd7f09..91a0ce01d 100644 --- a/programmers.txt +++ b/programmers.txt @@ -35,4 +35,4 @@ blackmagic.program.protocol= blackmagic.program.tool= blackmagic.program.tool.default= blackmagic.program.extra_params= -blackmagic.debug.server=blackmagic +blackmagic.debug.server=bmp