小明永久免费大陆在线观看-小明永久免费视频-小明永久视频免费播放-小嫩妇好紧好爽再快视频-小嫩嫩12欧美-小日本xxx

首頁 新聞 > 科技 > 正文

用VHDL設計的任意頻率分頻器

Sometimes I need to generate a clock at a lower frequency than the main clock driving the FPGA. If the ratio of the frequencies is a power of 2, the logic is easy. If the ratio is an integer N, then a divide-by-N counter is only a little harder. But if the ratio isn"t an integer, a little (and I mean a little) math is required. Note that the new clock will have lots of jitter: there"s no escaping that. But it will have no drift, and for some applications that"s what counts. If you have a clock A at frequency a, and want to make a clock B at some lower frequency b (that is, b a), then something like: d = 0; forever { Wait for clock A. if (d 1) { d += (b/a); } else { d += (b/a) - 1; /* getting here means tick for clock B */ } } but comparison against zero is easier, so subtract 1 from d: d = 0; forever { Wait for clock A. if (d 0) { d += (b/a); } else { d += (b/a) - 1; /* getting here means tick for clock B */ } } want an integer representation, so multiply everything by a: d = 0; forever { Wait for clock A. if (d 0) { d += b; } else { d += b - a; /* getting here means tick for clock B */ } } For example. I just bought a bargain batch of 14.1523MHz oscillators from BG but I need to generate a 24Hz clock. So a=14152300 and b=24: d = 0; forever { Wait for clock A. if (d 0) { d += 24; } else { d += 24 - 14152300; /* getting here means tick for clock B */ } } For a hardware implementation I need to know how many bits are needed for d: here it"s 24 bits to hold the largest value (-14152300) plus one more bit for the sign. In VHDL this looks like: signal d, dInc, dN : std_logic_vector(24 downto 0); process (d) begin if (d(24) = "1") then dInc = 0000000000000000000011000; -- (24) else dInc = 1001010000000110110101100; -- (24 - 14152300) end if; end process; dN = d + dInc; process begin wait until A"event and A = "1"; d = dN; -- clock B tick whenever d(24) is zero end process;

關鍵詞: VHDL任意頻率分頻器

最近更新

關于本站 管理團隊 版權申明 網站地圖 聯系合作 招聘信息

Copyright © 2005-2018 創投網 - m.zhigu.net.cn All rights reserved
聯系我們:33 92 [email protected]
豫ICP備2020035879號-12

 

韩国一级片在线观看 | 久久精品第九区免费观看 | 毛片免费视频在线观看 | 精品亚洲一区二区三区四区五区 | 99精品国产三级在线观看 | 日本sm/羞辱/调教/捆绑视频 | 成人aaa片一区国产精品 | 国产成人无码18禁午夜福利p | 欧美老熟妇乱子伦视频 | 国产成人精品无码一区二区三区 | 又粗又粗又黄又硬又深色的 | 人妻少妇乱子伦精品无码专区电影 | 国内精品卡一卡二卡三 | 久久久久久久极品内射 | 欧美人与动牲交a精品 | 免费在线黄色电影 | 久久久久无码国产精品一区 | 成 黄 色 激 情视频网站 | 国产精品亚洲片在线 | 中国亚州女人69内射少妇 | 99精品视频在线观看免费 | 国产精品久免费的黄网站 | 国产亚洲一区二区三区在线 | 精品高清国产a毛片 | www视频在线观看免费 | 8x8ⅹ在线永久免费入口 | 激情视频在线观看网站 | 2021国产精品午夜久久 | 18禁止看的免费污网站 | b站永久免费看片大全 | 999久久欧美人妻一区二区 | 久久无码av中文出轨人妻 | 国产成人无码免费网站 | 亚洲日韩中文字幕无码一区 | 日韩国产精品无码一区二区三区 | 久久不见久久见免费影院 | 2018国产精华国产精品 | 国产熟妇按摩3p高潮大叫 | 大肉大捧一进一出好爽视频mba | 永久免费无码av网站在线观看 | 久久夜色精品国产噜噜麻豆 |