国产精品久久久久aaaa_午夜精品成人一区二区视频_在线观看日韩_欧美日韩精品一区二区三区蜜桃_女人被狂躁后的视频免费_日本成人在线播放

首頁(yè) 新聞 > 科技 > 正文

用VHDL設(shè)計(jì)的任意頻率分頻器

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;

關(guān)鍵詞: VHDL任意頻率分頻器

最近更新

關(guān)于本站 管理團(tuán)隊(duì) 版權(quán)申明 網(wǎng)站地圖 聯(lián)系合作 招聘信息

Copyright © 2005-2018 創(chuàng)投網(wǎng) - www.pdssy.com.cn All rights reserved
聯(lián)系我們:33 92 [email protected]
豫ICP備2020035879號(hào)-12

 

主站蜘蛛池模板: 久久久国产这里有的是精品 | 午夜久久 | 欧美成人性生活 | 操久久 | 久爱视频www在线播放 | 天天插天天操 | 亚洲精品三级 | 天天干天天添 | 欧美成人一区二区三区 | 精品久久久久不卡无毒 | 四虎影在线永久免费四虎地址8848aa | 亚洲字幕在线观看 | 国产精品中文在线 | 欧美一页 | 视频精品一区 | 久久亚洲国产成人亚 | 国产欧美日韩第一页 | 九九re6精品视频在线观看 | 久久96国产精品 | 91日本在线观看亚洲精品 | 天天色av| 国产九九九 | 国产精品视频播放 | 九九线精品视频 | 色3344| 亚洲一区免费看 | 91九色视频在线播放 | 免费看黄色一级大片 | 香蕉草草久在视频在线播放 | 蜜桃日韩 | 日韩不卡高清 | 97网站 | 99热这里只有精品8 免费看搡女人的视频 | 一区久久 | 黄网站涩免费蜜桃网站 | 久久久久久久久97 | 91精品国产91久久久久 | 婷婷丁香综合 | 国内精品小视频福利网址 | 欧美日韩国产手机在线观看视频 | 天天干天天拍天天操 |