芯路恒电子技术论坛

 找回密码
 立即注册
热搜: 合集
查看: 3242|回复: 2

芯路恒电子论坛,支持Markdown发帖啦

[复制链接]
  • TA的每日心情
    慵懒
    2021-2-24 10:16
  • 423

    主题

    782

    帖子

    1万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    15856
    QQ
    发表于 2021-11-16 15:28:33 | 显示全部楼层 |阅读模式

    芯路恒电子论坛,支持Markdown发帖啦

    感谢大家一直以来对芯路恒电子论坛,对小梅哥FPGA的支持,为了方便大家发帖,我们特对论坛发帖环境进行了升级,全面启用markdown编辑器。

    标题2

    这是标题2的正文内容

    标题3

    这是标题3的正文内容

    标题4

    这是标题4的正文内容

    | col1 ------| col2-- | col3 | | FPGA管脚 | 信号名| --- |

    Linux测试网速.png

    #include <stdint.h>
    #include "ov5642cfg.h"
    #include "CMOS_Sensor.h"
    #include "sccb.h"
    #include "unistd.h"
    
    uint8_t CMOS_Sensor_Init(void)
    {
    
        uint16_t VER;
        uint8_t PID;
        uint16_t CMOS_ID;
        uint16_t i=0;
        uint8_t CMOS_MODEL;
    
        SCCB_Init(40000, 0);                //初始化SCCB 的IO
    //  //读取产品型号
        VER=SCCB_RD_Reg(0x30,0x0a);
        PID=SCCB_RD_Reg(0x30,0x0b);
        CMOS_ID = (VER<<8)|PID;
        if(CMOS_ID == 0x5642)
        {
            CMOS_MODEL = OV5642;
            //初始化序列
            for(i=0;i<sizeof(ov5642_init_reg_tbl)/sizeof(ov5642_init_reg_tbl[0]);i++)
            {
                SCCB_WR_Reg(ov5642_init_reg_tbl[i][0],ov5642_init_reg_tbl[i][1],ov5642_init_reg_tbl[i][2]);
                usleep(2000);
            }
        }
        else
            CMOS_MODEL = UNKNOWN;
    
        return CMOS_MODEL;  //ok
    }
    
    回复

    使用道具 举报

  • TA的每日心情
    慵懒
    2021-2-24 10:16
  • 423

    主题

    782

    帖子

    1万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    15856
    QQ
     楼主| 发表于 2021-11-16 15:40:26 | 显示全部楼层

    【第二部分】熟悉开发板的各个电路结构

    一、芯路恒ACZ702开发板功能特点

    1 功能组件

    [如下图,展示了芯路恒ZYNQ]()开发板的图片,该图描绘了ACZ702开发板的开发版布局、接插件以及一些关键元件的位置信息。 图 7

    [1]() [XC7Z020-2CLG400I]() 10 TCM811TERCTR 19 93LC56BT-I/OT
    2 MT41J128M16HA-187E:D 11 无源蜂鸣器 20 MP2143DJ
    3 RTL8211FDI 12 RTL8188FTV
    4 SIL9022A 13 KLM8G1GEME-B041
    5 WM8960CGEFL/RV 14 TXS02612RTWR
    6 USB3320 15 N25Q128A
    7 USB2514B-AEZC-TR 16 CP2104-F03-GM
    8 PCF8563T 17 FE1.1s
    9 24LC64 18 FT232HL

    二、开发板使用

    本章主要介绍芯路恒ACZ702 ZYQN开发板的使用说明,同时对ACZ702开发板的所有组件进行了详细的描述。

    2.1 ZYNQ开发板启动方式

    ZYNQ支持JTAG、QSPI、SDcard、NAND4种启动方式。启动方式的选择由MIO4和MIO5两个引脚进行控制,此外在ACZ702开发板上MIO4与PS_QSPI_DQ2、MIO5与PS_QSPI_DQ3引脚复用。

    图 8

    表 1 ZYNQ启动方式与MIO4、MIO5的对应关系为

    JTAG MIO4高电平、MIO5高电平
    QSPI MIO4低电平、MIO5高电平
    SD card MIO4低电平、MIO5低电平
    NAND MIO4高电平、MIO5低电平(未使用)

    在芯路恒ACZ702开发板上,我们对MIO4和MIO5两个引脚的电平控制方式如下 图 9

    通过跳线帽对引脚的电平进行控制,具体的使用方法如:

    /*****

    (实际图片)

    ***/

    表 2

    MIO4 + 3.3V MIO5 + GND
    JTAG 断开 短接
    QSPI 断开 断开
    SD card 短接 断开
    NAND 芯路恒ACZ702开发板未设计使用板载NAND FLASH

    2.2 [轻触按键]()

    芯路恒ACZ702开发板上配备了三个侧按按键,PL端与PS端各一个,以及一个复位按键,在没有按键按下时,此三个按键端输出的都是高电平,当按键按下的时候,被按下的按键端会输出低电平。

    其中,S3为复位按键,连接到PS端的PS_PRO_B,也是PS系统的全局复位脚。S1与S1可以由用户自行支配使用,S1连接到PS端的MIO47引脚,S2连接到PL端的F20引脚。

    图 10

    图 11

    [表 ]()3 按键管脚分配

    Signial Name Pin NO.
    S1 PS_MIO47
    S2 PL_F20
    S3 PS_POR_B

    2.3 [用户LED]()

    芯路恒ACZ702开发板上配备了两个用户LED,也是PL端与PS端各一个,LED灯D4连接在PS端,LED灯D5连接在PL端。当引脚输出高电平时,LED点亮,当引脚输出低电平时,LED熄灭。

    图 12

    表 4 LED管脚分配表

    Signial Name Pin NO.
    PS_LED0 PS_MIO7
    FPGA_LED0 PL_T14

    {

    U�)�|

    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    慵懒
    2021-2-24 10:16
  • 423

    主题

    782

    帖子

    1万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    15856
    QQ
     楼主| 发表于 2021-11-18 11:34:07 | 显示全部楼层

    [attach]2571[/attach]

    Welcome to Writage!

    Writage is a plugin for Microsoft Word, which enables you to create and edit Markdown files (with .md extension) in convenient visual interface. It can also save your .docx files in plain text format with Markdown markup.

    The option of copying selected rich-text as Markdown, and pasting Markdown as rich-text is also supported.

    This document shows Markdown markup styles supported in Writage. Please feel free to edit it—a fresh copy is always available via Writage menu.

    Inline Formatting

    To apply emphasis or strong emphasis please select some text and press Italic button (use Ctrl+I shortcut) or Bold button (Ctrl+B) in Word. Press again to turn it off.

    Footnotes

    Notes can be placed anywhere[1] in the document, press References/Insert Footnote (or Alt+Ctrl+F) to insert one. Footnotes are displayed at the bottom of the corresponding page.

    Quotes

    To style some text as a quote apply style “Quote” from the styles. Quotes are displayed inside the document with the left margin.

    Hyperlinks

    Press Insert/Link/ Insert Link (or Ctrl+K) to insert a hyperlink. It can be either literal URL (http://www.google.com/) or have some text. Click URL with Ctrl key pressed to open it in web browser.

    Code blocks

    Inline code gets monospaced font.

    Verbatim blocks use monospaced font as well and preserve line

    breaks

    In order to apply code block style from Word a “Source Code” style should be created first.

    Lists

    • First bulleted item.

    • Second bulleted item.

    Lists can be styled via pressing Bullets or Numbering button or using autoformatting: type minus and space for bulleted item or “1”, point and space for numbered item.

    First numbered item.

    Second numbered item.

    Tables

    Press Insert/Table to create a table of required size, or use pop-up menu to add more columns or rows. Here is a sample table.

    Features Editable in Word
    Basic Styles Yes
    Footnotes Yes
    Images Yes
    Tables Yes

    Image

    1.jpg

    Happy writing!

    Got a question? Drop us a line: support@writage.com.


    [1] Yes, right here.

    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|小黑屋|Archiver|芯路恒电子技术论坛 |鄂ICP备2021003648号

    GMT+8, 2024-4-26 13:16 , Processed in 0.122538 second(s), 38 queries .

    Powered by Discuz! X3.4

    © 2001-2017 Comsenz Inc. Template By 【未来科技】【 www.wekei.cn 】

    快速回复 返回顶部 返回列表