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.

dsp28377D程序下载

    dsp28377D中cpu1和cpu2都烧程序到flash中,重新加电之后,只有cpu1的程序运行,cpu2的程序不工作,只有将cpu1程序中的#ifdef _STANDALONE,#endif

删除(如下),重新烧写,两个CPU的程序才能正常工作;但是此时程序无法在线调试。为啥了????求教

    #ifdef _STANDALONE,

    #endif

   这两行代码有什么用???

#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