BOOTLOADER
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
usbhost.c
Go to the documentation of this file.
1 /******************************************************
2 * Function: s3c2440 usbhost driver
3 *
4 * File: usbhost.c
5 * Author: Book Chen
6 * Date: 2008.07.18
7 *******************************************************
8 */
9 #include "includes.h"
10 
11 #define UsbHostIdleState 0
12 
14 
15 extern void F_UsbHostInit(void);
16 extern void F_UsbHostSvc(void);
17 
18 void F_UsbHostInit(void){
19  UsbHostCtrl.State=UsbHostIdleState;
20 }
21 void F_UsbHostSvc(void){}