Subversion Repositories NaviCtrl

Rev

Rev 41 | Rev 112 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
#ifndef _USB_H
41 ingob 2
#define _USB_H
1 ingob 3
 
4
#include "usb_lib.h"
5
#include "usb_conf.h"
6
#include "usb_prop.h"
7
#include "usb_pwr.h"
8
#include "usb_desc.h"
9
 
10
extern u32 USB_BufferRxCount;
11
extern u8 USB_BufferRx[];
12
 
41 ingob 13
void USB_ConfigInit(void);
111 killagreg 14
void USB_CableConfig(FunctionalState NewState);
15
void USB_PutString(u8 *string);
16
void USB_PutChar(u8 c);
17
void USB_SendData(u8 *pdata, u16 count);
1 ingob 18
 
19
#endif