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.

TMS320F280025C: CAN receive frame configuration, transmit is ok (polling mode)

Part Number: TMS320F280025C

Hi experts,

I need your help^for my program, I want to configure CAN communication I have for the moment for the development my board for the first node and my PC with a peak CAN probe for the second node.

I want to transmit one object and receive a second one  for the moment but then I will have more to configure. The tranmission is good, I see my frame from the board to my PC but the opposit doesn't work in CAN_IF2DATA / CAN_IF2DATB I see never data.

I am trying to set up a filter on the incoming ID I only want to accept the ID I send from the PC in this case ID = 0x010 in standard form.

I have done a lot of research in your documentation and on the forum but without success. I tried to configure without the filter on the ID by not putting masks but without success, so I am not sure that the problem comes from the filtering on the ID (to see if I did not make a mistake anyway)

So I configure : 

CanaRegs.CAN_IF2MSK.bit.Msk = 0x1FFFFFFF;

CanaRegs.CAN_IF2ARB.bit.ID = (msgID << 18);

CanaRegs.CAN_IF2CMD.bit.DIR = 0;

CanaRegs.CAN_IF2ARB.bit.Dir = 0;

This lines are correctly ? for me yes but ...

You can see screenshots and my code : 

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
void can_init(void)
{
EALLOW;
/// Configure CANA_RX
GpioCtrlRegs.GPAPUD.bit.GPIO3 = 1; /// Disable the pullup on GPIO3
GpioCtrlRegs.GPAGMUX1.bit.GPIO3 = 3; /// To define mux position, mux position equal GPAGMUX(2bits) - GPAMUX(2bits) 0 to 15 number, here mux position equal 14 so GPAGMUX1 = 11b and GPAMUX1 = 10b.
GpioCtrlRegs.GPAMUX1.bit.GPIO3 = 2; /// GPIO3 = CANA_RX, see pin attributes documentation for mux position.
GpioCtrlRegs.GPADIR.bit.GPIO3 = 0; /// GPIO3 = input
GpioCtrlRegs.GPAINV.bit.GPIO3 = 0; /// Not inverted GPIO input
/// Configure CANA_TX
GpioCtrlRegs.GPAPUD.bit.GPIO2 = 1; /// Disable the pullup on GPIO2
GpioCtrlRegs.GPADIR.bit.GPIO2 = 1; /// GPIO2 = output
GpioCtrlRegs.GPAODR.bit.GPIO2 = 0; /// Normal output not open drain
GpioCtrlRegs.GPAQSEL1.bit.GPIO2 = 0; /// Synchronous
GpioCtrlRegs.GPAGMUX1.bit.GPIO2 = 3; /// To define mux position, mux position equal GPBGMUX(2bits) - GPBMUX(2bits) 0 to 15 number, here mux position equal 14 so GPAGMUX1 = 11b and GPAMUX1 = 10b.
GpioCtrlRegs.GPAMUX1.bit.GPIO2 = 2; /// GPIO2 = CANA_TX, see pin attributes documentation for mux position.
/// Place CAN controller in init state, regardless of previous state.
/// This will put controller in idle, and allow the message object RAM to be programmed.
/// CAN module ignore bus activity during configuration.
CanaRegs.CAN_CTL.bit.Init = 1;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Thanks

Damien

  • Hi Damien,

    Can you clarify a few items?  I assume you are  not using interrupts to trigger frame reception.  Comment in your above code (line 55)  shows /// Receive message but succeeding codes seem that it is configuring a message object.  There is a function read_CAN_message() but the checks for NewDat is commented out.  How are you checking for the occurrence of new data for mailbox 2?

    Regards,

    Joseph

  • Hi Joseph, 

    You are reason I want use polling mode to trigger flames reception not interrupt. My comment at line 55 isn't appropriate it's a configuration of mail box for receive message. Mail box 1 i's configure for transmit message and isn't show here because it work and mail box 2 for reception. 

    I have test occurrence of new data for mail box2 with can_ndat_21 line 113 but this register i's always at 0 so I think no frame at reception has trigger by mask Filter no ? 

    If I don't t'est this one un read function, only verify candata register for one mail box configuration it will be work no ? When I'll configure more mail box for receive, this detection will be make. 

    My mail box 2 is in good configuration for receive message ? 

    I don't understand why can_ndat_21 equal 0 ? Trigger don't work I suppose. 

    Thanks

    Damien

  • Hi Damien,

    Can you move the the statements:

    CanaRegs.CAN_IF2CMD.bit.DATA_A = 1;
    CanaRegs.CAN_IF2CMD.bit.DATA_B = 1;

    that is currently in receive_CAN_message earlier in routines where you have defined message object 2 to see if that works?  I do not see these bits set in the IF2CMD register in the snapshot that you sent.

    Regards,

    Joseph

  • Hi Joseph,

    I'm making progress in my debugging, but I'm stuck on a problem. I'm still configured with a sending frame with ID 0x100 (µC -> PC) and another frame with ID 0x010 (PC -> µC). I want to see in the CAN_IF1DATx register the data sent on the frame with ID 0x100 and see the data sent from the PC with ID 0x010 in a second CAN_IF2DAT buffer. But in debugger mode I see in CAN_IF1DAT and in CAN_IF2DAT the same data transmitted on the ID 0x100 in Tx. I do not access the data of the frame 0x010 in Can_rx.
    Why don't I see my data from Can_Rx in CAN_IF2DAT? I certainly made a mistake on the configuration ?
    I defined CAN_IF1CMD.bit.DIR = 1 (transmit direction)
                     CAN_IF1ARB.bit.Dir = 1 (transmit direction)
                     CAN_IF1ARB.bit.ID = 0x100 << 18
                     CAN_IF1CMD.bit.MSG_NUM = 1

                     CAN_IF1CMD DIR = 0 (receive direction)
                     CAN_IF1ARB.bit.Dir = 0 (receive direction)
                     CAN_IF1ARB.bit.ID = 0x010 << 18
                     CAN_IF1CMD.bit.MSG_NUM = 2

    I don't see the problem, can you please help me?

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    #include "f28002x_device.h"
    #include "HPTS100_can.h"
    uint16_t rx_data[8];
    void can_init(void)
    {
    EALLOW;
    /// Configure CANA_RX
    GpioCtrlRegs.GPAPUD.bit.GPIO3 = 1; /// Disable the pullup on GPIO3
    GpioCtrlRegs.GPAGMUX1.bit.GPIO3 = 3; /// To define mux position, mux position equal GPAGMUX(2bits) - GPAMUX(2bits) 0 to 15 number, here mux position equal 14 so GPAGMUX1 = 11b and GPAMUX1 = 10b.
    GpioCtrlRegs.GPAMUX1.bit.GPIO3 = 2; /// GPIO3 = CANA_RX, see pin attributes documentation for mux position.
    GpioCtrlRegs.GPADIR.bit.GPIO3 = 0; /// GPIO3 = input
    GpioCtrlRegs.GPAINV.bit.GPIO3 = 0; /// Not inverted GPIO input
    /// Configure CANA_TX
    GpioCtrlRegs.GPAPUD.bit.GPIO2 = 1; /// Disable the pullup on GPIO2
    GpioCtrlRegs.GPADIR.bit.GPIO2 = 1; /// GPIO2 = output
    GpioCtrlRegs.GPAODR.bit.GPIO2 = 0; /// Normal output not open drain
    GpioCtrlRegs.GPAQSEL1.bit.GPIO2 = 0; /// Synchronous
    GpioCtrlRegs.GPAGMUX1.bit.GPIO2 = 3; /// To define mux position, mux position equal GPBGMUX(2bits) - GPBMUX(2bits) 0 to 15 number, here mux position equal 14 so GPAGMUX1 = 11b and GPAMUX1 = 10b.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Thanks

    Damien

  • Hi Damien,

    Good to hear that you are making good progress with your code.  I see that you are starting to receive CAN frames.  On your attached code, you have reference to SHADOW registers.  Our examples for F28002x are currently written using driverlib codes and it seems like you are using  some old code referring to SHADOW registers from a different type of CAN (eCAN).  There are no SHADOW registers in F28002x DCAN.  I just want to make sure that you are programming the correct CAN registers.  Can you clarify what these shadow registers are on F28002x that you have used?

    Thanks,

    Joseph