This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于HTTP-Server 问题

Other Parts Discussed in Thread: CC3100, UNIFLASH, CC3100SDK, MSP430F5529

你好,目前我使用CC3100+MSP430F5529LP, 使用范例HTTP-SERVER,可以成功控制LED,

但是想请问像是那个HTML页面,可以更改背景色(蓝色)吗?以及其他布局可以做更改吗?

该如何更改 ?谢谢您

  • 下了半天这个例程也没有下载下来。

    如果例程里提供了网页的源码,就可以更改

  • jing-wun,

      这个是可以通过修改代码实现的,但是前提是需要熟悉网页的相关编程。这些源代码都能在我们的SDk里面找得到,你可以参考一下,然后做相应的更改。

    谢谢

  • 你用uniFlash烧写SFlash时,应该看到过下列界面,看左边有main.html, led_demo.html, 其对应的文件在C:\ti\CC3100SDK_1.0.0\cc3100-sdk\examples\http_server\html 目录下都能找到。如Ken所说,需要熟悉网页的相关编程,然后做对应更改即可。

  • 您好:

    我已经解决问题了,谢谢您们的技术支援

    Jing-Wun

  • Lina Lian ,

    C:\ti\CC3100SDK_1.0.0\cc3100-sdk\examples\http_server\html 目录下只有blink_led.html和main.html,想对整个web page进行修改,

    Access to the internal web page is configured through the API. By default, access is enabled.
    The web page is composed of the following files:
    • about.html
    • image001.png
    • ip_config.html
    • Logo.gif
    • main.html
    • ping.html
    • profiles_config.html
    • simple_link.css
    • status.html
    • tools.html

    这些文件找不到在哪儿,另外想对web 页面编辑,用哪款软件比较好,小白求助。

  • Lina Lian ,

    另外关于这个例程,它实现的是ap模式下的控制LED,我想在station模式下实现,该怎么改,

    User needs to reconfigure the device in 'Station-Mode' for executing other sample applications. Refer
    function configureSimpleLinkToDefaultState in this example's main.c for configuring the device in
    'Station-Mode'.

    这是http_server.pdf中的说明,可是看不明白,求大神指点

  • Sheng Zhao2,

    请问你是使用什么来控制CC3100的?是外部MCU还是microsoft visual studio? 不管是什么,以使用MSP430F5529 launchpad + CC3100为例,你搭建起APdemo时,在MSP430F5529端运行的程序的main.c中,有个函数SimpleLinkToDefaultState里面有如何设置为station的指导。如下。但是你设置为station后,就需要使用smartconfig来将station加入router中。


    /* Switch to STA role and restart */
    retVal = sl_WlanSetMode(ROLE_STA);
    ASSERT_ON_ERROR(retVal);

    retVal = sl_Stop(SL_STOP_TIMEOUT);
    ASSERT_ON_ERROR(retVal);

    retVal = sl_Start(0, 0, 0);
    ASSERT_ON_ERROR(retVal);

    /* Check if the device is in station again */
    if (ROLE_STA != retVal)
    {
    /* We don't want to proceed if the device is not coming up in station-mode */
    ASSERT_ON_ERROR(DEVICE_NOT_IN_STATION_MODE);
    }


  • Sheng Zhao2,

    另外最全的资料总结可以参考下列link wiki, 最新的SDK和service pack如下。均使用最新的吧。

    NewsLatest Software Release
    [Mar 13, 2015] New SDK 1.1.0 released! Check out CC31xx Release Notes and CC32xx Release Notes pages!
    [Feb 5, 2015] New Uniflash 3.2.0.0012 released! Check out the Uniflash Download page!


    http://processors.wiki.ti.com/index.php/CC31xx_&_CC32xx 

  • Lina Lian ,

    我使用的是MSP430F5529 launchpad + CC3100例程,因为刚接触这方面,所以懂的很少,看不懂这个SimpleLinkToDefaultState,求指点具体该怎么改程序,

    另外这个程序是实现Led的亮灭的,可以更改它的web page以及它实现的功能吗,可是我没有找到它的webpage相对应的文件