This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

connecting to remote debugger

I would like to use BlackMagicProbe ( github.com/.../wiki ) from Keil.

With gdb it's rather straightforward:

$ arm-none-eabi-gdb
GNU gdb (GNU Tools for ARM Embedded Processors) 7.6.0.20140228-cvs
...
(gdb)
(gdb) target extended-remote /dev/ttyACM0
Remote debugging using /dev/ttyACM0
(gdb) monitor jtag_scan
Target voltage: 3.4V
Device  IR Len  IDCODE      Description
0       4       0x4BA00477  ARM Limited: ADIv5 JTAG-DP port.
1       5       0x06413041  ST Microelectronics: STM32F4xx.

Available Targets:
No. Att Driver
 1      STM32F4xx

(gdb) attach 1
Attaching to Remote target
0x080071b2 in ?? ()
...

how to connect to this "remote target" from keil?