Monday, May 20th 2013, 7:53am UTC+2

You are not logged in.

  • Login
  • Register

Dear visitor, welcome to SEGGER Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Date of registration: May 7th 2010

Posts: 2

1

Friday, May 7th 2010, 4:28pm

iMX 25 evaluation board (Freescale)

Hi all.

I'm trying to configure Eclipse to allow integrated debugging against the evaluation board MCIMX25LPDK from Freescale running Linux (iMX255 processor).

I've succeded in building a Hellow world app and JLink attempt writes it to the target. My hitpoints are never hit though - any ideas?

best

Thomas

My GDB scrit is as follows (Do I need to do any additional configuration?):

target remote localhost:2331

monitor endian little
monitor reset

monitor speed auto

set remote memory-write-packet-size 1024
set remote memory-write-packet-size fixed
monitor flash download = 1
monitor flash breakpoints = 1

load

break main

SEGGER - Alex

Super Moderator

Date of registration: Dec 18th 2007

Posts: 859

2

Friday, May 14th 2010, 9:58am

Hi Thomas,

are you trying to debug in RAM or in Flash?

If you are trying to debug in Flash:
As far as I can see, the iMX25 does not provide internal flash memory.
Currently, the J-Link flash programming capatibillity comes with support for internal flash memory only.
Flash programming + flash breakpoint support for external flash memory is on our schedule (will be implemented this year, but no more specific schedule yet).
If you want to debug in external flash memory, you have to download your application with another application first (e.g. J.-Flash).


Best regards
Alex

Date of registration: May 7th 2010

Posts: 2

3

Monday, May 17th 2010, 10:21am

Hi Alex.

Thanks for your response. I'm trying to debug in external flash so I'll look forward to your update. :)

Thomas