完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
选了一款ADI公司的AD4000 2MSPS 16bitADC,看文档的时候 感觉里面给的时序很简单。
然后真正写的时候,就遇到好多麻烦。 我要使用AD4000的TURBO模式,因此,需要在开启ADC之后对ADC内的寄存器进行依次写操作,在写的同时也要读取数据。 我选择的使4线TURBO模式,无busy indicator。 有没有用过这款ADC的,可以把代码发给我借鉴一下?(673347062@qq.com) |
|
相关推荐
3个回答
|
|
你用什么语言呢,晚上回家给你发个vhdl的
|
|
|
|
library ieee;
use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; Entity AD_RD is Port ( clk,io,st:in std_logic; sclk,ce:buffer std_logic; dat:out integer range 0 to 255 ); End AD_RD; Architecture main of AD_RD is signal sp:integer range 0 to 31:=0; signal sp2:integer range 0 to 1; signal temst:std_logic:='0'; begin process(clk) variable temdat:std_logic_vector(0 to 7):="00000000"; begin if clk'event and clk='1' then case sp2 is when 0 => if st='1' then temst <= '1'; sp2<=1; end if; when 1 => if st='0' then sp2<=0; end if; end case; if temst = '1' then sp<=sp+1; case sp is when 0 => ce<='0'; when 5 => sclk <='1'; temdat(0):=io; when 6 => sclk <='0'; when 7 => sclk <='1'; temdat(1):=io; when 8 => sclk <='0'; when 9 => sclk <='1'; temdat(2):=io; when 10 => sclk <='0'; when 11 => sclk <='1'; temdat(3):=io; when 12 => sclk <='0'; when 13 => sclk <='1'; temdat(4):=io; when 14 => sclk <='0'; when 15 => sclk <='1'; temdat(5):=io; when 16 => sclk <='0'; when 17 => sclk <='1'; temdat(6):=io; when 18 => sclk <='0'; when 19 => sclk <='1'; temdat(7):=io; when 20 => sclk <='0'; when 21 => dat<= conv_integer(temdat); when 22 => ce<='1'; temst <= '0'; sp<=0; when others => null; end case; end if; end if; end process; end main; |
|
|
|
hwaming 发表于 2017-4-10 17:43 不好意思。。有没有verilog语言的 |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
1758 浏览 1 评论
1499 浏览 0 评论
矩阵4x4个按键,如何把识别结果按编号01-16(十进制)显示在两个七段数码管上?
1719 浏览 0 评论
952 浏览 0 评论
2504 浏览 0 评论
1556 浏览 38 评论
5785 浏览 113 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-2 02:16 , Processed in 1.145764 second(s), Total 45, Slave 38 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号