专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
求助网页如何加载到LM3S8962芯片里
2019-03-24 09:55
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
TI MCU
4826
9
915
使用的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
加载中...
查看其它9个回答
一周热门
更多
>
相关问题
相关文章
×
关闭
采纳回答
向帮助了您的知道网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
×
付费偷看金额在0.1-10元之间
确定
×
关闭
您已邀请
0
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
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
一周热门 更多>