FATFS文件系统成功移植,在DE2板上成功实现,所用的存储介质为SD卡。
2021-11-27 15:08:52 16.23MB FATFS SD DE2 文件系统
1
在DE2_70开发板上实现的录音及播放功能的源代码
2021-11-25 15:55:24 47.07MB DE2_70 AUDIO
1
数字跑表具有复位、暂停、秒表计时等功能。3个输入端为时钟输入(clk)、复位(clr)、启动与暂停(pause)按键。
2021-11-23 19:51:33 485KB verilog de2
1
在DE2开发板上实现SD卡的存取功能,已经调试成功
2021-11-22 23:11:31 1.73MB DE2,SD卡
1
DE2_USB_APIDE2_USB_APIDE2_USB_APIDE2_USB_API
2021-11-22 20:56:48 1.5MB DE2_USB_APIDE2_USB_API
1
Altera Cyclone II系列FPGA开发板 DE2是一款很适合初学者进行FPGA学习的工具。板子扩展的资源很是丰富,所带光盘内部有较多开发例程供大家参考、学习。
2021-11-19 15:38:30 5.63MB Altera FPGA开发板
1
这个设计范例展示了如何使用DE2-115 开发板以及一个PS/2 键盘和扬声器,来实现多音电子键盘。
2021-11-16 20:57:57 258KB DE2-115
1
Bmp To Mif 转换器 // (karimov 2005) // This program was originnaly written by one of the ECE241 students to convert an image // supplied in a BMP file into an MIF file format for use with Quartus II. // // This program has recently been modified to work with the new VGA controller used with the DE2 // board. // // What to do: // 1. Create an image in Microsoft paint (or other program). The image must be 160 pixels wide, 120 pixels high and // use 24-bits to represent colour information. // 2. Once you create the image you need, flip it up-side down. Then save the BMP file. (example: foo.bmp) // 3. Run this converter in command prompt using the name of the BMP file you created as a command-line parameter. // For example: // bmp2mif foo.bmp // 4. The program generates two files: // image.colour.mif - an MIF file with 3 bits colour information obtained from the BMP file you supplied // image.mono.mif - an MIF file containing 1 bit of colour for every pixel on the screen. The dot will either be // black or white. // You can change the file names once they are created, but they should still have the .mif extension. // // 5. Copy the proper MIF file to the directory where your design is located and include it in your project. // 6. Change the BACKGROUND_IMAGE parameter of the VgaAdapter to indicate your MIF file. // 7. The COLOR_CHANNEL_DEPTH parameter must be set to 1 to work with the image.colour.mif file. #include #include #define FLIP_INT(c) ((c >> 24) & 0x000000FF) | ((c & 0x00FF0000) >> 8) | ((c & 0x0000FF00) << 8) | ((c & 0x000000FF) <> 8) | ((c & 0x00FF) << 8) typedef struct s_header { unsigned short bfType; unsigned int bfSize; unsigned short reserved1; unsigned short reserved2; unsigned int offset; } t_bmp_header; typedef struct s_bmp_info { unsigned int biSize; unsigned int biWidth; unsigned int biHeight; unsigned short biPlanes; unsigned short biBitCount; unsigned in
2021-11-15 21:54:08 27KB DE2 FPGA Verilog BMP
1
有关DE2-115开发板的实例教程,找了很久才找到,希望对大家有用
2021-11-09 16:44:26 47.35MB DE2-115
1
用Verilog编程,在DE2-115上通过控制88E1111以RGMII的工作方式向PC机发送ARP测试包,可以用wireshark进行抓包分析
2021-10-20 13:44:57 640KB DE2-115 千兆网 RGMII 千兆网
1