?? protozlg.h
字號:
/****************************************Copyright (c)**************************************************
** 廣州周立功單片機發展有限公司
** 研 究 所
** 產品一部
**
** http://www.zlgmcu.com
**
** 文 件 名: Protozlg.c
** 最后修改日期: 2004年11月15日
** 描 述: USB驅動程序軟件包: PDIUSBD12 廠商請求頭文件
** 版 本: V5.0
**********************************************************************************************************/
#ifndef __PROTOZLG_H__
#define __PROTOZLG_H__
/*
//*************************************************************************
// USB vendor device requests
//*************************************************************************
*/
#define SETUP_DMA_REQUEST 0x0471
#define GET_FIRMWARE_VERSION 0x0472
#define GET_SET_TWAIN_REQUEST 0x0473
#define GET_BUFFER_SIZE 0x0474
//計數器
typedef union _byte_count
{
struct _bytes
{
unsigned char high;
unsigned char low;
}byte;
unsigned int word;
}byte_count ;
extern byte_count byte_cnt;
extern void read_write_register(void);
extern code void (*VendorDeviceRequest[])(void);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -