美文网首页
Vivado生成.bin文件并烧录

Vivado生成.bin文件并烧录

作者: Alliawell | 来源:发表于2021-03-20 10:50 被阅读0次

    1.生成.bin步骤

    1.1方法一

    1.在Settings里勾选-bin_file选项,如图1所示。

    2.添加约束文件到工程中,如图2所示。

    3.编译项目即可生成.bin文件。

    图1. 在设置里勾选“-bin_file“选项 图2. 添加约束文件

    #configure

    set_property BITSTREAM.CONFIG.CONFIGRATE 50 [current_design]

    set_property BITSTREAM.CONFIG.SPI_BUSWIDTH 4 [current_design]

    set_property BITSTREAM.CONFIG.SPI_FALL_EDGE Yes [current_design]

    set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]

    set_property BITSTREAM.CONFIG.UNUSEDPIN PULLNONE [current_design]

    set_property CFGBVS VCCO [current_design]

    set_property CONFIG_VOLTAGE 3.3 [current_design]

    1.2方法二

    1. 选择Tools>>Generate Memory Configuration Files...,如图3所示。

    2.如图4所示,设置生成.bin的选项,然后点击OK生成.bin文件。

    图3. 选择Tools>>Generate Memory Configuration Files... 图4. 设置生成.bin的选项,并生成.bin文件

    2.烧录步骤

    启动Vivado,直接选择“Open Hardware Manager” Open Target>>Auto Connect 右键选择“Add Configuration Memory Device...” 选择Flash型号 右键选择Program 选择.bin文件,然后OK即可烧录 烧录成功后的界面

    相关文章

      网友评论

          本文标题:Vivado生成.bin文件并烧录

          本文链接:https://www.haomeiwen.com/subject/huwicltx.html