This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I have multiple strings in an array in main from where I point to one of the strings and pass that to a function as a pointer (*p).....Within the function state machine (which manipulates hw) if something goes wrong I want to re-align this pointer back to the beginning of the string that was passed in......Can someone tell me how to do this....I'm sure it's fundamental but it alludes me...... The pointer itself after the function is done is aligned to the next value in the array.
Snippet of main
const char *configCmd[] = {r_groupID, r_PowerSet17, r_bandSet, r_USAFCC, r_Spread1, r_RSSIoff, r_setGrpID}; pTx = *configCmd; pRadioResponse = radioReg(pTx);
Snippet of function
char* radioReg(const char *p)
Thanks
If I understand your question, you can just save the original pointer at the beginning of the function and restore it as needed. Equivalently, create a new "work" pointer starting at the original and only manipulate that (so you always have the original). Whichever is easier.
**Attention** This is a public forum