Other Parts Discussed in Thread: CCSTUDIO
I'm running Ubuntu 10.10, 64-bit., and I just installed the Linux CCS5.1.1.00033. When I tried to import a CCS3.3 project, I got the following:
!ERROR: This project has DSP/BIOS content, but no DSP/BIOS tools are currently installed. Please install DSP/BIOS tools and re-migrate this project.
!ERROR: java.lang.IllegalArgumentException
at java.net.URI.create(Unknown Source)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.processSources(LegacyProjectImporter.java:672)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.createManagedMakeProject(LegacyProjectImporter.java:459)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.doRun(LegacyProjectImporter.java:265)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.access$0(LegacyProjectImporter.java:226)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter$1.run(LegacyProjectImporter.java:209)
at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2344)
at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2326)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.run(LegacyProjectImporter.java:207)
at com.ti.ccstudio.project.ui.internal.wizards.importlegacy.ImportLegacyProjectWizard$1.run(ImportLegacyProjectWizard.java:111)
at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
Caused by: java.net.URISyntaxException: Illegal character in path at index 6: Source\AdjustForResolution.asm
at java.net.URI$Parser.fail(Unknown Source)
at java.net.URI$Parser.checkChars(Unknown Source)
at java.net.URI$Parser.parseHierarchical(Unknown Source)
at java.net.URI$Parser.parse(Unknown Source)
at java.net.URI.<init>(Unknown Source)
... 11 more
But I did install DSP/BIOS tools, and if I check the Help->Installation Details, it shows that both DSP/BIOS 5 and 6 are installed.
The part of the error message that says 'Illegal character in path at index 6: Source\AdjustForResolution.asm' made me suspicious that it doesn't like Windows-style path names, so I changed the .pjt file to use forward-slashes, and tried re-importing - now I get this:
!ERROR: This project has DSP/BIOS content, but no DSP/BIOS tools are currently installed. Please install DSP/BIOS tools and re-migrate this project.
!ERROR: java.lang.NullPointerException
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.resolveToCommonRootRelativePath(LegacyProjectImporter.java:1501)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.resolvePathOptionValue(LegacyProjectImporter.java:1463)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.setOptionSettings(LegacyProjectImporter.java:1271)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.processToolOptionSettings(LegacyProjectImporter.java:880)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.processBuildConfigurationSettings(LegacyProjectImporter.java:822)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.createManagedMakeProject(LegacyProjectImporter.java:460)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.doRun(LegacyProjectImporter.java:265)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.access$0(LegacyProjectImporter.java:226)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter$1.run(LegacyProjectImporter.java:209)
at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2344)
at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2326)
at com.ti.ccstudio.project.core.internal.legacy.LegacyProjectImporter.run(LegacyProjectImporter.java:207)
at com.ti.ccstudio.project.ui.internal.wizards.importlegacy.ImportLegacyProjectWizard$1.run(ImportLegacyProjectWizard.java:111)
at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
Any idea what I should do next?