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.
您好!
我使用的是 TM4C1294KCPDT 微控制器、构建代码后收到警告消息"'" 正在将数据写入自动生成的文件 ""。
此警告表示什么、我是如何从这里得到的?
有助于解决此问题。
此致、
尤瓦拉伊
Yuvaraj 您好、
您能否在构建控制台中提供所有消息? 您可以复制并粘贴到文本文件、然后将该文件附加到该主题。
谢谢
小
Ki、您好!
我已在构建控制台中附加了所有消息。
谢谢。
尤瓦拉伊
谢谢。 相关消息来自十六进制实用程序。 我会将此主题提请编译器专家注意、他们可以进一步提供帮助。
以下是如何调用十六进制实用程序...
"C:/ti/ccs1210/ccs/tools/compiler/ti-cgt-arm_20.2.7.LTS/bin/armhex" --diag_wrap=off -o "Loadport_V0.hex" "Loadport_V0.out"
输出格式的默认值、 --从宽度 和 -- memwidth 成本。 这意味着使用以下默认选项: -tektronix --romwidth=8 --memwidth=32 。 在这些条件下、第一个名为 Loadport_V0.hex 获取每个字的第一个字节。 诊断程序中命名的文件...
warning: Data is being written to auto-generated file Loadport_V0.x1 warning: Data is being written to auto-generated file Loadport_V0.x2 warning: Data is being written to auto-generated file Loadport_V0.x3
分别获取每个字的第二个、第三个和第四个字节。 要了解其中的原因、 请搜索 TI ARM 汇编工具手册 中标题为将数据分区到输出文件的子章节。
常见的解决方案是将设置添加到 --romwidth=32 。
谢谢。此致、
-乔治