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.
工具/软件:Code Composer Studio
我正在研究 f28377d 的 driverlib 库。 我看不到任何 IPC 库、它会为双 CPU 闪存启动进行以下初始化。
#ifdef _standalone #ifdef _FLASH //发送引导命令以允许 CPU2应用开始执行 IPCBootCPU2 (C1C2_Brom_BOOTMODE_BOOT_FROM _FLASH); #else //Send boot 命令以允许 CPU2应用开始执行 IPCBootCPU2 (C1C2_Brom_BOOTMODE_BOOT_FROM _RAM); #endif #endif
该部分与 driverlib 文件不存在。 此外、我在示例目录中看不到双闪存引导项目的任何示例。 如果我想使用 driverlib、我是缺少什么东西、还是需要自行实现这个部件?