Hi!
I found the following code in the EMV DA830 PSP 02.00.01 examples:
var pscPrms = new Psc.Params();
pscPrms.devId = 1;
Program.global.psc1 = Psc.create(pscPrms);
What is the meaning of devId? Sometimes it is assigned a value of 1 and sometimes zero depending on the peripheral device. Is it possible to use the same (psc1) variable to power up multiple devices like this:
Psc_ModuleClkCtrl(psc1, CSL_PSC_MCASP1, Psc_moduleClkCtrl_ENABLE, &eb);
Psc_ModuleClkCtrl(psc1, CSL_PSC_UART2,Psc_moduleClkCtrl_ENABLE, NULL);
??
What would be the purpose to create more than one psc instance?
Thanks!
Atmapuri