Hi,
I have a question about MCSDK FFTC example project for C6670.
I'm testing the "FFTC_Multicore_exampleProject" using C6670EVM.
In the example there are system_init() API. In system_init() the following
APIs are called:
==================================
system_init()
{
Qmss_init(){
key = Qmss_osalCsEnter();
・・・
Qmss_osalCsExit(key);
}
}
==================================
I have a question about Qmss_osalCsEnter() and Qmss_osalCsExit().
These API control GIE bit field of CSR.
Qmss_osalCsEnter() will disable GIE and Qmss_osalCsExit() will enable GIE.
But when I execute the program and check the GIE bit field just after Qmss_osalCsExit(),
it never enables the GIE.
Is there any information that why GIE never get enabled by this API?
best regards,
g.f.