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.
我想通过PCI调试6678,想直接加在CCSv5的环境里,将其运行单步断点等功能通过PCI在我们自定义的板卡上实现,CCSv5是在eclipse3.7上开发的,eclipse是开放源码的,那CCSv5开放源码吗?我在CCSv5里看到有些程序是没有源码的,直接调用了,是TI封了库的吗?例如:stepinto,stepover,run,fillmem等等吧,eclipse所谓的开源是不是CCS不必遵守呢?
举个例子,下面是CCSv5的插件程序,我用java反汇编给还原出来的class,里面有 public abstract void fillMem(dsITargetData paramdsITargetData);,可是我没看到fillMem的源码,是我找的地方不对吗?还是TI根本就没讲这些函数的源码封进去,那这些函数总得有个库吧,要不怎么能调用呢?刚接触java,不懂啊,哪位高手给解答下吧,谢谢啦 package org.mozilla.interfaces; public abstract interface dsIMemory extends dsIImplementationComparable { ...... public abstract void fillMem(dsITargetData paramdsITargetData); public abstract void fillMemByLong(int paramInt); public abstract void setMem(int paramInt1, int paramInt2); public abstract int getMemByAddr(dsITargetData paramdsITargetData); public abstract void setMemByAddr(dsITargetData paramdsITargetData, int paramInt); public abstract boolean compare(dsIMemory paramdsIMemory, int[] paramArrayOfInt); ...... }