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.

关于msp430f5529时钟配置的问题

Other Parts Discussed in Thread: MSP430F2618

请问TI专家,我之前一直用的MSP430F2618,在时钟配置时,经常会用到这句:

 if (CALBC1_1MHZ ==0xFF || CALDCO_1MHZ == 0xFF)                //配置时钟                    
 { 
   while(1);                                                    // If calibration constants erased
                                                                // do not load, trap CPU!!
 }
  BCSCTL1 = CALBC1_16MHZ;                                       // Set range
  DCOCTL = CALDCO_16MHZ;                                        // Set DCO step + modulation */

 

但是这几句用在f5529上却不行,请问在5529的时钟配置上,有没有类似的语句可以使用呢?