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?