Hi,
The version I used
CCS version: CCS_5.0.3 MCSDK version: mcsdk_2_00_07_19 NDK version: ndk_2_20_06_35 Board version: TMDXEVM6678LE
I use the usage in the mcsdk-----Helloworld_evmc6678l.
I know it could set the UDP receive limit by writing the following codes:
// UDP Receive limit
rc = 8192;
CfgAddEntry( hCfg, CFGTAG_IP, CFGITEM_IP_SOCKUDPRXLIMIT,
CFG_ADDMODE_UNIQUE, sizeof(uint), (UINT8 *)&rc, 0 );
When I send several data (36*36 gray level image or less than it), it can obtain(can reach the breakpoint in the following picture)
But when sending data (40*40 gray level image or more than this), the program couldn’t reach the breakpoint.
According to this condition, I guess there is something wrong with UDP Receive limit or memory. But I don’t know how to alert the setting of the data-received size.
Who did it before, could help me to solve it?