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.
I was looking through the MSP430x2xx Family User doc. and was trying to take some notes about the clock-system. I think I would feel better if someone more experienced would take a look over them and confirm that I'm not actually misunderstanding/misinterpreting anything. Furthermore, if these notes might help someone else get started with MPS430 feel free to use them:
BCSCTL2 = SELM_2 + DIVM_0 + /* skipping SELS */ DIVS_0; /* skipping DCOR*/ // SELM_2 --> selects src from DCOCLK // DIVM_0 --> divides freq by 1 (see DIVM_x header options) // skipping SELS because bit is set to 0 by default which means SMCKL will src from DCOCLK by default, or should I use RSEL0? // DCOR not applicable (for the MSP430G2553) is this correct??
Now, do I need to (since DCOCLK has been referenced at least twice) also be set (prior) to the BCS+ or can I just place it after the BCSCTL2 statement?
DCOCTL = CAL_DCO_1MHZ;
This two lines should set the clock-system to what I need, correct?
Hi Elude,
I think it will probably help others to go through what you've extracted from the Family User's Guide.
Thanks for sharing!
Yes, the two lines you've posted should do what you want. Before calibrating the DCO you might want to check though if the calibration constant had been erased before, as setting it again could trap the CPU.
You can check the code examples we provide to get started. Have a look at the TI Resource Explorer and browse for the MSP430G2553.
Best regards,
Britta
**Attention** This is a public forum