2903|6

13

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

c2000 开发板要自己接晶振不?要接多大的啊? [复制链接]

c2000 开发板要自己接晶振不?要接多大的啊?   菜鸟刚开始学。。。请大师指教

最新回复

/*-----------------------------------------------------------------------------       Specify the PLL control register (PLLCR) and divide select (DIVSEL) value. -----------------------------------------------------------------------------*/ //#define DSP28_DIVSEL   0 // Enable /4 for SYSCLKOUT //#define DSP28_DIVSEL   1 // Disable /4 for SYSCKOUT #define DSP28_DIVSEL   2 // Enable /2 for SYSCLKOUT //#define DSP28_DIVSEL   3 // Enable /1 for SYSCLKOUT #define DSP28_PLLCR   12    // Uncomment for 60 MHz devices [60 MHz = (10MHz * 12)/2] //#define DSP28_PLLCR   11 //#define DSP28_PLLCR   10      // Uncomment for 50 Mhz devices [50 Mhz = (10MHz * 10)/2] //#define DSP28_PLLCR    9 //#define DSP28_PLLCR    8      // Uncomment for 40 MHz devices [40 MHz = (10MHz * 8)/2] //#define DSP28_PLLCR    7 //#define DSP28_PLLCR    6 //#define DSP28_PLLCR    5 //#define DSP28_PLLCR    4 //#define DSP28_PLLCR    3 //#define DSP28_PLLCR    2 //#define DSP28_PLLCR    1 //#define DSP28_PLLCR    0  // PLL is bypassed in this mode //---------------------------------------------------------------------------- /*-----------------------------------------------------------------------------       Specify the clock rate of the CPU (SYSCLKOUT) in nS.       Take into account the input clock frequency and the PLL multiplier       selected in step 1.       Use one of the values provided, or define your own.       The trailing L is required tells the compiler to treat       the number as a 64-bit value.       Only one statement should be uncommented.       Example 1: 40 MHz devices:                  CLKIN is a 10 MHz crystal or internal 10 MHz oscillator                  In step 1 the user specified PLLCR = 0x8 for a                  40 MHz CPU clock (SYSCLKOUT = 40 MHz).                  In this case, the CPU_RATE will be 25.000L                  Uncomment the line: #define CPU_RATE 25.000L       Example 1: 50 MHz devices:                  CLKIN is a 10 MHz crystal or internal 10 MHz oscillator                  In step 1 the user specified PLLCR = 0xA for a                  50 MHz CPU clock (SYSCLKOUT = 50 MHz).                  In this case, the CPU_RATE will be 20.000L                  Uncomment the line: #define CPU_RATE 20.000L       Example 2: 60 MHz devices:                  CLKIN is a 10 MHz crystal or internal 10 MHz oscillator                  In step 1 the user specified PLLCR = 0xC for a                  60 MHz CPU clock (SYSCLKOUT = 60 MHz).                  In this case, the CPU_RATE will be 16.667L                  Uncomment the line: #define CPU_RATE 16.667L -----------------------------------------------------------------------------*/复制代码  详情 回复 发表于 2013-4-14 22:41

点评

有片内振荡器60Mhz  详情 回复 发表于 2013-4-13 21:48
 
点赞 关注

回复
举报

2781

帖子

419

TA的资源

五彩晶圆(中级)

沙发
 

回复 楼主 xjjxjj897 的帖子

有片内振荡器60Mhz

点评

那最大能工作到多少Mhz?  详情 回复 发表于 2013-4-14 21:56
 
个人签名
 

回复

7219

帖子

192

TA的资源

五彩晶圆(高级)

板凳
 
有片内哦 亲

点评

那最大能工作到多少Mhz?  详情 回复 发表于 2013-4-14 21:56
 
 
 

回复

13

帖子

0

TA的资源

一粒金砂(中级)

4
 

回复 沙发 qinkaiabc 的帖子

那最大能工作到多少Mhz?
 
 
 

回复

13

帖子

0

TA的资源

一粒金砂(中级)

5
 

回复 板凳 常见泽1 的帖子

那最大能工作到多少Mhz?
 
 
 

回复

2781

帖子

419

TA的资源

五彩晶圆(中级)

6
 
  1. /*-----------------------------------------------------------------------------
  2.       Specify the PLL control register (PLLCR) and divide select (DIVSEL) value.
  3. -----------------------------------------------------------------------------*/

  4. //#define DSP28_DIVSEL   0 // Enable /4 for SYSCLKOUT
  5. //#define DSP28_DIVSEL   1 // Disable /4 for SYSCKOUT
  6. #define DSP28_DIVSEL   2 // Enable /2 for SYSCLKOUT
  7. //#define DSP28_DIVSEL   3 // Enable /1 for SYSCLKOUT


  8. #define DSP28_PLLCR   12    // Uncomment for 60 MHz devices [60 MHz = (10MHz * 12)/2]
  9. //#define DSP28_PLLCR   11
  10. //#define DSP28_PLLCR   10      // Uncomment for 50 Mhz devices [50 Mhz = (10MHz * 10)/2]
  11. //#define DSP28_PLLCR    9
  12. //#define DSP28_PLLCR    8      // Uncomment for 40 MHz devices [40 MHz = (10MHz * 8)/2]
  13. //#define DSP28_PLLCR    7
  14. //#define DSP28_PLLCR    6
  15. //#define DSP28_PLLCR    5
  16. //#define DSP28_PLLCR    4
  17. //#define DSP28_PLLCR    3
  18. //#define DSP28_PLLCR    2
  19. //#define DSP28_PLLCR    1
  20. //#define DSP28_PLLCR    0  // PLL is bypassed in this mode
  21. //----------------------------------------------------------------------------

  22. /*-----------------------------------------------------------------------------
  23.       Specify the clock rate of the CPU (SYSCLKOUT) in nS.

  24.       Take into account the input clock frequency and the PLL multiplier
  25.       selected in step 1.

  26.       Use one of the values provided, or define your own.
  27.       The trailing L is required tells the compiler to treat
  28.       the number as a 64-bit value.

  29.       Only one statement should be uncommented.

  30.       Example 1: 40 MHz devices:
  31.                  CLKIN is a 10 MHz crystal or internal 10 MHz oscillator

  32.                  In step 1 the user specified PLLCR = 0x8 for a
  33.                  40 MHz CPU clock (SYSCLKOUT = 40 MHz).

  34.                  In this case, the CPU_RATE will be 25.000L
  35.                  Uncomment the line: #define CPU_RATE 25.000L

  36.       Example 1: 50 MHz devices:
  37.                  CLKIN is a 10 MHz crystal or internal 10 MHz oscillator

  38.                  In step 1 the user specified PLLCR = 0xA for a
  39.                  50 MHz CPU clock (SYSCLKOUT = 50 MHz).

  40.                  In this case, the CPU_RATE will be 20.000L
  41.                  Uncomment the line: #define CPU_RATE 20.000L


  42.       Example 2: 60 MHz devices:
  43.                  CLKIN is a 10 MHz crystal or internal 10 MHz oscillator

  44.                  In step 1 the user specified PLLCR = 0xC for a
  45.                  60 MHz CPU clock (SYSCLKOUT = 60 MHz).

  46.                  In this case, the CPU_RATE will be 16.667L
  47.                  Uncomment the line: #define CPU_RATE 16.667L

  48. -----------------------------------------------------------------------------*/
复制代码

点评

//Select the internal oscillator 1 as the clock source CLK_setOscSrc(myClk, CLK_OscSrc_Internal); // Setup the PLL for x10 /2 which will yield 50Mhz = 10Mhz * 10 / 2 PLL_setup(my  详情 回复 发表于 2013-4-17 19:00
 
个人签名
 
 

回复

13

帖子

0

TA的资源

一粒金砂(中级)

7
 

回复 6楼 qinkaiabc 的帖子

//Select the internal oscillator 1 as the clock source
    CLK_setOscSrc(myClk, CLK_OscSrc_Internal);
   
    // Setup the PLL for x10 /2 which will yield 50Mhz = 10Mhz * 10 / 2
    PLL_setup(myPll, PLL_Multiplier_10, PLL_DivideSelect_ClkIn_by_2);

这样设置但 XCLKOUT为12.5MHz???
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表