summaryrefslogblamecommitdiffstats
blob: 49d361a71bdaed1fd362108e7ab363b6af29839d (plain) (tree)




































                                                                              

%%{
/*!
 *  This template implements the Settings.xdc
 */  
  /* Versioning */
  var ver = this;
  for each(i=0;i<ver.length;i++)
  {
      if(String(ver[i]).length < 2)
      {
        ver[i]="0"+ver[i];
      }
  }
  
  var packageVersion = "\""+ver[0]+"."+ver[1]+"."+ver[2]+"."+ver[3]+"\"";

%%}

module Settings
{
    config string bcpVersionString = `packageVersion`;

    /*! This variable is to control the device type selection.
     * By default this variable is set to NULL.
     * 
     * To use Qmss for the selected device, add the following lines to config
     * file and set the deviceType correctly:
     * 
     *      var Qmss = xdc.useModule ('ti.drv.qmss.Settings');
     *      Qmss.deviceType = "tci6634";
     * 
     * List of supported devices can be found in package.xs file.
     */
    metaonly config string deviceType = "";
}