0x00001490 bytes of Target Memory at 0xF0000000 is not within flash boundaries.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

0x00001490 bytes of Target Memory at 0xF0000000 is not within flash boundaries.

3,526 Views
fire
Contributor I
I am getting the "0x00001490 bytes of Target Memory at 0xF0000000 is not within flash boundaries.  " error while programing the flash.
Can any one tell me what may went rong.
thank you.
Labels (1)
0 Kudos
Reply
2 Replies

649 Views
UK_CF_FAE
NXP Employee
NXP Employee

Hi Fire,

Undoubtedly this will be connected with the Linker Configuration File, *.lcf and I'm assuming that you are using CodeWarrior. Normally the flash memory on "internal flash ColdFire parts" is at 0x00000000. Here's the LCF for the MCF52235...

#/*
# * File:  iflash.lcf
# * Purpose: Linker file for the M5223EVB
# *
# * Notes:  Project running in internal Flash
# *
# */

MEMORY
{
    rom     (RX) : ORIGIN = 0x00000000,  LENGTH = 0x00040000
    ram     (RW) : ORIGIN = 0x20000000,  LENGTH = 0x00008000
}

SECTIONS
{

Maybe you want to add to  your post and let us know what ColdFire device you are using, whether the code is running on a Freescale EVB (which one???) or if the code is running on your own hardware. If it is your own hardware, what is the memory map for the board. Which tool-chain are you running??

Good Luck

Mark

0 Kudos
Reply

649 Views
fire
Contributor I

Hai,

Thanks for your responce .I am using mcf 5282lite and codewarrior.

I tried with 0x00000000 also.It is giving same error.

After that i  tried with flash tool.I am able to flash it and it is displaying RESET message. But it is not mapping to main.

 

0 Kudos
Reply