Hi,
We are using CC3100.
It is running in AP mode as TCP server.
We are disabling the packet aggregation using the below API as mentioned in the TRM(section 6.8)
/* Packet aggregation disabled*/
uint8_t RxAggrEnable = 0;
retVal = sl_NetCfgSet(SL_SET_HOST_RX_AGGR, 0, sizeof(RxAggrEnable), (uint8_t *) &RxAggrEnable);
Even after using this API, it concatenate more than one packet into the buffer.
The API is returning as success.
How can we resolve this issue?
Thanks,
Likhitha