Search Results

Search results 1-9 of 9.

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

  • Debugger: Ozone 3.26b RTOS: embOS 5.14.0.0 Compiler: gcc-arm-none-eabi-10-2020-q4-major or gcc-arm-none-eabi-7-2018-q2-update (Issue identical on with both tool chains) Host OS: macOS Big Sur 11.6.2 or Ubuntu Linux 18.04 LTS (Issue identical on both macOS and Linux) When I debug using Ozone, the call stack is effectively empty with only the current execution position. There is a message "Top of stack - no unwinding symbols at <address>" When I debug using Eclipse + Embedded C/C++ J-Link Debuggin…

  • Linux Ozone 2.44a -- Open File *.* doesn't list files without an extension... Not sure if this is a bug or a "feature".

  • I have searched for documentation on how to set the Linux GDBServer "Init regs" option to off. It defaults to on. Nowhere can I find such documentation. I tried obvious things like: JLinkGDBServer --help How does one set "Init regs" option to off in Linux JLinkGDBServer? Thanks in advance.

  • I stumbled upon a sequence of events which seems to hang the JLink Pro (it becomes unresponsive to GDB Server or JLink Commander) requiring me to unplug it's USB connection (and therefore power) and replug it back in, or wait approximately 30 seconds after which the JLink Pro self resets and is back up and communicating. Once in a while the JLink doesn't seem to be able to auto recover. The issue seems to be related to the command: monitor speed adaptive This issue doesn't seem to occur if I cha…

  • Thank you Alex. All is working. I set the: monitor flash device MK60N512VMD100 And changed from: monitor speed adaptive To: monitor speed auto And the download and execution work perfectly. This is the final set of GDB commands I use: First I start GDB using: arm-eabi-gdb <file to debug> ######### BEGIN GDB COMMANDS ######## target remote 10.211.55.3:2331 monitor reset monitor sleep 1000 monitor flash device MK60N512VMD100 monitor flash download 1 monitor flash breakpoints 1 monitor endian littl…

  • Using arm-eabi-gdb 4.3.2 gdbserver 4.32 I am unable to load a program to flash using GDB, GDBServer, and a Jlink Pro. I have tried many configurations (speed, reset, etc.) without success. I can however program the K60N512 using CodeSourcery Codebench and their debug sprite. I also can program an LPC2468 and an AT91SAM7X using GDB and GDBServer. I believe there is something wrong with my .gdb configuration file. I couldn't find an example .gdb file either in the Segger samples or on the web. Ple…

  • GDB server for linux

    morrisrx - - J-Link/Flasher related

    Post

    Here is another voice that would like a GDB server for linux. Currently using the Windows version in a Virtual Windows session, but this is a clunky solution as all of the development tools are running under linux & eclipse. Thanks to you at Segger who may be working on a Linux GDB Server. It will be appreciated. We really like your J-Link devices, especially the Pro version. There was a comment sometime back that one day the J-Link Pro might incorporate a GDB server. Is this still in the plan?

  • Here is a link regarding the linker map being incorrect that caused Eclipse to hang when downloading. Perhaps the problem you are experiencing is related. Cannot load program with JLink + GDB + Eclipse

  • I also had eclipse hang when starting a debugging session on an Embedded Artists ea2468 board. I was downloading the application into RAM rather than ROM and had a mistake in the linker memory map, the ROM section (although not used) had been omitted and the SRAM section size was incorrect. Fixing these solved the problem. Command line GDB worked fine even with the linker map being incorrect, but eclipse would hang with the message on the Debug tab: Launching .... (27%) The advise to ensure the …