求助网页如何加载到LM3S8962芯片里

2019-03-24 09:55发布

使用的TI送的板子,跑了enet_io这个例程,不知道如何实现将网页加载到芯片,在查了相关资料后了解到写好的网页文件可以通过FCARM.EXE将.htm文件转换为.C文件,将.c文件添加到工程后不知道如何调用,希望达人给予知道,谢谢 参考帖子: http://bbs.eeworld.com.cn/thread-204174-1-8.html 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
9条回答
yuanzhiqian
2019-03-25 00:36
我用makefsfile.exe生成好了.h文件,但是不知道如何使用,除了生成的几个网页文件的数组以外还有一下这些结构体,不知道如何用
const struct fsdata_file file_perror_html[] =
{
        {
                NULL,
                data_perror_html,
                data_perror_html + 13,
                sizeof(data_perror_html) - 13
        }
};

const struct fsdata_file file_io_http_html[] =
{
        {
                file_perror_html,
                data_io_http_html,
                data_io_http_html + 14,
                sizeof(data_io_http_html) - 14
        }
};

const struct fsdata_file file_io_cgi_shtml[] =
{
        {
                file_io_http_html,
                data_io_cgi_shtml,
                data_io_cgi_shtml + 14,
                sizeof(data_io_cgi_shtml) - 14
        }
};

const struct fsdata_file file_index_html[] =
{
        {
                file_io_cgi_shtml,
                data_index_html,
                data_index_html + 12,
                sizeof(data_index_html) - 12
        }
};

const struct fsdata_file file_family_html[] =
{
        {
                file_index_html,
                data_family_html,
                data_family_html + 13,
                sizeof(data_family_html) - 13
        }
};

const struct fsdata_file file_block_html[] =
{
        {
                file_family_html,
                data_block_html,
                data_block_html + 12,
                sizeof(data_block_html) - 12
        }
};

const struct fsdata_file file_404_html[] =
{
        {
                file_block_html,
                data_404_html,
                data_404_html + 10,
                sizeof(data_404_html) - 10
        }
};

#define FS_ROOT file_404_html

#define FS_NUMFILES 7

一周热门 更多>

相关问题

    相关文章