lpc1768usb使用-配置
#ifndef __USBCFG_H__
#define __USBCFG_H__
//#define USB_IF_NUM 1
#define USB_MAX_PACKET0 64
#define USB_DMA_EP 0x00000000
//盡量不要是能太多時(shí)間
//這里每一個(gè)事件都代表著一個(gè)回調(diào)函數(shù),使能了該事件就需要實(shí)現(xiàn)相應(yīng)的回調(diào)函數(shù)
#define USB_EP_EVENT 0x0003 //哪些端點(diǎn)需要實(shí)現(xiàn)中斷處理函數(shù),一位代表一個(gè)端點(diǎn)
#define USB_CONFIGURE_EVENT 1 //usb配置事件
#define USB_HID_IF_NUM 0 //usb hid使用端點(diǎn) 第幾個(gè)接口
#define USB_DEBUG 0
#if USB_DEBUG
#define usb_debug_printf(format,args...) printf(format,##args) //變參宏定義
#else
#define usb_debug_printf(x,...) while(0);
#endif
#endif
#ifndef __USBUSER_H__
#define __USBUSER_H__
#include "usbhw.h"
//hid報(bào)告長(zhǎng)度
#define HID_REPORT_NUM 1
//hid中斷端點(diǎn)地址
#define HID_EP_IN 0x81
#define HID_EP_OUT 0X01
/* USB回調(diào)方法 */
extern void USB_Power_Event(BOOL power);
extern void USB_Reset_Event(void);
extern void USB_Suspend_Event(void);
extern void USB_Resume_Event(void);
extern void USB_WakeUp_Event(void);
extern void USB_SOF_Event(void);
extern void USB_Error_Event(U32 error);
/* usb端點(diǎn)終端回調(diào)函數(shù)類型定義 */
#define USB_EVT_SETUP 1 /* setup包 */
#define USB_EVT_OUT 2 /* OUT 包 */
#define USB_EVT_IN 3 /* IN 包 */
#define USB_EVT_OUT_NAK 4 /* NACK OUT 包 */
#define USB_EVT_IN_NAK 5 /* NACK IN 包 */
#define USB_EVT_OUT_STALL 6 /* 忽略 out包 */
#define USB_EVT_IN_STALL 7 /* 忽略 in包 */
/* USB端點(diǎn)事件回調(diào)期(方法數(shù)組) */
extern void(*const USB_P_EP[16])(U32 event);
/* USB端點(diǎn)回調(diào)方法 */
extern void USB_EndPoint0(U32 event);//最重要的函數(shù),處理USB枚舉相關(guān)事件
extern void USB_EndPoint1(U32 event);
extern void USB_EndPoint2(U32 event);
extern void USB_EndPoint3(U32 event);
extern void USB_EndPoint4(U32 event);
extern void USB_EndPoint5(U32 event);
extern void USB_EndPoint6(U32 event);
extern void USB_EndPoint7(U32 event);
extern void USB_EndPoint8(U32 event);
extern void USB_EndPoint9(U32 event);
extern void USB_EndPoint10(U32 event);
extern void USB_EndPoint11(U32 event);
extern void USB_EndPoint12(U32 event);
extern void USB_EndPoint13(U32 event);
extern void USB_EndPoint14(U32 event);
extern void USB_EndPoint15(U32 event);
/* USB枚舉過(guò)程內(nèi)核調(diào)用事件 */
extern void USB_Configure_Event(void);
extern void USB_Interface_Event(void);
extern void USB_Feature_Event(void);
#endif
#include "usbuser.h"
#include "usbep1.h"
/*
* USB Set Configuration Event Callback
* Called automatically on USB Set Configuration Request
*/
#if USB_CONFIGURE_EVENT
void USB_Configure_Event(void)
{
u8 Buf[4]={0,0,0,0};
if(USB_Configuration)
{/* Check if USB is configured */
USB_WriteEP(HID_EP_IN,Buf,sizeof(Buf));
}
}
#endif
//宏展開(kāi)為USB_EndPointx()類型的函數(shù)
#define P_EP(n) ((USB_EP_EVENT & (1 << (n))) ? USB_EndPoint##n : NULL)
/* USB端點(diǎn)中斷處理的回調(diào)函數(shù) */
void(*const USB_P_EP[16])(U32 event)=
{ P_EP(0),//使用宏
P_EP(1),
P_EP(2),
P_EP(3),
P_EP(4),
P_EP(5),
P_EP(6),
P_EP(7),
P_EP(8),
P_EP(9),
P_EP(10),
P_EP(11),
P_EP(12),
P_EP(13),
P_EP(14),
P_EP(15),
};
//端點(diǎn)1中斷的回調(diào)函數(shù)
void USB_EndPoint1(U32 event)
{
switch(event)
{
caseUSB_EVT_IN:
usb_ep1_in_process();
//GetInReport();
//USB_WriteEP(HID_EP_IN, &InReport, sizeof(InReport));
break;
caseUSB_EVT_OUT:
usb_ep1_out_process();
break;
}
}
void USB_EndPoint2(U32 event)
{
}
void USB_EndPoint3(U32 event)
{
}
void USB_EndPoint4(U32 event)
{
}
void USB_EndPoint5(U32 event)
{
}
void USB_EndPoint6(U32 event)
{
}
void USB_EndPoint7(U32 event)
{
}
void USB_EndPoint8(U32 event)
{
}
void USB_EndPoint9(U32 event)
{
}
void USB_EndPoint10(U32 event)
{
}
void USB_EndPoint11(U32 event)
{
}
void USB_EndPoint12(U32 event)
{
}
void USB_EndPoint13(U32 event)
{
}
void USB_EndPoint14(U32 event)
{
}
void USB_EndPoint15(U32 event)
{
}
#ifndef __USBCFG_H__
#define __USBCFG_H__
//#define USB_IF_NUM 1
#define USB_MAX_PACKET0 64
#define USB_DMA_EP 0x00000000
//盡量不要是能太多時(shí)間
//這里每一個(gè)事件都代表著一個(gè)回調(diào)函數(shù),使能了該事件就需要實(shí)現(xiàn)相應(yīng)的回調(diào)函數(shù)
#define USB_EP_EVENT 0x0003 //哪些端點(diǎn)需要實(shí)現(xiàn)中斷處理函數(shù),一位代表一個(gè)端點(diǎn)
#define USB_CONFIGURE_EVENT 1 //usb配置事件
#define USB_HID_IF_NUM 0 //usb hid使用端點(diǎn) 第幾個(gè)接口
#define USB_DEBUG 0
#if USB_DEBUG
#define usb_debug_printf(format,args...) printf(format,##args) //變參宏定義
#else
#define usb_debug_printf(x,...) while(0);
#endif
#endif
#ifndef __USBUSER_H__
#define __USBUSER_H__
#include "usbhw.h"
//hid報(bào)告長(zhǎng)度
#define HID_REPORT_NUM 1
//hid中斷端點(diǎn)地址
#define HID_EP_IN 0x81
#define HID_EP_OUT 0X01
/* USB回調(diào)方法 */
extern void USB_Power_Event(BOOL power);
extern void USB_Reset_Event(void);
extern void USB_Suspend_Event(void);
extern void USB_Resume_Event(void);
extern void USB_WakeUp_Event(void);
extern void USB_SOF_Event(void);
extern void USB_Error_Event(U32 error);
/* usb端點(diǎn)終端回調(diào)函數(shù)類型定義 */
#define USB_EVT_SETUP 1 /* setup包 */
#define USB_EVT_OUT 2 /* OUT 包 */
#define USB_EVT_IN 3 /* IN 包 */
#define USB_EVT_OUT_NAK 4 /* NACK OUT 包 */
#define USB_EVT_IN_NAK 5 /* NACK IN 包 */
#define USB_EVT_OUT_STALL 6 /* 忽略 out包 */
#define USB_EVT_IN_STALL 7 /* 忽略 in包 */
/* USB端點(diǎn)事件回調(diào)期(方法數(shù)組) */
extern void(*const USB_P_EP[16])(U32 event);
/* USB端點(diǎn)回調(diào)方法 */
extern void USB_EndPoint0(U32 event);//最重要的函數(shù),處理USB枚舉相關(guān)事件
extern void USB_EndPoint1(U32 event);
extern void USB_EndPoint2(U32 event);
extern void USB_EndPoint3(U32 event);
extern void USB_EndPoint4(U32 event);
extern void USB_EndPoint5(U32 event);
extern void USB_EndPoint6(U32 event);
extern void USB_EndPoint7(U32 event);
extern void USB_EndPoint8(U32 event);
extern void USB_EndPoint9(U32 event);
extern void USB_EndPoint10(U32 event);
extern void USB_EndPoint11(U32 event);
extern void USB_EndPoint12(U32 event);
extern void USB_EndPoint13(U32 event);
extern void USB_EndPoint14(U32 event);
extern void USB_EndPoint15(U32 event);
/* USB枚舉過(guò)程內(nèi)核調(diào)用事件 */
extern void USB_Configure_Event(void);
extern void USB_Interface_Event(void);
extern void USB_Feature_Event(void);
#endif
#include "usbuser.h"
#include "usbep1.h"
/*
* USB Set Configuration Event Callback
* Called automatically on USB Set Configuration Request
*/
#if USB_CONFIGURE_EVENT
void USB_Configure_Event(void)
{
u8 Buf[4]={0,0,0,0};
if(USB_Configuration)
{/* Check if USB is configured */
USB_WriteEP(HID_EP_IN,Buf,sizeof(Buf));
}
}
#endif
//宏展開(kāi)為USB_EndPointx()類型的函數(shù)
#define P_EP(n) ((USB_EP_EVENT & (1 << (n))) ? USB_EndPoint##n : NULL)
/* USB端點(diǎn)中斷處理的回調(diào)函數(shù) */
void (* co