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.

A question about the RTSC configuration file

Hi,

Could we use two or more configuration files(*.cfg) in one project?

Regards

 

  • Configuration files can load other configuration files. If your main configuration script is hello.cfg, you can include 'hello2.cfg' (residing in the same directory as hello.cfg) with
    xdc.loadCapsule("hello2.cfg");

    xdc.loadCapsule has a richer functionality than only including multiple files in one configuration, but it can used for these purposes too.