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.
Tool/software: Code Composer Studio
I am using PCAN for monitoring receive messages transmitted from ECAN of TMS320f28069 but the programm keep on going between
do {ECanaShadow.CANTA.all = ECanaRegs.CANTA.all;} // Wait for TA25 bit to be set..
while(ECanaShadow.CANTA.bit.TA25 == 0 );
I am using example code given in http://www.ti.com/lit/an/spra876b/spra876b.pdf
ECanaShadow.CANBTC.bit.BRPREG = 9;
ECanaShadow.CANBTC.bit.TSEG2REG = 1;
ECanaShadow.CANBTC.bit.TSEG1REG = 6;
MY SYSCLK is set by using
#define DSP28_DIVSEL 3 // Enable /1 for SYSCLKOUT
#define DSP28_PLLCR 2
Can someone correct me , where I am going wrong