freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于fpga的波形發(fā)生器的設(shè)計-資料下載頁

2024-11-12 15:31本頁面

【導(dǎo)讀】首先對標(biāo)準(zhǔn)波形進行采樣,然后經(jīng)過DA轉(zhuǎn)換和濾波輸出平滑的波形。XC2S2020PQ-208上調(diào)試通過,得到的波形好,可達(dá)到技術(shù)指標(biāo)。第二章單元電路設(shè)計……4.3.1測試結(jié)果………設(shè)計一波形發(fā)生器,可以產(chǎn)生頻率和幅值都可調(diào)的正弦波。率穩(wěn)定性較差、精度低、抗干擾能力差、成本也比較高。目前,單片機的功能已比較強大,集成度日益增高且。但是由于在傳統(tǒng)的單片機設(shè)計系統(tǒng)中必須使用許多分立元件組成單。降低,而功耗費用增高。FPGA編程靈活,可以實現(xiàn)三角波和正弦波的數(shù)字。綜上,選擇方案三來完成設(shè)計。波形發(fā)生控制電路由FPGA來完成,正弦波在一個周期內(nèi)的波形可以通過數(shù)字采樣,即用N個幅值離散的等間隔采樣點表示。址信號,ROM的大小由采樣點的個數(shù)決定。當(dāng)接受來自FPGA的地址信號后,將從數(shù)據(jù)線輸出相應(yīng)的波形數(shù)據(jù)。圖1-2-3-2為其系統(tǒng)工作原理框圖。DAC0832作為A/D轉(zhuǎn)換器件。通過鍵盤輸入來改變波形的幅值和頻率。稱為波形發(fā)生模塊。波形發(fā)生控制器的作用是利用FP

  

【正文】 d=4。 when 35= d=8。 when 36= d=13。 when 37= d=19。 when 38= d=26。 when 39= d=34。 when 40= d=43。 when 41= d=53。 when 42= d=64。 when 43= d=75。 when 44= d=87。 when 45= d=99。 when 46= d=112。when 47= d=124。 when 48= d=137。when 49= d=150。 when 50= d=162。when 51= d=174。 when 52= d=186。when 53= d=197。 when 54= d=207。when 55= d=217。 when 56= d=225。when 57= d=233。 when 58= d=239。when 59= d=245。 when 60= d=249。when 61= d=252。 when 62= d=254。when 63= d=255。 when others = null。 end case。 end process。 以上是正弦波發(fā)生 ,以下是三角波發(fā)生 pulse2:process(bclk,reset,conver) 三角波調(diào)頻進程 第 8 頁 共 10 頁 begin if reset=39。139。 then fss2=39。039。 elsif rising_edge(bclk) then if count9=255 then count9=dataf22。 fss2=39。139。 else count9=count9+1。fss2=39。039。 end if。end if。 end process pulse2。 process(fss2) begin if rising_edge(fss2) then if q2=64 then q2=0。 產(chǎn)生 65 個點 else q2=q2+1。 end if。end if。 end process。 process(q2,n2) 三角波波形存儲 ,分為 65 個點 begin case q2 is when 00= s=0。 when 01= s=8。 when 02= s=16。 when 03= s=24。 when 04= s=32。 when 05= s=40。 when 06= s=48。 when 07= s=56。 when 08= s=64。 when 09= s=72。 when 10= s=80。 when 11= s=88。 when 12= s=96。 when 13= s=104。when 14= s=112。when 15= s=120。 when 16= s=128。when 17= s=136。when 18= s=144。when 19= s=152。 when 20= s=when 21= s=168。when 22= s=176。when 23= s=184。 when 24= s=192。when 25= s=200。when 26= s=208。when 27= s=216。 when 28= s=224。when 29=s=232。 when 30= s=240。when 31= s=248。 when 32= s=255。when 33= s=248。when 34=s=240。 when 35= s=232。 when 36= s=224。when 37= s=216。when 38= s=208。when 39= s=200。 when 40= s=192。when 41= s=184。when 42= s=176。when 43= s=168。 when 44= s=when 45= s=152。when 46= s=144。when 47= s=136。 when 48= s=128。when 49= s=120。when 50= s=112。when 51= s=104。 when 52= s=96。 when 53= s=88。 when 54= s=80。 when 55= s=72。 when 56= s=64。 when 57= s=56。 when 58= s=48。 when 59= s=40。 when 60= s=32。 when 61= s=24。 when 62= s=16。 when 63= s=8。 when 64= s=0。 when others = null。 end case。 end process。 ss=conv_std_logic_vector(s*n2,9)。 將十進制的三角波波形量轉(zhuǎn)換成 12 位二進制輸出 dd=conv_std_logic_vector(d*n,9)。 將十進制的正弦波形量轉(zhuǎn)換成 12 位二進制輸出 end Behavioral。 第 9 頁 共 10 頁 附圖 1 三角波仿真波形 附圖 2 正弦波仿真波形
點擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1