Hello,
I have tiva c series ek-tm4c123gxl and the latest CCS with the a test updates.
I need someones help to figure out what is wrong with my environment. I have an issue but this problem happens not in my own code but in driverlib. For example in method SSIConfigSetExpClk in ssi.c
if ulSSIClk = 16 000 000 and ulBitRate = 8. I this case ulMaxBitRate should equal to 2000000 but when I try to debug the next step after assignment ulMaxBitRate become 0. And program got to infinity loop.
ulMaxBitRate = ulSSIClk / ulBitRate;
ulPreDiv = 0;
do
{
ulPreDiv += 2;
ulSCR = (ulMaxBitRate / ulPreDiv) - 1;
}
What's wrong with my environment in this case? Am I missed something in project settings?
Best regards,
Nikolay