UDP socket can't close without +++ sending to Inet (Q24)

Hello!
I will try to write an UDP application using WIPStack 3.01 and AT-commands on my Q24Plus modem.

UDP connection setup is good and data transmission is OK every time. character bound the datagramm.
Problem reached while I try to close the UDP “socket”.
Before socket is closed modem sent the frame which consist of three characters “+++”.

<an gprs stack activate commands omited>

AT+WIPCREATE=1,1,555,"12.34.56.78",555
OK
+WIPREADY: 1,1
AT+WIPDATA=1,1,1
CONNECT
400758050D007319817684A19D00F6B98F8924AE84<ETX>
<pause 1 sec>+++
OK
AT+WIPCLOSE=1,1
OK

At the UDP-server side (port 555 receive) we got the sequence like this:

<open-port>400758050D007319817684A19D00F6B98F8924AE84<pause 1 s>+++<close-port>

Additional, each datagramm has own headers (about 64 bytes for each UDP datagramm). Then Q24Plus has to transmit 64 bytes of headers\IP protocol for 20 bytes of application data and 64 bytes for “+++” datagramm ~160 bytes in summary. The best case is 64+20 bytes – it is ~90 bytes in summary…

I don’t want to send any data after my datagramm.
How can I close UDP socket without additional “+++” data sending?
Thanks!

P.S.
Simply pay calculation for 1000 objects:
1440 UDP sessions per day take about 126kb for each device in the best case or 225kb in real using Q24Plus WIPsoft3.01.
For 1000 devices (126kb*1000) * $1/1Mb = $126 per day, but in reality we must pay $225 per day.

Thus we have to pay $99 everyday for this “small mistake”.

So, 15 days left. Can anybody tell me where WAVECOM live? :slight_smile:

This project has been start from 2004-2005 and take up to 1500 of Q24xx devices (up to 600 last year and about 1000 per year in the manufacturing plan).
Yes, it is not a BMW or ABB qoutes…

BUT I do not like Wavecom today!
Sorry, but I will make a force to NOT use Wavecom tomorrow.

It can be done through “AT+WIPCFG =13” WIP command… it gives the option :-
AT_WIP_NET_OPT_ESC_SEQ_NOT_SENT : Used to configure whether a “+++” escape sequence should be sent as data to the peer. By default, this option is set to 0 which means that the “+++”sequence is sent to the peer as data. If set to 1, “+++”sequence is not sent as data to the peer.

I think this is the one you require… but for this i think u will have to upgrade to a new WIP verison… it is available with OASIS 2.21 .

hope this solves your problem…