When I declare this function:
void vLFSR_ParseInput(unsigned char * pucDataArray,unsigned char unCount){}
and try to pass it this array
unsigned char g_ucUSCI_A0_RXBufferIndex = 0x00;
unsigned char g_ucaUSCI_A0_RXBuffer[RXBUFFERSIZE];
with this function call
vLFSR_ParseInput(&g_ucaUSCI_A0_RXBuffer,g_ucUSCI_A0_RXBufferIndex);
my compiler gives me this error
argument of type "unsigned char (*)[255]" is incompatible with parameter of type "unsigned char *"
What am I doing wrong? If it helps, I am programming using TI Code Composer Studio, and my platform is the MSP430x2xx family.
edit: fixed formatting