-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration of PKTIO_READ_BUFFER_SIZE #169
Comments
@KeitaKashima You're correct in your understanding. The comment should describe the maximum AT command response size, which is typically the TCP socket receive command response packet size. This should be configurable according to the modem specification. We will create a PR to expose this configuration. |
@KeitaKashima |
Thank you for fixing this portion. I could redefine the <cellular_config.h> The |
Thank you for your verification. This issue will be closed when the PR is merged. Feel free to reopen this issue or create another one if you have further question. |
Hi, I am using this cellular interface lib, but I faced an issue of below.
The log message showed
No empty space from comm if to handle incoming data, reset all parameter for next incoming data.
After I changed
PKTIO_READ_BUFFER_SIZE
of definition value to 4096, it was solved.FreeRTOS-Cellular-Interface/source/include/private/cellular_common_internal.h
Line 51 in aff376d
Question
PKTIO_READ_BUFFER_SIZE
TCP window size?It has comment of
This should be larger than TCP packet size.
, but I think it is window size of TCP. Is my understanding correct?Request
The text was updated successfully, but these errors were encountered: