Subversion Repositories NaviCtrl

Rev

Rev 1 | Rev 111 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 41
1
#ifndef _USB_H
1
#ifndef _USB_H
2
 #define _USB_H
2
#define _USB_H
3
 
3
 
4
#include "usb_lib.h"
4
#include "usb_lib.h"
5
#include "usb_conf.h"
5
#include "usb_conf.h"
6
#include "usb_prop.h"
6
#include "usb_prop.h"
7
#include "usb_pwr.h"
7
#include "usb_pwr.h"
8
#include "usb_desc.h"
8
#include "usb_desc.h"
9
 
9
 
10
extern u32 USB_BufferRxCount;
10
extern u32 USB_BufferRxCount;
11
extern u8 USB_BufferRx[];
11
extern u8 USB_BufferRx[];
12
 
12
 
13
extern void USB_ConfigInit(void);
13
void USB_ConfigInit(void);
14
extern void USB_Cable_Config (FunctionalState NewState);
14
void USB_Cable_Config (FunctionalState NewState);
15
extern void USB_Send_String(u8 *StrPtr);
15
void USB_Send_String(u8 *StrPtr);
16
extern void USB_Send_Char(u8 ch);
16
void USB_Send_Char(u8 ch);
17
extern void USB_Send_Data(u8 *data, u16 count);
17
void USB_Send_Data(u8 *data, u16 count);
18
 
18
 
19
#endif
19
#endif
20
 
20