Search Results

Search results 1-5 of 5.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Thank you Simon. I guess I will need to wrap it in python and test it out.

  • Hello, I have a custom bord with the following hardware configuration: - microcontroller: NXP IMXRT1176 - external memory: Infineon Hyperflash S26HL512T with Hyperbus configuration I'd like to use J-Link to handle write, read and erase commands for my microcontroller's memory. I would like to have a possibility to operate it in an autonomous way via python script. Even though my uC does not have internal memory, and have specific hyperbus interface to operate the memory, I have a flash loader .F…

  • Quote from JayTT: “When I try and debug using Ozone on a custom STM32G4 board with my JLink Plus Compact, I get: J-Link: Flash download: Total: 2.351s (Prepare: 0.081s, Compare: 0.267s, Erase: 0.993s, Program: 1.008s, Verify: 0.000s, Restore: 0.000s) J-Link: Flash download: Program speed: 95 KB/s J-Link: Flash download: Bank 0 @ 0x08000000: 1 range affected (98304 bytes) J-Link: Flash download: Total: 2.032s (Prepare: 0.002s, Erase: 1.022s, Program: 1.007s, Verify: 0.000s, Restore: 0.000s) J-Lin…

  • Hello @Simon It turned out that error was purely on my side. As stated in the Knowledge Base url you shared, for a new device to be readable by jlink, there is a requirement for the following folder's presence: * C:\Users\<USER>\AppData\Roaming\SEGGER\JLinkDevices "In order to make the J-Link software aware of the new device, the previously created XML file need to be placed in the central JLinkDevices folder. If the folder does not exist, it may be created." After applying above, the issue was …

  • Hi, I would like to automate some things like flashing firmware, memory erase, uC reset and alike, for my microcontroller by using jlink. I have a custom bord with the following hardware configuration: - microcontroller: NXP IMXRT1176 - external memory: Infineon Hyperflash S26HL512T with Hyperbus configuration Since there already is a python library that handles jlink, I would like to use it for my purposes. GitHub - square/pylink: Python Library for device debugging/programming via J-Link - git…