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.

TDA3LX: Running TFDTP with Radar Processor SDK 3.03

Part Number: TDA3LX

Hi expert,

Customer want to run TFDTP on their own board with Radar SDK 3.03. Currently TCP/IP connection test is passed. Then we add TFDTP TX link based on framecopy demo but the connection failed. As below is the log from customer, could you please help to give some suggestion? Thank you.

IPU1-0 Remote Log Shared Memory @ 0xbfee00a0

[Cortex_M4_IPU1_C1] 

[Cortex_M4_IPU1_C0]  IPU1-1 Remote Log Shared Memory @ 0xbfeee8a0

[Cortex_M4_IPU1_C1] MAC Port 0 Address:

[Cortex_M4_IPU1_C0]  HOST Remote Log Shared Memory @ 0xbfef10a0

[Cortex_M4_IPU1_C1]      58-7a-62-95-03-88

[Cortex_M4_IPU1_C0]  DSP1 Remote Log Shared Memory @ 0xbfef60a0

[Cortex_M4_IPU1_C1] 

[Cortex_M4_IPU1_C0]  DSP2 Remote Log Shared Memory @ 0xbfef88a0

[Cortex_M4_IPU1_C1] MAC Port 1 Address:

[Cortex_M4_IPU1_C0]  EVE1 Remote Log Shared Memory @ 0xbfefb0a0

[Cortex_M4_IPU1_C1]      58-7a-62-95-03-89

[Cortex_M4_IPU1_C0]  EVE2 Remote Log Shared Memory @ 0xbfefd8a0

 EVE3 Remote Log Shared Memory @ 0xbff000a0

 EVE4 Remote Log Shared Memory @ 0xbff028a0

 IPU2 Remote Log Shared Memory @ 0xbff050a0

[Cortex_M4_IPU1_C1] GMACSW has been started successfully

Registration of the GMACSW Successful

Service Status: DHCPC    : Enabled  :          : 000

Service Status: DHCPC    : Enabled  : Running  : 000

[Cortex_M4_IPU1_C0] 

 i2cMdSubmitChan: i2c0 transfer to slave address 0x51 failed

  i2cMdSubmitChan: i2c0 transfer to slave address 0x51 failed

  i2cMdSubmitChan: i2c0 transfer to slave address 0x20 failed

  i2cMdSubmitChan: i2c0 transfer to slave address 0x20 failed

  i2cMdSubmitChan: i2c0 transfer to slave address 0x23 failed

 SYSTEM: UART: INTERRUPT Mode is Selected 

[Cortex_M4_IPU1_C1] Negotiated connection: FullDuplex 1000 Mbs

[Cortex_M4_IPU1_C0] 

 i2cMdSubmitChan: i2c0 transfer to slave address 0x20 failed

  i2cMdSubmitChan: i2c0 transfer to slave address 0x20 failed

 i2cMdSubmitChan: i2c0 transfer to slave address 0x23 failed

 SYSTEM: UART: INTERRUPT Mode is Selected 

 

After a while,

[Cortex_M4_IPU1_C1] Service Status: DHCPC    : Enabled  : Fault    : 002

 

Regards,

Allen

  • Hi Allen,

    Either using TCP/IP or TFDTP for data transfer, the board needs to get assigned an IP address from DHCP server first.

    If the TCP/IP connection test passed, the board should not have problem with DHCP server.

    Did the customer change something in the setup or configuration? Enabling TFDTP will not change the part related to DHCP.

    Regards,
    Stanley

  • Hi Stanley,

    Thanks. Customer did not enable DHCP in their router...Now we can receive radar raw data by TFDTP.
    Another question is how to set a static IP to TDA3? Because customer don't want to set up DHCP server when in field test.

    Regards,
    Allen
  • Hi Allen,

    You can set the following variable to 1 in the file vision_sdk\links_fw\src\rtos\bios_app_common\tda3xx\cfg\NDK_config.cfg

    var enableStaticIP         = 1;

    The static IP will be configured as below:

    if (enableStaticIP)
    {
    /* Settings for static IP configuration */
    Ip.address = "192.168.1.200";
    Ip.mask = "255.255.255.0";
    Ip.gatewayIpAddr = "192.168.1.1";
    Ip.ifIdx = 1;
    }

    Thanks and Regards,

    Piyali

  • Hi Piyali,

    Got it. Thanks.

    Regards,
    Allen