PaoloIT 2 Posted January 22, 2015 Share Posted January 22, 2015 Hello, I've a problem with the default mysimplelink.net web page of CC3200 launchpad. How can i delete it? I tried to format my flash with uniflash but when my system connect to my router, if write mysimplelink.net on my web browser the mysimplelink page is loaded..... I hate it !!!!! Quote Link to post Share on other sites
energia 485 Posted January 23, 2015 Share Posted January 23, 2015 hmm, that's a good question and I only know part of the answer. The CC3200 has a build in Webserver that Energia disabled if you start a TCP server on port 80. I.e. the simplewerserver example disables it so that it can display it's own pages. You do have control over stopping this internal webserver yourself in the Sketch. Simply put sl_NetAppStop(SL_NET_APP_HTTP_SERVER_ID); after your WiFi.begin(). As for the pages that come up on the internal webserver, I thought they were stored in the serial flash. They could be part of a protected section though that does not get erased. Robert Quote Link to post Share on other sites
PaoloIT 2 Posted January 25, 2015 Author Share Posted January 25, 2015 Work fine thank's. I've another question, I changed the url name to "myname.net" This work when the application is in AP mode but no when change to STA mode. To open the webserver I need to write the IP assigned from router... Is it possible to use the url also in STA ? Quote Link to post Share on other sites
Ehsan 0 Posted February 11, 2015 Share Posted February 11, 2015 Work fine thank's. I've another question, I changed the url name to "myname.net" This work when the application is in AP mode but no when change to STA mode. To open the webserver I need to write the IP assigned from router... Is it possible to use the url also in STA ? Hi PaoloIT, Can I ask how you change it to "myname.net". Mine is mysimplelink.net in AP mode. Quote Link to post Share on other sites
PaoloIT 2 Posted February 24, 2015 Author Share Posted February 24, 2015 i used this command unsigned char str[32] = "home.net"; unsigned char len = strlen((const char *)str); sl_NetAppSet(SL_NET_APP_DEVICE_CONFIG_ID, NETAPP_SET_GET_DEV_CONF_OPT_DOMAIN_NAME,len, (unsigned char*)str); Ehsan 1 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.