⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usbfw_if.c

📁 The combined demo is dedicated for S1C33L05, so DMT33L05 should be used to load and run the demo. F
💻 C
字号:
//--------------------------------------------------------------------------------- 
//
//      Copyright (C) SEIKO EPSON CORP. 2004 
//
//      GROUP					: SEE LSI
//      FILE                    : usbfw_if.c
//      MODULE                  : usb fw interface
//      Function description    : 
//      Revision history        :                                                                                               
//                                Date            userName        	Description
//                                2004/04/15      David		      	start
//
//      Notes                   : 
//
//---------------------------------------------------------------------------------

//---------------------------------------------------------------------------------
// Include files (#include)
//---------------------------------------------------------------------------------
#include	"usbfw_if.h"

//---------------------------------------------------------------------------------
// Function prototypes
//---------------------------------------------------------------------------------
void InitIFData(void);

//---------------------------------------------------------------------------------
// external variables
//---------------------------------------------------------------------------------
USBFW_IF_REQ	g_UsbIFReq ;
USBFW_IF_ANS 	g_UsbIFAns ;

extern unsigned int alrdy_attach ;
									
void InitIFData(void)
{
	memset(&g_UsbIFReq, 0x0, sizeof(USBFW_IF_REQ));
	memset(&g_UsbIFAns, 0x0, sizeof(USBFW_IF_ANS));

	alrdy_attach = 0 ;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -