Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[AVR] how to update only some portion or APIs of code in microcontrollers

Status
Not open for further replies.

shreyas_patel21

Full Member level 3
Full Member level 3
Joined
Jan 4, 2011
Messages
181
Helped
15
Reputation
30
Reaction score
14
Trophy points
1,298
Visit site
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


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.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top