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.

CCS/TMS320F28377D: Driverlib for f28377d dual cpu boot from flash

Part Number: TMS320F28377D
Other Parts Discussed in Thread: C2000WARE

Tool/software: Code Composer Studio

I am investigating the driverlib library for f28377d. I do not see any ipc library which makes the following initialization for the dual cpu flash boot. 


#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

This part doesn't exist anf of the driverlib files. And also I don't see any example of dual flash boot project on the examples directory. Am I missing something or I need to implement this part on my own if I want to use driverlib?