Dear Onur,
AT# commands can not be used with Q26 Wireless CPUs and can not be used anymore on Q24.
You need to use WIPSoft AT commands. User guides and porting guides already exist. You can contact your distributor or find these documents on the web site.
You can also refer to the Open AT SDK to find some Open AT samples that use the library version of Wavecom IP stack.
For your information, if you want to use AT commands (WIPSoft), you can find here below the list of AT commands to send:
TCP server configuration:
at+wopen=1
OK
at+wipcfg=1
OK
at+wipbr=1,6
OK
at+wipbr=2,6,11,“websfr” //set apn
OK
at+wipbr=2,6,0,"" //set User name
OK
at+wipbr=2,6,1,"" //set password
OK
at+wipbr=4,6,0
OK
at+wipcreate=3,1,80,5,9 //create a server on port 80
OK
at+wipbr=3,6,15
+WIPBR: 6,15,“10.21.247.75” //Here you have your IP address
OK
AT+WIPDATA=2,1,1 //you can exchange data
CONNECT
TCP client configuration:
at+wopen=1
OK
at+wipcfg=1
OK
at+wipbr=1,6
OK
at+wipbr=2,6,11,“websfr” //set apn
OK
at+wipbr=2,6,0,"" //set User name
OK
at+wipbr=2,6,1,"" //set password
OK
at+wipbr=4,6,0
OK
at+wipcreate=2,1,“10.21.247.75”,80 //Here you set the IP address of the TCP server, port 80
OK
at+wipbr=3,6,15
+WIPBR: 6,15,“10.21.241.22” //Here you have your IP address
OK
AT+WIPDATA=2,1,1 //you can exchange data
CONNECT
I hope it helps