1 Star 1 Fork 1

yukie.peng/STM32duino-bootloader

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
usb_descriptor_strings_util.html 754 Bytes
一键复制 编辑 原始数据 按行查看 历史
Grant Miller 提交于 2017-08-08 18:57 . Replace tabs with spaces
<html>
<script>
function convertText(txt,idNum)
{
var txt2 ="#define ALT"+idNum+"_STR_LEN 0x"+(txt.length*2 + 2).toString(16).toUpperCase()+"<br/>\t#define ALT"+idNum+"_MSG_STR ";
for (var i=0;i<txt.length;i++)
{
txt2+="'"+txt[i]+"',0,";
}
return txt2.substring(0,txt2.length-1)+"<br/>";
}
var bootloaderName = "STM32duino bootloader v1.0 ";
document.write("<pre>USB Strings for config.h\n\n");
document.write("\t"+convertText(bootloaderName + " ERROR. Upload to RAM not supported.",0)+"<br/>");
document.write("\t"+convertText(bootloaderName + " Upload to Flash 0x8005000",1)+"<br/>");
document.write("\t"+convertText(bootloaderName + " Upload to Flash 0x8002000",2)+"<br/>");
document.write("</pre>");
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yukiepeng/STM32duino-bootloader.git
[email protected]:yukiepeng/STM32duino-bootloader.git
yukiepeng
STM32duino-bootloader
STM32duino-bootloader
master

搜索帮助