Hi Thomas Mitnacht,
My question is not about the BSL...
I want to know how to tell the compiler to segment my code into two or more parts, and then tell the linker to place a certain segment at a specific address. Can you respond with a specific example for say 2 segments below ?
void C_Code_A ( void) {
// Code Segment A
}
void C_main (void ) {
//Code Segment B
}
Thanks.
Bhal
************
I am new to CCS and TI MSP430. Have used Keil compiler before.
I am trying to use a bootloader in C which can get data from a serial port and
update the Flash with application code.
I did this in Keil toolset by using simple linker commands to locate the App.
code at always the same address. The bootloader copied the new code to this
address and then could be signaled to jump to it..
I have read many of the posts but can't find how to do this on MSP430. Maybe
that is because I can't find the CCS linker commands and how to tell the linker
to do this..
Is this possible in CCS and MSP430 ?
Any help that anyone can provide would be much appreciated..
Thanks.
Bhal Tulpule