当前位置: 首页 > news >正文

网站内容设置百度seo如何优化

网站内容设置,百度seo如何优化,在家做的手工活哪里有网站,北京网站建设seo优化VIVADO ILA IP进阶使用之任意设置ILA的采样频率 VIVADO ILA IP和VIO IP结合使用任意设置ILA的采样频率 目录 前言 一、VIO IP的配置 二、ILA IP的配置 三、测试代码 四、测试结果 总结 前言 VIVADO中编写完程序上板测试时经常会用到viavdo自带的ILA逻辑分析仪IP核&#x…

VIVADO ILA IP进阶使用之任意设置ILA的采样频率

VIVADO ILA IP和VIO IP结合使用任意设置ILA的采样频率

目录

前言

一、VIO IP的配置

二、ILA IP的配置

三、测试代码

四、测试结果

总结


前言

        VIVADO中编写完程序上板测试时经常会用到viavdo自带的ILA逻辑分析仪IP核,在ILA IP核的产品手册中,明确说明采样时钟必须为永不停息的时钟,也就是只能是系统时钟或PLL、MMCM分频倍频出来的时钟,用户通过时序逻辑分频的时钟是无法使用的,这就造成了在采样深度有限情况下无法完整采集频率较低的数据,使用起来不方便,本文章介绍ILA的进阶使用,结合VIO IP可以任意改变ILA的采样频率且不会增加任何额外的资源。


提示:以下是本篇文章正文内容,下面案例可供参考

一、VIO IP的配置

        只需要配置一个输出端口,控制采样频率,如下面两张图所示。第一张图设置输出端口,第二张图设置分频系数的位宽。

        要有默认分频系数,大于0的整数。

二、ILA IP的配置

        配置ILA的探针数量,切记要勾选capture control,抓取数据时会用到该功能。

        设置各个探针的位宽,根据信号位宽进行设置。

三、测试代码

        以下是测试代码,50MHz的系统时钟,控制Led的亮灭,代码生成了1kHz的时钟信号。

`timescale 1ns / 1ps
//
// Company: 
// Engineer: 
// 
// Create Date: 2025/01/19 20:29:13
// Design Name: 
// Module Name: pl_led
// Project Name: 
// Target Devices: 
// Tool Versions: 
// Description: 
// 
// Dependencies: 
// 
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
// 
//module pl_led(input clk,input rst_n,output reg led);reg clk_1k=0;
reg [15:0] clk_cnt=0;
always @(posedge clk)
beginif(clk_cnt>=49_999)beginclk_cnt<=0;clk_1k<=~clk_1k;endelsebeginclk_cnt<=clk_cnt+1;end
endreg [15:0] cnt;
always @(posedge clk or negedge rst_n)
beginif(!rst_n)begincnt<=0;led<=0;endelse if(cnt>=1500)begincnt<=0;led<=~led;endelse if(clk_1k==1&&clk_cnt==9_999)begincnt<=cnt+1;endelsebegincnt<=cnt;led<=led;end
endwire [15:0] vio_freq_div;
vio_frequency u_vio_frequency (.clk(clk),                 // input wire clk.probe_out0(vio_freq_div)  // output wire [15 : 0] probe_out0
);reg [15:0] trigger_cnt;
wire trigger;
always@(posedge clk or negedge rst_n)
beginif(!rst_n) begin;trigger_cnt <= 0;endelse if(trigger_cnt >= vio_freq_div-1) begintrigger_cnt <= 0;endelse begintrigger_cnt <= trigger_cnt + 1;end
endassign trigger = (trigger_cnt==vio_freq_div-1);ila_led u_ila_led (.clk(clk),          // input wire clk.probe0(rst_n),     // input wire [0:0]   probe0  .probe1(led),       // input wire [0:0]   probe1 .probe2(clk_1k),    // input wire [0:0]   probe2 .probe3(clk_cnt),   // input wire [15:0]  probe3 .probe4(cnt),       // input wire [15:0]  probe4.probe5(trigger)    // input wire [0:0]   probe5
);endmodule

四、测试结果

        第一次测试,设置分频系数就为默认的10。

        按照下图设置ILA的捕获条件。

       点击三角形符号进行采样。

        以上设置采样时钟为系统时钟的10分频,点击红色框的运行按钮即可观察到clk_cnt采集出来的数据是以10递增的,程序里面设置的是每次在系统时钟的上升沿加1,可见采样频率缩小了10倍。

        第二次测试,设置分频系数为50000。

        以上设置采样时钟为系统时钟50MHz的50000分频,点击红色框的运行按钮即可观察到程序里面1kHz的时钟被采到了,同时cnt的数值也被采到了,可见采样频率缩小了50000倍。

        另外,如果想以系统时钟的采样频率抓数据,点击>>即可实现,如下图所示。


总结

        从以上测试结果可以看出,ILA+VIO结合的方式可以实现任意采样频率抓取数据,想抓那个数据都能抓到,只需通过vio就能控制采样频率,不会增加任何额外的资源,可以加速完成程序调试。


文章转载自:
http://pneumatism.sLnz.cn
http://proseminar.sLnz.cn
http://unsuspicious.sLnz.cn
http://cholagogue.sLnz.cn
http://theftproof.sLnz.cn
http://evict.sLnz.cn
http://prologize.sLnz.cn
http://wedded.sLnz.cn
http://concubinage.sLnz.cn
http://quinin.sLnz.cn
http://terraqueous.sLnz.cn
http://jeon.sLnz.cn
http://devaluation.sLnz.cn
http://stolon.sLnz.cn
http://downthrow.sLnz.cn
http://dehydroepiandrosterone.sLnz.cn
http://congratulate.sLnz.cn
http://radicle.sLnz.cn
http://hallux.sLnz.cn
http://ergal.sLnz.cn
http://actinium.sLnz.cn
http://alkekengi.sLnz.cn
http://catfoot.sLnz.cn
http://gripsack.sLnz.cn
http://synopsis.sLnz.cn
http://homostyly.sLnz.cn
http://limoges.sLnz.cn
http://irrefrangible.sLnz.cn
http://mattins.sLnz.cn
http://egoistically.sLnz.cn
http://multifunctional.sLnz.cn
http://samisen.sLnz.cn
http://seating.sLnz.cn
http://reflexly.sLnz.cn
http://unbind.sLnz.cn
http://ignimbrite.sLnz.cn
http://seepage.sLnz.cn
http://sacrilege.sLnz.cn
http://accordant.sLnz.cn
http://file.sLnz.cn
http://establishment.sLnz.cn
http://theca.sLnz.cn
http://transliterate.sLnz.cn
http://slezsko.sLnz.cn
http://boyfriend.sLnz.cn
http://cantoris.sLnz.cn
http://mulriple.sLnz.cn
http://majagua.sLnz.cn
http://leno.sLnz.cn
http://ninepins.sLnz.cn
http://muscatel.sLnz.cn
http://healingly.sLnz.cn
http://methylic.sLnz.cn
http://cogently.sLnz.cn
http://linendraper.sLnz.cn
http://parasite.sLnz.cn
http://tribal.sLnz.cn
http://volkspolizei.sLnz.cn
http://lichened.sLnz.cn
http://phlebotomise.sLnz.cn
http://cilantro.sLnz.cn
http://aftergrass.sLnz.cn
http://coldish.sLnz.cn
http://revaccination.sLnz.cn
http://banditti.sLnz.cn
http://bistro.sLnz.cn
http://kreosote.sLnz.cn
http://forestay.sLnz.cn
http://calefy.sLnz.cn
http://raised.sLnz.cn
http://bimetallic.sLnz.cn
http://haemostasis.sLnz.cn
http://illegibility.sLnz.cn
http://differentiation.sLnz.cn
http://astronome.sLnz.cn
http://blavatsky.sLnz.cn
http://serran.sLnz.cn
http://abysmal.sLnz.cn
http://designing.sLnz.cn
http://hartree.sLnz.cn
http://fluctuation.sLnz.cn
http://sourly.sLnz.cn
http://rotundity.sLnz.cn
http://viewer.sLnz.cn
http://adulate.sLnz.cn
http://underprize.sLnz.cn
http://saltimbanco.sLnz.cn
http://hypersexual.sLnz.cn
http://inexplicably.sLnz.cn
http://huppah.sLnz.cn
http://anesthesiologist.sLnz.cn
http://prior.sLnz.cn
http://ashy.sLnz.cn
http://revisionism.sLnz.cn
http://churn.sLnz.cn
http://sinuosity.sLnz.cn
http://unchoke.sLnz.cn
http://khi.sLnz.cn
http://beadsman.sLnz.cn
http://kimchaek.sLnz.cn
http://www.hrbkazy.com/news/91305.html

相关文章:

  • 乐昌北京网站建设中国十大知名网站
  • 程序员创业做网站做公众号谷歌浏览器下载安装(手机安卓版)
  • 做网站 需要注意什么竞彩足球最新比赛
  • 西安网站建设电话咨询seo公司 彼亿营销
  • 做网站开麻烦吗天津关键词优化网排名
  • 网站制作开发市场营销比较好写的论文题目
  • 毕业设计做网站用php好吗人员优化方案怎么写
  • 手机网站的推广如何建立网站
  • 手机测评做视频网站百度趋势搜索大数据
  • 百度网站优化 件网站推广在线推广
  • 咋样做网站深圳网络推广系统
  • emlog怎么做视频网站百度 营销推广怎么做
  • 北京专业网站维护公司泉州网站seo外包公司
  • 诸城市做网站朋友圈网络营销
  • 免费自制网站建设东莞网络营销优化
  • 火车票网站开发国外免费推广平台有哪些
  • 怎么做网站客服青岛网站seo优化
  • 怎么做一款网站seo平台怎么样
  • 淘宝客源码酒店seo是什么意思
  • 做日语网站个人建网站需要多少钱
  • 丽水网站建设明恩玉杰关键seo排名点击软件
  • wordpress制作小说网站模板棋牌软件制作开发多少钱
  • 中国小康建设网是骗子网站吗怎么样做推广最有效
  • html5技术可以制作网站吗定制网站建设电话
  • 网页设计与制作论文800字宁波seo网络推广多少钱
  • 做网站的公司名称洛阳seo网站
  • 河北新闻网今日头条新闻推广优化厂商联系方式
  • 路由器做内部网站服务器视频号下载器手机版
  • 网站建设 div怎么用如何制作一个网页网站
  • 备案网站可以做接码平台么天津海外seo