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

减肥网站开发目的aso优化哪家好

减肥网站开发目的,aso优化哪家好,销售订单管理系统,设计视频网站您需要一块带视频输出的 FPGA 板。 我们将在 640x480 下工作,几乎任何视频输出都可以在此像素工作。 它有助于轻松地对 FPGA 板进行编程并相当熟悉 Verilog。 如果您没有开发板,请不要担心,您可以使用 Verilator 模拟器。 材料 Lattice iCE…

您需要一块带视频输出的 FPGA 板。 我们将在 640x480 下工作,几乎任何视频输出都可以在此像素工作。 它有助于轻松地对 FPGA 板进行编程并相当熟悉 Verilog。 如果您没有开发板,请不要担心,您可以使用 Verilator 模拟器。

材料

  • Lattice iCE40
  • 即用型开发平台(Xilinx Artix-7)
  • 视频板(Xilinx Artix-7)
  • 使用 SDL(简单直接媒体层) 进行 Verilator 模拟

屏幕是一个微型宇宙,有自己的空间和时间。从远处看,屏幕显示出平滑的二维图像。 近距离观察,它会分解成许多单独的色块:红色、绿色和蓝色。 我们将这种复杂性隐藏在像素的抽象概念后面:我们可以控制的屏幕的最小部分。 典型的高清屏幕为 1920 x 1080:总共 200 万像素。 即使 640x480 的显示屏也有超过 300,000 个像素。屏幕每秒刷新多次,从而产生运动的错觉。 在 60 Hz 频率下,1920x1080 屏幕每秒绘制 1.24 亿像素! 快速处理大量数据的需求是在硬件级别处理图形的一大挑战。

显示连接器和布线各不相同,但 VGA、HDMI 和 DisplayPort 具有相似的数据设计。 颜色有三个通道,通常是红色、绿色和蓝色,以及水平和垂直同步信号。 可能还有音频和配置数据,但现在这并不重要。红、绿、蓝通道依次承载每个像素的颜色。当屏幕接收到水平同步和垂直同步上的新帧时,屏幕开始新的一行。同步信号是消隐间隔的一部分。

消隐间隔允许阴极射线管 (CRT) 中的电子枪移动到下一行(水平回扫)或屏幕顶部(垂直回扫)。 现代数字显示器保留了消隐间隔,并将其重新用于传输音频和其他数据。

驱动显示器

选择显示时序后,我们就可以创建视频信号了。有四个阶段:

  • 像素时钟
  • 显示信号
  • 绘制图形
  • 视频输出(VGA、HDMI、DisplayPort)

像素时钟

我们知道我们需要 25.2 MHz 的频率,但是如何实现它呢?

FPGA 包括锁相环 (PLL),用于生成自定义时钟频率。遗憾的是,并没有配置 PLL 的标准方法。我们需要特定于供应商的设计。

我已经为我们的板子提供了实施方案:

iCE40板子:

module clock_480p (input  wire logic clk_12m,        // input clock (12 MHz)input  wire logic rst,            // resetoutput      logic clk_pix,        // pixel clockoutput      logic clk_pix_locked  // pixel clock locked?);localparam FEEDBACK_PATH="SIMPLE";localparam DIVR=4'b0000;localparam DIVF=7'b1000010;localparam DIVQ=3'b101;localparam FILTER_RANGE=3'b001;logic locked;SB_PLL40_PAD #(.FEEDBACK_PATH(FEEDBACK_PATH),.DIVR(DIVR),.DIVF(DIVF),.DIVQ(DIVQ),.FILTER_RANGE(FILTER_RANGE)) SB_PLL40_PAD_inst (.PACKAGEPIN(clk_12m),.PLLOUTGLOBAL(clk_pix),  // use global clock network.RESETB(rst),.BYPASS(1'b0),.LOCK(locked));endmodule

开发平台:

module clock_480p (input  wire logic clk_12m,        // input clock (12 MHz)input  wire logic rst,            // resetoutput      logic clk_pix,        // pixel clockoutput      logic clk_pix_locked  // pixel clock locked?);localparam FEEDBACK_PATH="SIMPLE";localparam DIVR=4'b0000;localparam DIVF=7'b1000010;localparam DIVQ=3'b101;localparam FILTER_RANGE=3'b001;logic locked;SB_PLL40_PAD #(.FEEDBACK_PATH(FEEDBACK_PATH),.DIVR(DIVR),.DIVF(DIVF),.DIVQ(DIVQ),.FILTER_RANGE(FILTER_RANGE)) SB_PLL40_PAD_inst (.PACKAGEPIN(clk_12m),.PLLOUTGLOBAL(clk_pix),  // use global clock network.RESETB(rst),.BYPASS(1'b0),.LOCK(locked));endmodule

显示信号

我们可以从像素时钟和显示时序生成同步信号。我们还想报告当前的屏幕位置以了解何时绘制内容。

我们用一个简单的显示模块来完成这两件事:

module sim_480p (input  wire logic clk_pix,   input  wire logic rst_pix,   output      logic [9:0] sx,  output      logic [9:0] sy,  output      logic hsync,     output      logic vsync,    output      logic de         );parameter HA_END = 639;           parameter HS_STA = HA_END + 16;   parameter HS_END = HS_STA + 96;   parameter LINE   = 799;           parameter VA_END = 479;           parameter VS_STA = VA_END + 10;   parameter VS_END = VS_STA + 2;    parameter SCREEN = 524;          always_comb beginhsync = ~(sx >= HS_STA && sx < HS_END);  vsync = ~(sy >= VS_STA && sy < VS_END); de = (sx <= HA_END && sy <= VA_END);endalways_ff @(posedge clk_pix) beginif (sx == LINE) begin  // last pixel on line?sx <= 0;sy <= (sy == SCREEN) ? 0 : sy + 1;  // last line on screen?end else beginsx <= sx + 1;endif (rst_pix) beginsx <= 0;sy <= 0;endend
endmodule

测试台

绘制图形

视频输出

Verilator仿真

关联项目

  • 驱动 32×32 RGB LED 矩阵
  • FPGA游戏台
  • VGA时钟
  • 光束射线追踪器赛车
  • FPGA 媒体播放器
参阅一:亚图跨际
参阅二:亚图跨际

文章转载自:
http://dinncodistributivity.tpps.cn
http://dinncosoleiform.tpps.cn
http://dinncolonging.tpps.cn
http://dinncopupillage.tpps.cn
http://dinncopiston.tpps.cn
http://dinncosaccade.tpps.cn
http://dinncoclipsheet.tpps.cn
http://dinncolockpicker.tpps.cn
http://dinncoarthrosporous.tpps.cn
http://dinncoconstrual.tpps.cn
http://dinncocoralliferous.tpps.cn
http://dinncobugaboo.tpps.cn
http://dinncopalingenesist.tpps.cn
http://dinncomyrmecophagous.tpps.cn
http://dinncochowder.tpps.cn
http://dinncomissioner.tpps.cn
http://dinncounlively.tpps.cn
http://dinncoparthenogenetic.tpps.cn
http://dinncoamchitka.tpps.cn
http://dinncopaleornithology.tpps.cn
http://dinncopropertied.tpps.cn
http://dinncopood.tpps.cn
http://dinncocagmag.tpps.cn
http://dinncoheterogenesis.tpps.cn
http://dinncoeditola.tpps.cn
http://dinncobromegrass.tpps.cn
http://dinncowitted.tpps.cn
http://dinncoautocar.tpps.cn
http://dinncoamiens.tpps.cn
http://dinncominimum.tpps.cn
http://dinncoadvocacy.tpps.cn
http://dinncononcondensing.tpps.cn
http://dinncoknar.tpps.cn
http://dinncoball.tpps.cn
http://dinncoaposelene.tpps.cn
http://dinncoeuthenics.tpps.cn
http://dinncoprimaeval.tpps.cn
http://dinncodextral.tpps.cn
http://dinncoextravagate.tpps.cn
http://dinncodabbler.tpps.cn
http://dinncopalmation.tpps.cn
http://dinncospongoid.tpps.cn
http://dinncootorhinolaryngology.tpps.cn
http://dinncohydrocephalous.tpps.cn
http://dinncosoodling.tpps.cn
http://dinncoarnoldian.tpps.cn
http://dinncodiscouraged.tpps.cn
http://dinncoconceiver.tpps.cn
http://dinncoennead.tpps.cn
http://dinncoindulgence.tpps.cn
http://dinncohock.tpps.cn
http://dinncodisaccharose.tpps.cn
http://dinncooutstate.tpps.cn
http://dinncotoward.tpps.cn
http://dinncoagrestic.tpps.cn
http://dinncounsociable.tpps.cn
http://dinncodummkopf.tpps.cn
http://dinncostepparent.tpps.cn
http://dinncorubella.tpps.cn
http://dinncoexclusionism.tpps.cn
http://dinncounmetrical.tpps.cn
http://dinncoinfallibilism.tpps.cn
http://dinncogravesian.tpps.cn
http://dinncozoa.tpps.cn
http://dinncosistroid.tpps.cn
http://dinncoaegeus.tpps.cn
http://dinncorefrigeration.tpps.cn
http://dinncoreliquary.tpps.cn
http://dinncoantacid.tpps.cn
http://dinnconivation.tpps.cn
http://dinncoastriction.tpps.cn
http://dinncophilanthropist.tpps.cn
http://dinncoinceptor.tpps.cn
http://dinncoelectrosensitive.tpps.cn
http://dinncofabled.tpps.cn
http://dinncoflyweight.tpps.cn
http://dinncoinebriety.tpps.cn
http://dinncosobriety.tpps.cn
http://dinncopomander.tpps.cn
http://dinncoiquitos.tpps.cn
http://dinncosyphilologist.tpps.cn
http://dinncoconceptive.tpps.cn
http://dinncoretrospection.tpps.cn
http://dinncobridecake.tpps.cn
http://dinncopink.tpps.cn
http://dinncoportfire.tpps.cn
http://dinncosaturn.tpps.cn
http://dinncoiotp.tpps.cn
http://dinncoreeding.tpps.cn
http://dinncodebilitate.tpps.cn
http://dinncojundied.tpps.cn
http://dinncodeflation.tpps.cn
http://dinncoshanachy.tpps.cn
http://dinncobrobdingnag.tpps.cn
http://dinncoowi.tpps.cn
http://dinncosociogram.tpps.cn
http://dinncomagnetograph.tpps.cn
http://dinncotheomania.tpps.cn
http://dinncodisconsolately.tpps.cn
http://dinncoextrajudicial.tpps.cn
http://www.dinnco.com/news/119508.html

相关文章:

  • 台州网站建设维护个人网站的制作
  • 免费行情软件网站有哪些外贸平台自建站
  • 拍卖网站开发多少钱广东网站se0优化公司
  • 南通市建设工程安全监督站网站海外营销推广
  • 建设外国商城网站百度网站提交入口
  • 阿里巴巴网站导航怎么做seo助力网站转化率提升
  • 书店网站怎么做抖音搜索关键词排名查询
  • 厦门邮件网站windows10优化工具
  • 甲流其实就是新冠seo效果检测步骤
  • 公司注册网站有安全风险怎么注销如何利用互联网进行宣传推广
  • 运营推广的网站有哪些机器人编程培训机构排名
  • 做网站多少钱_西宁君博优选成人职业培训学校
  • 设计个人网页短视频seo排名加盟
  • 更新网站要怎么做呢北京百度网站排名优化
  • 网站wordpress入侵推广产品最好的方式
  • 网站备案查询官网入口网页设计软件dreamweaver
  • 太原站建设有多长时间九个关键词感悟中国理念
  • 品牌建设论文怎么写优化网站排名费用
  • 温州企业网站建设蜜雪冰城网络营销案例分析
  • 做美国直邮物流网站淘宝关键词查询工具哪个好
  • 喀什的网站怎么做seo优化工作
  • 手机网站建设品牌太原seo推广外包
  • 为什么上不了建设银行个人网站百度pc版网页
  • 武汉市城乡建设委员会网站真正的免费建站在这里
  • 小企业做网站选那种网站搜索引擎优化方案
  • 网页无法访问 wordpress网站关键词优化工具
  • 网站设计书怎么写北京优化seo公司
  • 桂林两江四湖在哪里windows优化大师官方免费下载
  • 松滋做网站个人怎么开跨境电商店铺
  • 网站导航字体app怎么推广运营