- 
                        DE2_CCD_sobel
                        
                          通过摄像头图像的提取,在FPGA开发板上实现的,主要实现了图像轮廓的提取(Extraction of the image through the camera, in the FPGA implementation of the development board, the main achievement of the image contour extraction)                         
                            - 2020-07-22 17:48:45下载
- 积分:1
 
- 
                        DDS_Dual_ports  Verilog实现
                        
                          DDS_Dual_ports  Verilog实现,需要的可以下载实验,也可根据自身的需要修改,以求达到自身的目的                         
                            - 2022-02-26 19:19:42下载
- 积分:1
 
- 
                        jjiaotongdeng
                        
                          实现fpga上交通灯的设计,可以在开发板上实现红绿灯(Design of traffic lights on FPGA)                         
                            - 2018-08-28 16:42:27下载
- 积分:1
 
- 
                        SHA1算法
                        
                          该文档中包含用Verilog编写bq26100的SHA1算法,以及含bq26100如何编写程序控制加密认证的详细步骤的PDF文档。该Verilog算法程序已经在实验中验证可行,代码已经过优化。                         
                            - 2022-08-18 21:12:56下载
- 积分:1
 
- 
                        mydesign
                        
                          基于FPGA的直接序列扩频发射机的设计与仿真。实验中以QuartusII 7.2 为设计和仿真工具,
各模块采用Verilog HDL设计并封装,顶层使用图形设计方式,最后得到的仿真结果使用Matlab描点来绘制出波形。
(FPGA-based direct sequence spread spectrum transmitter of the design and simulation. Experiment to QuartusII 7.2 for the design and simulation tools, the module using Verilog HDL to design and package, the top-level use of graphic design, and finally the simulation results obtained using the Matlab description points to draw waveforms.)                         
                            - 2009-06-30 13:18:09下载
- 积分:1
 
- 
                        float_int
                        
                          自己编写的,浮点数与整数之间的转换的Verilog HDL实现(Written by myself, it is converted into Verilog HDL integer floating point implementation)                         
                            - 2020-12-18 10:29:11下载
- 积分:1
 
- 
                        fpga
                        
                          简易数字存储示波器verilog源代码   经过EP2C8Q208C8验证(Simple digital storage oscilloscope verilog source code has been verified EP2C8Q208C8)                         
                            - 2013-07-16 13:04:03下载
- 积分:1
 
- 
                        Fast_median_filter
                        
                          说明:  FPGA数字图像处理实现均值滤波,并且仿真将生成图片写出TXT格式以便使用MATLAB查看(Mean filter is realized by digital image processing in FPGA, and the generated image is written in TXT format for viewing with MATLAB.)                         
                            - 2019-06-01 21:23:25下载
- 积分:1
 
- 
                        29_ad9226_test
                        
                          用Verilog编写ad_9866的相应程序,在FPGA上实现相应功能(The corresponding program of ad_9866 is written with Verilog, and the corresponding functions are realized on the FPGA.)                         
                            - 2019-06-24 16:43:27下载
- 积分:1
 
- 
                        DA模块(TLC5620)、AD模块(TLV1544)
                        
                          //顶层模块
//本次正弦波频率大约在750-800Hz,没有精确计算,和DA的加载时间有关
module	DA_AD
(
clk,
rst_n,
DAC_SCLK,
DAC_DATA,
DAC_LDAC,
DAC_LOAD,
ADC_SDO,
ADC_SDI,
ADC_SCLK,
ADC_EOC,
ADC_CS,
ADC_FS,
led1
);
input		clk;
input		rst_n;
output	DAC_SCLK;
output	DAC_DATA;
output	DAC_LDAC;
output	DAC_LOAD;
//AD相关
input		ADC_SDO;		//ADC转换完成输出的数据
input		ADC_EOC;		//ADC的转换完成输出信号
output	ADC_SDI;		//ADC的输入数据
output	ADC_SCLK;	//ADC时钟信号
output	ADC_CS;		//ADC片选,低有效
output	ADC_FS;		//DSP模式帧起始信号
output	led1;
wire		DATA_EN;
wire		[7:0]	Cordic2driver;
wire		start;
TLC5620_driver ins_TLC5620_driver
(
.clk(clk),
.rst_n(rst_n),
.DATA_IN(Cordic2driver),
.DATA_EN(DATA_EN),
.                         
                            - 2022-02-05 07:51:39下载
- 积分:1