This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Execute code from RAM instead of flash - memset and memcpy

Hi

I have my code like this .

unsigned char *encryptedData; unsigned int encryptedDataAfterAppendingLength;

memset(encryptedData, 0, encryptedDataAfterAppendingLength);

In order to execute this from RAM , how I can rewrite this code using for loop or an other method.

Regards, Anand

Related