2016-02-28 12:46 PM
I've been introduced to SPWF01S WiFi during Embedded World 2016 exhibition at Nuremberg a few days ago.
I have an application that requires 8 or more server sockets in AP mode. SSL sockets would be a plus.The guy in the STM booth told my that it is feasible with the latest firmware but I cannot see this in the datasheets.DO you know if is this feasible with SPWF01S module or any other alternative? #spwf01s-wifi #sockets2016-03-01 07:53 AM
Ciao Angelo,
latest firmware release does not affect the number of socket server that you can open on SPWF01S.There is one instance of socket server, allowing access to one client; on the other side, there are 8 instances of socket client (one of them can be secured by TLS/SSL).Moreover, miniAP allows association up to 5 clients (stations).2017-12-14 10:18 PM
Hello,
I am using x-nucleo-idw01m1 development board.I want to send data on tcp socket server ,my module is in station mode,baud rate is 115200,for that i am sending following commands via uart to spwf01sa wifi module-
AT+S.SOCKD=port<CR>
AT+S.SOCKON=host name,port,t,ind<CR>
but after sending AT+S.SOCKON command got error fail to connect...why is it?can you tell me the steps for the tcp connection or commands?what i am doing wrong?
Thanks
vrushali
2017-12-15 07:22 AM
- SOCKD is needed to open a server, waiting for a remote client to connect
- SOCKON is needed to connect a remote server
If you have to connect a remote server, only need SOCKON command
2017-12-15 11:05 PM
Gerardo Gallucci,
First of all thanks for the reply.my configurations setting as follow as:
AT+S.SCFG=wifi_priv_mode,2<CR>
AT+S.SCFG=wifi_mode,1<CR>
But after sending AT+S.SOCKON=host name,port,t,ind<CR> i am getting same error ' failed to connect'...can you send me a sample code?or any tutorial regarding with this....
Thanks
vrushali
2017-12-16 03:02 AM
There is a step-by-step tutorial called 'Hands On':
You can follow Lab 3 for setting to existing AP, then Lab 7 for socket client management.
Since you have an x-nucleo-idw01m1, you can also start from existing projects contained into WIFI1 package:
It's up to you: work without an external host (hands-on) or with an STM32 as external host (WIFI1)
Hope this can help
jerry
2018-04-27 03:13 AM
Hello,
I want to check firmware authentication means correct code should upload into stm32(secure firmware update). I have downloaded sbsfu package for that but not getting what it exactly ,how it works, what is signature of firmware ,how to verified it.I am stuck with it please share example code for that or any document.
Thank you.