The SILICA Xynergy-M4 Board combines an ARM Cortex-M4 based STMicroelectronics STM32F417 controller with a Xilinx Spartan-6 low-cost FPGA (XC6SLX16) in one design. There are numerous development tools for either ARM Cortex-M microcontrollers or FPGA…
When we engineers look at the complexity of system design these days, we are challenged with cramming more functions into a smaller space, while consuming less power, and doing all of this in much shorter design cycles. Efficient and effective analog…
http://www.xess.com/prods/prod048.php XuLA http://www.xess.com/prods/prod055.php XuLA2 http://www.xess.com/manuals/XuLA-manual.pdf FPGA The programmable logic device on the XuLA Board is either a XILINX 200,000-gate XC3S200A Spartan 3A FPGA in a 100-…
http://papilio.cc/index.php?n=Papilio.PapilioOne The Papilio is an Open Source FPGA development board based on the Xilinx Spartan 3E FPGA (datasheet). It has 48 I/O lines, dual channel USB, integrated JTAG programmer, 4 power supplies, and a power co…
(转移自旧博客) 11.29 2019 实验室采购,所以进行了一定程度的调研. 主要包括两个Part,分别是DSRC和USRP的简单总结,购买建议和详细资料. Part.1 DSRC调研总结 1.1 简单总结 DSRC是短程通信技术,主要由美国发起. DSRC硬件在美国的供应商比较成熟.主要调研了Autotalks.博世 BOSCH.Cohda Wireless.是德科技 Keysight.恩智浦 NTX.Ficosa(松下旗下).Savari. 每家都有各自的解决方案,参数大同小异,主要问题是…
From Wikipedia, the free encyclopedia The NetFPGA project[1] is an effort to develop open source hardware and software for rapid prototyping of computer network devices. The project targeted academic researchers, industry users, and students. It was…
Sound card based RFID sniffer/emulator (Too tired after recon.cx to do draw the schematics better than that :) Stay tuned for the next version including Tag emulation.) baudline FFT signal analyzer for sniffing LF RFID tags using our sound card based…
板子使用的是黑金的是xilinx spartan-6开发板,首先准备一份24LC04B芯片资料,读懂资料后列出关键参数. 如下: 1.空闲状态为SDA和SCL都为高电平 2.开始状态为:保持SCL,SDA高电平不变,SDA 保持最少4us,之后SDA为低,保持最少4us 3.结束状态为:保持SCL为高.SDA为低电平不变,保持最少4us,SDA为高保持最少4us 4.时间间隔4us要求来源(上面数据为24LC04,下面数据为24LC04B) 初步估算了一下时钟要求,100k(10us)符合要求,…
在使用FPGA时,有时会用到它做为主控芯片.对于习惯于单片机及C语言开发的人,使用FPGA做主控芯片,首先还是想到它的嵌入式软核功能.如果能够基于Microblze软核进行C语言程序的开发,相对于使用生疏的Verilog语言进行项目的开发,将会起到事半功倍的效果. 下面就如何使用ISE创建Microblaze软核,写一个简单的入门教程.教程以图片为主,辅以简单的文字进行说明. 我使用的是Xilinx Spartan 6系列的FPGA,开发环境为ISE13.3. 第一步 先创建一个ISE工程 工程…
前言 这篇博文是 uboot makefile构建分析的续篇,继续分析uboot构建u-boot.bin的过程 构建u-boot.bin过程分析 makefile一开始,就是确定链接脚本.在构建uboot和kernel的过程,链接脚本是非常重要的.它决定了你程序里面每个段的位置(加载位置和运行位置).在编译应用程序时,我们一般不需要指定链接脚本,因为链接器这时候会采用默认的,通过命令ld --verbose可以查看默认的链接脚本.之所以uboot和kernel不采用默认的,是因为它们有特殊要求,…