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.

cannot load from non-primitive location

Other Parts Discussed in Thread: CONTROLSUITE

Hi,

I try to transmit data. The Expression window show "cannot load from non-primitive location".  What does it mean?

My Code:

uint8 tx_data[8] = {0x11,0x22};
uint8 *tx_ptr = &tx_data[0];

void main(void)
{
    canInit(); //CAN intialisieren

    canTransmit(canREG1, canMESSAGE_BOX1, tx_ptr);

    while(1);
}

Best regards

Dennis