Gdb launch error

while launching debug, i am facing this issue

Failed to launch GDB:.pioinit:13: Error in sourced command file: COM13, No such file or directory.(from interpreter -exe console “source-pioinit”)

my .ini configuration is :
[env:uno]

platform = atmelavr

board = uno

framework = arduino

debug_tool = avr-stub

debug_port = COM13

;GDB stub implementation

lib_deps =

jdolinay/avr-debugger @ ~1.4

  1. Is COM13 the right COM port for you Arduino?
  2. Have you tried setting debug_port = \\.\COM13 instead? COM ports > 9 need this format instead in Windows (source).
  1. Yes it is connected right to COM13
  2. \.\COM13 writing this solved the problem

MANY MNY THANKS… :slight_smile:

1 Like