- add configure option
- add include path
- add driver function table
This commit is contained in:
hathach
2013-06-29 16:06:45 +07:00
parent d4f31e149a
commit 7e6e5cc356
5 changed files with 176 additions and 2 deletions

View File

@@ -63,11 +63,14 @@
#include "class/hid_host.h"
#endif
// #define HOST_CLASS_MSC // FIXME hack to test massstorage class
#ifdef HOST_CLASS_MSC
#if TUSB_CFG_HOST_MSC
#include "class/msc_host.h"
#endif
#if TUSB_CFG_HOST_CDC
#include "class/cdc_host.h"
#endif
#if TUSB_CFG_HOST_CUSTOM_CLASS
#include "class/custom_class.h"
#endif