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.
TI工程师,您好,关该问题,我按照论坛里的指导,把以下代码加入程序并编译通过后,烧写程序上电运行后,两个CPU工作均异常了,具体表现为IO口频繁动作,失控的样子。
另外,我不加入以下代码情况下,CPU1是可以正常运行的,请指导,谢谢!
#define FLASH 1
#ifdef _STANDALONE
#ifdef _FLASH
// Send boot command to allow the CPU2 application to begin execution
IPCBootCPU2(C1C2_BROM_BOOTMODE_BOOT_FROM_FLASH);
#else
// Send boot command to allow the CPU2 application to begin execution
IPCBootCPU2(C1C2_BROM_BOOTMODE_BOOT_FROM_RAM);
#endif
#endif
你好,感谢你的指导,参考例程,我对比了下工程属性配置,未发现异常,我现在问题的大体情况是这样:工程1、2在仿真模式下均可以正常运行,工程1CPU1单机可以正常运行,CPU2无法正常运行,然后我在CPU1里面加入IPCBootCPU2后,两个程序均不能正常运行,另外您说的工程属性配置主要看那些配置项目?