#ifndef IOUSB_INC #define IOUSB_INC /* Memory Mapped USB Module - function prototypes */ void InitUSB_IO(void); uchar UsbGetByte(void); void UsbPutByte(uchar val); int UsbActive(void); int UsbByteAvail(void); int UsbOutFull(void); int UsbInFlush(void); void UsbOutFlush(void); int putsUSB(char * str); int printfUSB(char * str, ...); int Send_USB_File(char *fname, ulong *bytes, ulong *time); #endif