Hi,
I am using msp430f6779 mcu and I have code line like that:
unsigned char *inBuf_p ;
inBuf_p = channelPtr->Ports_p[portId].InBuf;
I am expecting to pass address of " channelPtr->Ports_p[portId].InBuf" this statement to "inBuf_p". I mean I want "InBuf" buffer to point " channelPtr->Ports_p[portId].InBuf" this statement address. But It points not address, it points value of " channelPtr->Ports_p[portId].InBuf". Am I doing wrong something ?
Best Regards