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.

TMS320F28377D Can CPU2

Hi,

im trying to run CAN_B Bus on CPU2 from Flash.

Running same Project on CPU1 works proper.

Ownership is set by:

EALLOW;

DevCfgRegs.CPUSEL8.bit.CAN_B = 1;

EDIS;

//GPIO10 - CANRXB
    GPIO_SetupPinMux(10, GPIO_MUX_CPU2, 2);
    //GPIO8 - CANTXA
    GPIO_SetupPinMux(8, GPIO_MUX_CPU2, 2);
    GPIO_SetupPinOptions(10, GPIO_INPUT, GPIO_ASYNC);
    GPIO_SetupPinOptions(8, GPIO_OUTPUT, GPIO_PUSHPULL);


dosn't work so far.

is there anything else to consider?