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.

F28335 ECAN

Hi I have make CAN communication to use loofback example and to check CANTX pin by Oscillpscope.

 

But... I can not see CAN Tx Data. So I need to your advice.

 

I did init set

InitECana() , InitECanaGpio() (GPIO 18,19) ,

MBOX0 : IDE 11bit ID set , AAM Tx set , STDMSGID set , Data length set , MD0 = 1 MBOX0 Tx , Enable ME0 = 1

Self loop test.

 

and I did send data in 1s main roof

I write MBOX Data.

 ECanaShadow.CANTRS.all = 0;

 ECanaShadow.CANTRS.bit.TRS0 = 1;

 ECanaRegs.CANTRS.all = ECanaShadow.CANTRS.all;

 do{

  ECanaShadow.CANTA.all = ECanaRegs.CANTA.all;

 } while(!ECanaShadow.CANTA.bit.TA0);

 ECanaShadow.CANTA.all = 0;

 ECanaShadow.CANTA.bit.TA0 = 1;

 ECanaRegs.CANTA.all = ECanaShadow.CANTA.all;

 

I do not know why I can't check communication data by oscilloscope.

I did delete Self Test mode but also result.