Hi there!
I found my problem, the two definitions of the CAN Pins were wrong. The value has to be:
SIU.PCR[83].R = 0x060F; // FlexCAN_A_CNTX -> primary function
SIU.PCR[84].R = 0x050F; // FlexCAN_A_CNRX -> primary function
The value for the Config Register:
CAN_A.CR.R = 0x0F122000
With this coniguration my CAN Interface works with 1MBaud!
//*******************************************
// (fSYS = 128MHz, fOSC = 8MHz)
#define CAN_BAUD_1M 0x0F122000
#define CAN_BAUD_500k 0x00360000
#define CAN_BAUD_250k 0x01360000
Message Edited by A.Nagy on 2009-09-02 10:56 AM