• 大小: 1.85MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-01
  • 语言: 其他
  • 标签: can  eth  iic  uart  usb  

资源简介

常用接口的FPGA程序,用ISE打开工程文件即可,包括CAN,ETH,IIC,IWBBUSCHANGE,UART,USB,VGA.

资源截图

代码片段和文件信息

// cube.cpp : Defines the class behaviors for the application.
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.

#include “stdafx.h“
#include “cube.h“

#include “mainfrm.h“
#include “cubedoc.h“
#include “cubeview.h“

#ifdef _DEBUG
#undef THIS_FILE
static char baseD_CODE THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCubeApp

BEGIN_MESSAGE_MAP(CCubeApp CWinApp)
//{{AFX_MSG_MAP(CCubeApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCubeApp construction

CCubeApp::CCubeApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCubeApp object

CCubeApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCubeApp initialization

BOOL CCubeApp::InitInstance()
{
// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

Enable3dControls();

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCubeDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CCubeView));
AddDocTemplate(pDocTemplate);

// create a new (empty) document
OnFileNew();

if (m_lpCmdLine[0] != ‘\0‘)
{
// TODO: add command line processing here
}

return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
CAboutDlg();

// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA

// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
//{{AFX_MSG

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-26 21:26  interface\
     目录           0  2018-08-26 21:26  interface\can\
     目录           0  2018-08-26 21:26  interface\can\canbus\
     文件           0  2005-01-11 10:14  interface\can\canbus\.untf
     目录           0  2018-08-26 21:26  interface\can\canbus\__projnav\
     文件         973  2005-01-11 09:21  interface\can\canbus\__projnav\can_fifo.xst
     文件        1025  2005-01-11 10:12  interface\can\canbus\__projnav\can_register_asyn_syn.xst
     文件          63  2005-04-12 09:15  interface\can\canbus\__projnav\can_registers.xst
     文件         969  2005-01-11 10:13  interface\can\canbus\__projnav\can_top.xst
     文件        1945  2005-04-12 09:15  interface\can\canbus\__projnav\canbus.gfl
     文件        1002  2005-04-12 09:15  interface\can\canbus\__projnav\canbus_flowplus.gfl
     文件         125  2005-01-11 10:21  interface\can\canbus\__projnav\coregen.rsp
     文件          47  2005-01-11 10:13  interface\can\canbus\__projnav\ednTOngd_tcl.rsp
     文件         191  2005-01-11 10:13  interface\can\canbus\__projnav\runXst_tcl.rsp
     文件         106  2005-04-12 09:15  interface\can\canbus\__projnav\xst_sprjTOstx_tcl.rsp
     文件       55918  2005-04-12 09:15  interface\can\canbus\__projnav.log
     目录           0  2018-08-26 21:26  interface\can\canbus\_ngo\
     文件          76  2005-01-11 10:14  interface\can\canbus\_ngo\netlist.lst
     文件           0  2005-04-12 09:15  interface\can\canbus\automake.log
     文件       14640  2005-04-12 09:10  interface\can\canbus\can_acf.v
     文件       52576  2005-04-12 09:10  interface\can\canbus\can_bsp.v
     文件        6351  2005-04-12 09:13  interface\can\canbus\can_btl.v
     文件         658  2005-04-12 09:10  interface\can\canbus\can_crc.v
     文件         386  2005-04-13 23:51  interface\can\canbus\can_defines.v
     文件          65  2005-01-11 09:21  interface\can\canbus\can_fifo.cmd_log
     文件           6  2005-01-11 09:21  interface\can\canbus\can_fifo.lso
     文件       54214  2005-01-11 09:21  interface\can\canbus\can_fifo.ngc
     文件       47948  2005-01-11 09:21  interface\can\canbus\can_fifo.ngr
     文件          25  1980-01-01 15:00  interface\can\canbus\can_fifo.prj
     文件         725  2005-01-11 09:21  interface\can\canbus\can_fifo.stx
     文件       16270  2005-01-11 09:21  interface\can\canbus\can_fifo.syr
............此处省略480个文件信息

评论

共有 条评论