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.

TDA4VM: iperf3 test Gigabit Ethernet caused graphs running on mcu2_0 stop during process

Part Number: TDA4VM

Hi all,

       The three graphs (GPIO level detection, ADC sampling, PPS periodic interrupt monitoring) which run on mcu2_0 continue to run for 3 days without problems, but with iperf3 testing (run on A72) Gigabit Ethernet (through cpsw9g switch RGMII port5) After that, it will cause the three graphs to hang in succession, and the hang in the process function does not return to A72 normally.The code is shown as fellow.Will iperf3 affect the resources of mcu2_0? At present, we see that iperf3 occupies about 20% of A72 when running with 900Mbps TCP communication.

Regards,

Jason

---------------------------------code ------------------------------------

static vx_status app_run_graph_gpio(AppObj *obj)
{
vx_status status = VX_SUCCESS;
// int i = 0;
// uint32_t setMac = 0;

// tivx_gpio_data_t gpio_kernel_data;

while(1)
{
tivxEventWait(obj->evnt_gpio_run, TIVX_EVENT_TIMEOUT_WAIT_FOREVER);
status = vxProcessGraph(obj->graph_gpio);   <--------stop here
status = vxCopyUserDataObject(obj->gpio_data,
0,
sizeof(tivx_gpio_data_t),
&obj->gpio_kernel_data,
VX_READ_ONLY,
VX_MEMORY_TYPE_HOST);

……

}

---------------------------------code end------------------------------------