Home › Forums › Microcontrollers › PIC Microcontroller › Retrieving UART data on LCD using PIC16F877A › Reply To: Retrieving UART data on LCD using PIC16F877A
June 21, 2015 at 2:18 pm
#11512
Ligo George
Keymaster
Sorry I don’t understand your CopyConst2Ram(). You can use the following function for that.
char* CopyConst2RAM(const char* ctxt) { static char temp[20]; char i; for(i =0; temp[i] = ctxt[i]; i++); return txt; }