switching to 12 Mhz xtal so USB functions correctly
[fw/openalt] / usbser / usbser.h
1 #ifndef _USBSER_H_
2 #define _USBSER_H_
3
4 #include "FreeRTOS.h"
5 #include "queue.h"
6
7 //
8 //
9 //
10 signed portBASE_TYPE usbserPutChar (signed portCHAR cOutChar, portTickType xBlockTime);
11 signed portBASE_TYPE usbserPutString (const signed portCHAR * const pcString, portTickType xBlockTime);
12 signed portBASE_TYPE usbserGetChar (signed portCHAR *pcRxedChar, portTickType xBlockTime);
13 void usbserInit (void);
14 void usbserGetRxQueue (xQueueHandle *qh);
15
16 #endif