标题: [求助]908gz16总线时钟如何提高? [打印本页]
作者: zhwdy81 时间: 2006-8-1 15:40 标题: [求助]908gz16总线时钟如何提高?
我用的是4M的晶振,总线时钟是1M,如何将总线时钟提高?
具体寄存器如何设置,谢谢高手指点?
我看了CGM有好多寄存器要设置,以前没用过怕设错了
作者: strongchen 时间: 2006-8-1 17:10
这有一个由4M晶振产生8M总线频率的例子:
PCTL_BCS=0; /* Select clock source from XTAL */
PCTL_PLLON=0 /* Disable the PLL */
PCTL=0x02; /* Set the VCO Power-of-Two multiplier E=2 */
PMS=0x08; /* Set the Feedback divider N=8 */
PMRS=0x70; /* Set the VCO Linear multiplier L=112 */
PBWC=0x80; /* Select the operating modes */
PCTL_PLLON=1; /* Enable the PLL */
while(!PBWC_LOCK) { /* Wait */
}
PCTL_BCS=1; /* Select clock source from PLL */
__asm("nop");
__asm("nop");
作者: zhwdy81 时间: 2006-8-1 17:31
对于系统的稳定性不知道怎么样呢?
作者: strongchen 时间: 2006-8-2 09:22
什么稳定性?
欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) |
Powered by Discuz! 7.0.0 |