相信自己,只有不想做的,没有做不到的。
发布时间:2014-05-13 18:35:51
使用了XPS中建立和导入IP向导(简称ipwiz),默认的源码文件只有hdl/verilog目录下的"userlogic.v"和hdl/vhdl目录下的"ipname.vhd"文件。当我们的设计变复杂了,需要更多的设计文件如.v、.vhd、.ngc等文件和多个模块/实体的时候,如果不进行一些设置,编译器会提示找不到module的错误提示:ERROR:HDLCompiler:Instantiating.........【阅读全文】
发布时间:2014-05-09 14:16:31
driver 如下:/*********************************************************File Name: my_nand.cAuthor: Nightmare@EEFOCUSVersion: v0.1 2014-05-08Description: Driver of nand_flash peripheral.************************************************.........【阅读全文】
发布时间:2014-05-09 14:05:08
首先查看mtd_info结构体:struct mtd_info { u_char type; uint32_t flags; uint64_t size; // Total size of the MTD /* "Major" erase size for the device. Na茂ve users may take this.........【阅读全文】
发布时间:2014-05-04 12:00:24
int check_net(char *ip,char *port ){ int fd; int in_len=0; struct sockaddr_in servaddr; //char buf[128]; in_len = sizeof(struct sockaddr_in); fd = socket(AF_INET,SOCK_STREAM,0); if(fd < 0) .........【阅读全文】