Baptiste
Joined: 18 Jul 2013 Posts: 1 Location: France
|
ccs bootloader |
Posted: Thu Jul 18, 2013 3:00 am |
|
|
Hi,
I've got a problem with the CCS bootloader : I have to increase the main function size in order to add some code.
I've replaced this line :
Code: | #org 0x40,0x98
void main(void)
{
[...]
}
|
by
Code: | #org 0x40,0xc2
void main(void)
{
[...]
}
|
When I do that, after sending my program to the bootloader, and after doing a reset, the bootloader doesn't run.
I think that the code is overwritten by the program
I tried to change some #org constants and the aPPLI_END and APPLI_SIZE constants but the result is the same
Can anybody help me to find a solution ?
Thanks a lot |
|