如何编译使用不同版本的代码生成工具创建的 Code Composer 项目?
我有一个从朋友那里收到的 Code Composer 项目。当我尝试构建它时,我收到以下错误消息:
该项目是使用 代码生成工具的版本 当前未安装:6.1.12 [C6000]。请安装代码 该版本的生成工具,或者 将项目迁移到其中之一 支持的版本。
如何将项目迁移到我的版本?
I have a Code Composer project I received from a friend. When I try to build it I get the following error message:
This project was created using a
version of Code Generation tools that
is not currently installed: 6.1.12
[C6000]. Please install the Code
Generation tools of this version, or
migrate the project to one of the
supported versions.
How do I migrate the project to my version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该能够破解它 - 项目文件是纯文本的。
打开该文件,将其与使用您的版本创建的项目文件进行比较。更改与版本控制明显相关的任何差异,使其看起来像您的本机文件。
作为替代方案,只需使用 IDE 创建一个新项目,然后手动添加朋友的项目文件中列出的所有源文件。
You should be able to hack it - the project file is plaintext.
Open the file, compare it to a project file created with your version. Change any differences obviously related to versioning to look like your native file.
As an alternate, just create a new project with your IDE, then manually add all the source files listed in the friend's project file..
以下是 TI wiki 的几个链接,描述了 CCS 版本之间的项目迁移:
http://processors.wiki.ti.com/index.php/Importing_Projects_into_CCS
http://processors.wiki.ti.com/index.php/GSG:Importing_projects_from_previous_versions
Here are a couple links to the TI wiki that describe migration of projects between CCS versions:
http://processors.wiki.ti.com/index.php/Importing_Projects_into_CCS
http://processors.wiki.ti.com/index.php/GSG:Importing_projects_from_previous_versions