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.

[FAQ] How do I add C2000 SysConfig One-Click Library Support to any driverlib/SysConfig based project?

Other Parts Discussed in Thread: SYSCONFIG, C2000WARE

How do I add C2000 SysConfig One-Click Library Support to any driverlib/SysConfig based project?

C2000 SysConfig now supports one-click library support starting with C2000WARE version 4.01.00.00.

The options are in the C2000 SysConfig GUI. Additional files named c2000ware_libraries.opt , c2000ware_libraries.cmd.genlibs are generated. How do I use these in my CCS project?

  • How to use the SD FATFS library in CCS

    Starting from an example SysConfig/driverlib based project

    1. Open the .syscfg file
    2. Add the SD FATFS library to your project
    3. Select the PinMux for your chip select GPIO and SPI module


    4. Save and close the .syscfg file
    5. Open the example .c file
    6. Add the #include for C2000 SysConfig One-Click Library header file:
      #include "c2000ware_libraries.h"

    7. Add the library initialization function after the Board_init function
    8. Next add the project specific content for reading from and writing to your SD card


    9. The final step is to add the libraries required by SysConfig to the project properties. Right click and open the project properties
    10. Open the C2000 Linker Options -> File Search Path
    11. Add the C2000 SysConfig generated c2000ware_libraries.cmd.genlibs to the include library files
        
    1. Click Apply and Close
    2. Build and run your project on your device

    All other C2000 SysConfig libraries follow the same structure