#include <msp430x16x.h>Include dependency graph for clock.c:

Go to the source code of this file.
Functions | |
| void | init_clock_module (void) |
|
|
Definition at line 47 of file clock.c. Referenced by init_bsp(). 00047 {
00048 volatile int i;
00049 for (i=0;i<20000;i++); // startup delay to allow oscillator to come up
00050 BCSCTL1 = 0x04;
00051 BCSCTL2 = SELM1+SELS;
00052 IFG1 &= 0xFD; // clear OFIFG
00053 }
|
1.3.9.1