shreyas_patel21
Full Member level 3
- Joined
- Jan 4, 2011
- Messages
- 181
- Helped
- 15
- Reputation
- 30
- Reaction score
- 14
- Trophy points
- 1,298
- Activity points
- 2,325
I am using atxmega256a3bu microcontroller for my project, I want to make a program architecture like I have compiled and programmed the code and now only some APIs can be changed and reprogrammed into the board other portion of flash should not be changed and newly compiled APIs can work with rest of the code that was already programmed in the flash.
for example, I have made all the code and downloaded it into the board, which has a API function named
Now if I want to change the function as below:
then how can I update this function only whithout changing the whole flash code.
Regards, shreyas.
for example, I have made all the code and downloaded it into the board, which has a API function named
Code:
todo_callback()
{
printf("nothing to do");
}
Now if I want to change the function as below:
Code:
todo_callback()
{
printf("updated to do");
}
then how can I update this function only whithout changing the whole flash code.
Regards, shreyas.