We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I have written the following code to perform a copy procedure between RAM and FLASH Memory: unsigned char i; i = 0x00; do{ i --; *(&FLASHADDRESS + j + i) = DataBuffer[i]; }while(i != 0x00); Is there any better way to generate efficient(like DJNZ in assembler) code? :) THS.