专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
求助网页如何加载到LM3S8962芯片里
2019-03-24 09:55
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
TI MCU
4821
9
915
使用的TI送的板子,跑了enet_io这个例程,不知道如何实现将网页加载到芯片,在查了相关资料后了解到写好的网页文件可以通过FCARM.EXE将.htm文件转换为.C文件,将.c文件添加到工程后不知道如何调用,希望达人给予知道,谢谢 参考帖子:
http://bbs.eeworld.com.cn/thread-204174-1-8.html
此帖出自
小平头技术问答
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
9条回答
academic
1楼-- · 2019-03-24 13:52
< Enet_io是通过makefsfile这个小工具来将网页数据转换成.h文件,你可以看看这方面的。
加载中...
yuanzhiqian
2楼-- · 2019-03-24 16:42
< :TI_MSP430_内容页_SA7 --> 谢谢帮助问题解决
——————————————————————————————————————
stellariswaredocsSW-DK-LM3S9B96-UG-xxxx.pdf 里的第4章中Web Filesystem Generator,介绍了makefsfile的用法,使用方法:你将需要转换的网页文件的文件夹和makefsfile.exe放在一个文件夹,WIN键+R,键入cmd,进入dos命令行,使用cd..到达makefsfile.exe所在目录,makefsfile -i html -o fsdata.h,html表示文件夹的名称,比如TI的网页文件夹为fs,输入的文件为fsdata.h,需要的命令就是:makefsfile -i fs -o fsdata.h ,这样即可将网页变成代码.
加载中...
eevip
3楼-- · 2019-03-24 21:05
精彩回答 2 元偷偷看……
加载中...
yuanzhiqian
4楼-- · 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
加载中...
interwu
5楼-- · 2019-03-25 05:47
所谓网页就是用 tcp_write往80端口输出字符串
网页加载到芯片就是字符串的保存
可以自定义.H档去做这些事,然后正确引用
加载中...
academic
6楼-- · 2019-03-25 07:13
精彩回答 2 元偷偷看……
加载中...
1
2
下一页
一周热门
更多
>
相关问题
相关文章
×
关闭
采纳回答
向帮助了您的网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
关闭
您已邀请
15
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
——————————————————————————————————————
stellariswaredocsSW-DK-LM3S9B96-UG-xxxx.pdf 里的第4章中Web Filesystem Generator,介绍了makefsfile的用法,使用方法:你将需要转换的网页文件的文件夹和makefsfile.exe放在一个文件夹,WIN键+R,键入cmd,进入dos命令行,使用cd..到达makefsfile.exe所在目录,makefsfile -i html -o fsdata.h,html表示文件夹的名称,比如TI的网页文件夹为fs,输入的文件为fsdata.h,需要的命令就是:makefsfile -i fs -o fsdata.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
网页加载到芯片就是字符串的保存
可以自定义.H档去做这些事,然后正确引用
一周热门 更多>