This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RM48 HDK, HalCoGen 3.08, setupPLL() bug

Other Parts Discussed in Thread: HALCOGEN

I am using the RM48 HDK with CCS 5.5 and HALCoGen 3.08.
After resert the program stuck in the while-loop of function "setupPLL()".
If I am using HALCoGen 3.06 the program works.

HALCoGen 3.06 generates the line:
     systemREG1->CSDISSET = (1U << 1U) | (1U << 6U);

HALCoGen 3.08 generates the line:
        systemREG1->CSDISSET = 0x00000001U | 0x00000040U;

I guess this is a bug in HALCoGen 3.08  and the line should be:
        systemREG1->CSDISSET = 0x00000002U | 0x00000040U;


Is this a bug in HALCoGen 3.08?