usbn2mc.h

来自「this is the firmware usbn2mc for atmega3」· C头文件 代码 · 共 69 行

H
69
字号
/* mciface.h* Copyright (C) 2005  Benedikt Sauter** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the* GNU General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, write to the Free Software* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#ifndef _MCIFACE_H_#define _MCIFACE_H_#include "../../usbn960x/usbnapi.h"unsigned char USBNRead(unsigned char Adr);unsigned char USBNBurstRead(void);void USBNBurstReadSetAddr(unsigned char Adr);void USBNWrite(unsigned char Adr,unsigned char Data);inline void USBNBurstWrite(unsigned char Data);void USBNInitMC(void);// print debug messagesvoid USBNDebug(char *msg);void USBNDecodeVendorRequest(DeviceRequest *req);void USBNDecodeClassRequest(DeviceRequest *req);/// The Atmega register used to send data/address to the USBN9604#define USB_DATA_OUT		PORTC/// The Atmega register used to receive data from the USBN9604#define USB_DATA_IN		PINC	/// The Atmega register that controls the i/o direction of the USB_DATA_OUT#define USB_DATA_DDR		DDRC/// The Atmega port used to send control signals to the USBN9604#define USB_CTRL_PORT		PORTD/// The Atmega register that controls the i/o direction of USB_CTRL_PORT#define USB_CTRL_DDR		DDRD/// The pin address of the chip select signal#define  PF_CS    0x08/// The pin address of the Address enable signal#define  PF_A0    0x40/// The pin address of the write strobe signal#define  PF_WR    0x20/// The pin address of the read strobe signal#define  PF_RD    0x10//#define  PF_RESET    0x10#endif /* _MCIFACE_H_ */

⌨️ 快捷键说明

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