JW32在MMEVS仿真器和写到芯片上的PLL配置是有区别的,参考下面程序
//====================================================
//for 48MHZ CGMCLK, 8MHZ bus, 4MHz reference clk
// R=1, N=06, P=1, E=2, L=96
//====================================================
void PLL_start(void)
{
PCTL_BCS = 0x0; //1 :Select vco as bus clock ,0: osc as bus clock
PCTL_PLLON = 0x0; //PLL OFF
PCTL = 0x06; //P = 1,E = 2
PMSH = 0x00; //N high = 0
PMSL = 0x06; //N low = 6
PMRS = 0x96; //L = 96
PMDS = 0x01; //R = 1
PBWC_AUTO = 0x1; //Set auto mode
PCTL_PLLON = 0x1; //PLL ON
while (!PBWC_LOCK ){}; // wait for pll lock
#if MMEVS_NODEBUG
PCTL_BCS = 0x1; //1 :Select vco as bus clock ,0: osc as bus clock
#endif
} |