博客首页 | 排行榜 |

zkf0100007的博客

个人档案
博文分类
最新评论
博文存档
最近访客
  • [转]JAVA NATIVE METHODS 2009-07-05 12:37
    The goal for this chapter is to introduce you to Java's native methods. If you are new to Java, you may not know what native methods are, and even if you are an experienced Java developer, you may not have had a reason to learn more about native methods. At the conclusion of this chapter you should have a better understanding of what native methods are, when and why you may want to use them, and the consequences of using them. You should also have a basic understanding of how native methods work...

    阅读全文>>

  • Xilinx MicroBlaze的使用方法 建立一个ISE的工程,工程的顶层文件为schematic的。然后根据实际需要添加自己的逻辑或处理部分。Microblaze可以像一个IP一样同时应用到自己的设计中去。具体方法如下: 1、在工程中选择Add Source,在选择框中选择Embedded Processor,假设为该处理器起名为Microblaze_xxx。 2、此时ISE会自动启动XPS,在XPS中根据导向设置自己的Microblaze_xxx处理器的参数,并生成网表(注意必须在EDK中生成)。 3、选中Microblaze_xxx,双击View HDL Instantiation Template 生成例化文件。如果要使得Microblaze的管脚既...

    阅读全文>>

  • 用的是SPARTAN 3E,LCD供电是5V的,FPGA的I/O和LCD接口要接270欧电阻,防止烧坏FPGA #include "xparameters.h" #include "stdio.h" #include "xutil.h" #include "xgpio_l.h" /* general-purpose I/O peripheral control functions */ #include "xgpio.h" unsigned char testbmp[]={ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,...

    阅读全文>>

  • #include "xparameters.h" #include "stdio.h" #include "xutil.h" #include "xgpio_l.h" /* general-purpose I/O peripheral control functions */ //==================================================== void usleep(unsigned int delay); void spi_init(void); void spi_write(unsigned char data); void set_dac(unsigned char channel,unsigned int data); int main (void) {    print("-- Entering main() --\r\n");    //XGpio_mS...

    阅读全文>>

页次:1/1 每页15条记录,共4条  分页:  [1]