The purpose of this group is to foster exchange of information on the Texas Instruments MSP430 family of microcontrollers and related tools. Everyone welcome, all levels of familiarity/expertise.
MSP430F2417 question - eeaj2002 - Jul 22 1:14:29 2008
Hi everyone,
I have written a program for msp430f169 and now the code exceeds more
than 60k. I like to transfer it into the msp430f2417 but I get error.
Basically, I am not sure how to fit the program into 2417 since the
flash memory address is not continuous. By the way I am using IAR
assembler. Any help please.
Thank you,
John.
------------------------------------

(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )
Re: MSP430F2417 question - old_cow_yellow - Jul 22 2:03:35 2008
I was wondering about this too.
I think you need to write the code in small chunks and use ORG to
force the linker to skip over the vectors when the next chunk cannot
fit in the lower 64K address anymore.
--- In m...@yahoogroups.com, "eeaj2002"
wrote:
>
> Hi everyone,
>
> I have written a program for msp430f169 and now the code exceeds more
> than 60k. I like to transfer it into the msp430f2417 but I get error.
> Basically, I am not sure how to fit the program into 2417 since the
> flash memory address is not continuous. By the way I am using IAR
> assembler. Any help please.
>
> Thank you,
> John.
>
------------------------------------

(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )Re: Re: MSP430F2417 question - Anders Lindgren - Sep 4 10:42:39 2008
old_cow_yellow wrote:
> I was wondering about this too.
>
> I think you need to write the code in small chunks and use ORG to
> force the linker to skip over the vectors when the next chunk cannot
> fit in the lower 64K address anymore.
Sorry for picking up an old thread...
The linker supports placing segments parts into more than one location.
For example, you can use the following:
-P(CODE)CODE=3100-FFBD,10000-19FFF
In fact, this is taken from the provided linker command files.
-- Anders Lindgren, IAR Systems
--
Disclaimer: Opinions expressed in this posting are strictly my own and
not necessarily those of my employer.
------------------------------------

(You need to be a member of msp430 -- send a blank email to msp430-subscribe@yahoogroups.com )