Dear Nordic company,
I have question connected with nrf9151 chip. I know, that this chip contains two parts, ARM core and modem.
I am trying to understand of Serial LTE modem application. Now I know (I think I know it correctly), that if I use recv() function, data are removed from RX buffer (inside modem) into buffer inside ARM section via inter proceor communication.
slm_data_buf is buffer inside ARM section, am I right?
If I use function data_send(), I will send bytes from slm_data_buf into UART, via UART into device, that controls nrf9151 (personal computer, application microcontroler etc).
But my question is connected with buffer inside modem. What is capacity of internal buffer of modem for each socket? How many sockets could be create?
Yes, I searched discussions here, but I was not able to fd anything. Only informations that I was able to found that via recv() function I am able to transfer 2048 bytes od data (cause of MTU of one packet). I know function recv() overwrite data, that are inside buffer (if in first step I receive 100 bytes and in the second step 200 bytes an if I am no so fast to transmitt 100 bytes from slm_data_buf, these bytes will be overwritten by 200 bytes received in the second step).
But how many packets could be stored into one buffer of one socket?
I try to make slm_data_buf larger, I can do it inside slm_at_host.c file. But if is true, that recv() function can only transmitt 2048 bytes, it doesn't make a sence.
I am working on strategy of retention of data, and I wanna know , how i can construct memory managment.
Please inform me about buffer size of one socket inside modem (in packets or in bytes). And about number of socket that I can create.
Kind regards
Jaroslav Havel