The J-Link OB standalone clone, which I purchased. Picture taken from eBay listing. |
Looking around the internet I managed to find the schematic of a J-Link OB debugger using the same microcontroller as the one in my debugger (this is the STM32F103C8 in a QFP48). I won't link it or replicate it here as it is something that should be licensed from Segger. The schematic wasn't an exact representation of the circuit in my debugger, but it was close enough.
The schematic showed that all JTAG pins were in fact connected to some pins of the microcontroller. Most of the them in fact had two pins on the microcontroller - a drive pin and a sense pin - and had 100 ohm resistors connected between the drive and sense pins. The SWO is transmitted through the JTAG pin TDO. This pin is an exception to the drive and sense arrangement, as it only had the sense pin. Luckily it was still connected to an external pull-up resistor, which allowed for easy modification.
The SWO input is directly tied to microcontroller pins PA6 (pin 16), PA10 (pin 31) and PB15 (pin 28). For a first test, I just soldered a wire to the low side of the pull-up resistor and attached that to the SWO output of my target.
Quick bodge to see if SWO works on the debugger. |
Satisfied by the way everything was working, I then built a more permanent solution by removing the old 4 pin connector and replacing it with a 5 pin header. There is no hole for the fifth pin, so I cut the pin short (making sure it couldn't touch the ground pad under it) and soldered the 4 other pins. The fifth pin was then connected with a bodge wire over the to resistor. To support the unsoldered fifth pin mechanically, cyanoacrylate glue was added to attach it more securely to the pin header frame as well as the neighboring pins.
A more permanent solution. |
The speedup of using SWO instead of semihosting is considerable. In the plots below there is an example of quasicontinuous I2C communication, where some tracing messages are periodically sent to the debug host. The channels 0 and 1 are the I2C lines, while channel 2 is connected to a "data ready" IRQ pin of the I2C device. Channel 3, which is only shown in the latter figure, is the actual SWO data.
It is clear from the figure below that when the semihosting mechanism is used for message transmission there is a period of more than 30 ms where the microcontroller is not capable of responding to the IRQ. When the execution continues, the first few I2C transfers are considerably longer than typical, as unread data is read out from the FIFO of the device.
Logic analyzer view of I2C communication with semihosting tracing messages. |
Logic analyzer view of I2C communication with SWO tracing messages. |
Clones with SWO and virtual COM port:
ReplyDeletehttps://www.aliexpress.com/item/4000249803796.html
https://www.ebay.com/itm/J-OB-V2-JLINK-OB-JLINK-V8-V9-V9-3-STLINK-compatible-with-virtual-serial-port/352820813787
Those seem nice, and possibly even useful.
DeleteI noticed that J-Link software started rejecting this J-Link OB clone, and turns out that the software license doesn't allow its use with the clones in the first place :-(. It was fun while it lasted.
It's because some s/n frequently used in FW on clones have been banned by Segger. You could try to update FW to the current release by flashing bootloader as mentioned in http://forum.easyelectronics.ru/viewtopic.php?p=644489&sid=c5343e8d0a43f5dac6ee8266052d73ac#p644489 then launch J-Link Commander to install FW. Just note with new FW some pins are changed, remove R between PA1 and PA2 and rewire LED to PA8
Delete