This should be an easy question for someone who knows:
How do I get rid of the error message:
error: invalid conversion from 'unsigned char*' to 'unsigned char'
I'm not intentionally creating a pointer, and only defined the array as "unsigned" because this error message called the other side "unsigned" already.
unsigned char buff8[8][512];
byte buffISR=0;
int sampCnt = 0;
void setup()
{
PORTC = buff8[buffISR,sampCnt];
}
void loop()
{
}