SL8092 and TCP stack

How can I set up a tcp connection with a SL8092 module using at commands?

I am working with 2 modules, an SL8092 and an SL8082T.
With the SL8082T I set up a tcp connection with the AT commands:

AT+WIPCFG=1
AT+WIPBR=1,6
AT+WIPBR=2,6,11,“apn”
AT+WIPBR=4,6,0

AT+WIPCREATE=2,1,“ip address”,port number
AT+WIPDATA=2,1,1

These commands don’t work in the SL8092.
Are there other commands to set up the connection in the SL8092?
Where can I find the at commands (including the tcp/ip stack ones) for the SL8092?

Thanks.

Please use !PAD command supported on SL8092, documented at section 11 of Extended AT command guide (2130616).

Some information can be found in previous thread below:
[url]https://forum.sierrawireless.com/t/sl8092-open-tcp-socket/5478/9]

Thanks.

I set up the TCP connection in the SL8092 module with commands:

AT+CGDCONT=1,“IP”,“apn”
AT!PADSETUP=1,2,94.server ip address,0,port,0,1
AT!PADCONN=1

However, I could set up the connection only sending the commands via USB.
If I try to send these command via UART I receive error.
Do you have any idea why?
I’m working with a sierra development kit.

Another simple question. Where can I find the AT commands of the 8092 (apart from the 2130616 Extended AT Commands).

I found these docs:
AirPrime_SL808xT_and_Q2698_Open_AT_Framework_AT_Commands_Interface_Guide_for_Firmware_7_50_A2_Rev3_0.pdf
2130617 Standard AT Commands v7.pdf
AirPrime_SL501x_AT_Command_Reference_Rev5_2.pdf

but nothing specific for the SL8092.

Thanks

2130617_Standard_AT_Commands_v7.pdf and the extended is the correct manual for SL809x.

Sorry for late update…
The !PAD command works only on AT port (default on USB)… whereas PPP port was mapped on UART by default.

So, if you want to use !PAD command on UART, you may map AT service to UART via “AT!MAPUART=1”, on reboot UART port should accept !PAD command.

Please refer to Extended AT cmd guide Table 3-2 for details.

Thx