]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/drv/emac/Settings.xdc
Merge pull request #31 in PROCESSOR-SDK/pdk from prsdk-7319 to master
[processor-sdk/pdk.git] / packages / ti / drv / emac / Settings.xdc
3 module Settings
4 {
5     /*! This is the EMAC Version */
6     config string emaclldVersionString = "01.00.03.13";
8     /*! This variable is to control the device type selection.
9      * By default this variable is set to NULL.
10      * 
11      * To use EMAC for the selected device, add the following lines to config
12      * file and set the socType correctly:
13      * 
14      *      var emacSettings = xdc.useModule ('ti.drv.emac.Settings');
15      *      emacSettings.socType = "k2g";
16      * 
17      */
18     metaonly config string socType = "";
19     /*! This flag is used to indicate whether or not the benchmarking code
20      * (defined in the profilingHooks class) will be used in the project.
21      * Note that a separate library has been compiled and will be used
22      * ($NAME).profiling.a($SUFFIX). This is set in the *.cfg file.
23      */
24     config Bool enableProfiling = false;
25     /*! This variable is to control the device library type selection.
26      * By default this variable is set to release.
27      * 
28      * To use CSL to use the debug/release library, add the following lines to config
29      * file and set the library profile accordingly:
30      * 
31      *      var Uart Settings = xdc.useModule ('ti.Uart.Settings');
32      *      UartSettings.libProfile = "debug";
33      * 
34      */
35     metaonly config string libProfile = "release";      
36 }