嗨,eilert,
我的问题已解决。
我使用的数量较少。
我还有一个问题。
我能够在DCM中正确生成10 MHz到100Mhz但是当我生成10 MHz到200Mhz时,
它产生20个时钟周期但延迟到10Mhz clk结束然后产生20个周期,同样继续....
- 组件声明
COMPONENT dcm_prt_pw PORT(CLKIN_IN:IN std_logic; CLKFX_OUT:OUT std_logic; CLKIN_IBUFG_OUT:OUT std_logic; LOCKED_OUT:OUT std_logic);
结束组成部分;
- 组件实例化
Inst_dcm_prt_pw:dcm_prt_pw端口映射(CLKIN_IN => clk_fpga,CLKFX_OUT => clk_int,CLKIN_IBUFG_OUT =>打开,LOCKED_OUT => locked_int);
以上来自于谷歌翻译
以下为原文
Hi eilert,
My problem is fixed. I was using less count. I have one more problem.
I could able to generate 10 MHz to 100Mhz in DCM properly But when i go to generate 10 MHz to 200Mhz,
It generates 20 clock cycles but a delay till the 10Mhz clk ends and then generates 20 cycles, same continues....
-- component declarations
COMPONENT dcm_prt_pw
PORT(
CLKIN_IN : IN std_logic;
CLKFX_OUT : OUT std_logic;
CLKIN_IBUFG_OUT : OUT std_logic;
LOCKED_OUT : OUT std_logic
);
END COMPONENT;
-- component instantiation
Inst_dcm_prt_pw: dcm_prt_pw PORT MAP(
CLKIN_IN => clk_fpga,
CLKFX_OUT => clk_int,
CLKIN_IBUFG_OUT => open,
LOCKED_OUT => locked_int
);
嗨,eilert,
我的问题已解决。
我使用的数量较少。
我还有一个问题。
我能够在DCM中正确生成10 MHz到100Mhz但是当我生成10 MHz到200Mhz时,
它产生20个时钟周期但延迟到10Mhz clk结束然后产生20个周期,同样继续....
- 组件声明
COMPONENT dcm_prt_pw PORT(CLKIN_IN:IN std_logic; CLKFX_OUT:OUT std_logic; CLKIN_IBUFG_OUT:OUT std_logic; LOCKED_OUT:OUT std_logic);
结束组成部分;
- 组件实例化
Inst_dcm_prt_pw:dcm_prt_pw端口映射(CLKIN_IN => clk_fpga,CLKFX_OUT => clk_int,CLKIN_IBUFG_OUT =>打开,LOCKED_OUT => locked_int);
以上来自于谷歌翻译
以下为原文
Hi eilert,
My problem is fixed. I was using less count. I have one more problem.
I could able to generate 10 MHz to 100Mhz in DCM properly But when i go to generate 10 MHz to 200Mhz,
It generates 20 clock cycles but a delay till the 10Mhz clk ends and then generates 20 cycles, same continues....
-- component declarations
COMPONENT dcm_prt_pw
PORT(
CLKIN_IN : IN std_logic;
CLKFX_OUT : OUT std_logic;
CLKIN_IBUFG_OUT : OUT std_logic;
LOCKED_OUT : OUT std_logic
);
END COMPONENT;
-- component instantiation
Inst_dcm_prt_pw: dcm_prt_pw PORT MAP(
CLKIN_IN => clk_fpga,
CLKFX_OUT => clk_int,
CLKIN_IBUFG_OUT => open,
LOCKED_OUT => locked_int
);
举报