完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
在做HDB3编译码的程序,程序编译没有报错。quartus自动生成了测试文件,但刚接触FPGA不久激励部分的程序不知道怎么改,求大神帮忙看下测试文件怎么改,谢谢。
附HDB3编码程序: --HDB3编码 --输入2.048Mb/s数据流 --占空比为50%的取样时钟 --输出为两路双极性数据流 library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std; use ieee.std_logic_arith; entity HDB3 is port(clkin:in std_logic; datain:in std_logic; dataouthh:outstd_logic; dataouthl:out std_logic; clkout:outstd_logic); end HDB3; architecture behavior of HDB3 is begin process(clkin) variable count0,count1,count2:integer:=0 ; variable county:boolean; variable temp:std_logic_vector(3 downto 0); begin if clkin'event and clkin='0' then if datain='1' then--输入为1时处理4位寄存器 count0:=0; temp(0):=datain; count1:=count1+1; if temp(3)='0' then--首位0 处理 输出 dataouthh<='0'; dataouthl<='0'; else if county then--首位1处理输出 dataouthh<='1'; dataouthl<='0'; county:=not county; else dataouthh<='0'; dataouthl<='1'; county:=not county; end if; end if; else temp(0):=datain;--输入为0时处理4位寄存器 count0:=count0+1; if count0=4 then--检测到0000,处理 4位寄存器 count0:=0; count1:=(count1 rem 2);--两个四连零 间 1 的 奇偶 if (count1=1)OR(count2=0) then--两个四连零 间 1 的 奇偶 count1:=0; count2:=1; temp:="0001"; dataouthh<='0'; dataouthl<='0'; county:=notcounty; else count1:=0; --两个四连零 间 1 的 偶 temp:="1001"; if county then dataouthh<='1'; dataouthl<='0'; else dataouthh<='0'; dataouthl<='1'; end if; end if; else if temp(3)='0' then--未检测到0000 处理输出 dataouthh<='0'; dataouthl<='0'; else if county then dataouthh<='1'; dataouthl<='0'; county:=not county; else dataouthh<='0'; dataouthl<='1'; county:=not county; end if; end if; end if; end if; end if; temp(3 downto 1):= temp(2 downto 0); end process; clkout<=clkin; end behavior; 看过RTL威廉希尔官方网站 ,输入只有clkin和datain。clkin是占空比50%的取样信号,datain是输入的要编码的信息流。求大神帮忙修改下测试文件里这两个激励部分的程序,谢谢~ |
|
相关推荐
1个回答
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1500 浏览 1 评论
助力AIoT应用:在米尔FPGA开发板上实现Tiny YOLO V4
1072 浏览 0 评论
2584 浏览 1 评论
2270 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
2541 浏览 0 评论
2019 浏览 55 评论
6036 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-27 23:17 , Processed in 0.330536 second(s), Total 37, Slave 31 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (威廉希尔官方网站 图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号