summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-02-23 23:09:48 +0700
committerhathach <[email protected]>2021-02-23 23:09:48 +0700
commit451650fa32b245f2dc02c366b25fa802b75fbb1b (patch)
tree96f5c6badf677f4306439561f173ded8a8a51dfd /examples
parentafab5bf497ce429a60eee1642e8c58560f4b6147 (diff)
move ehci and ohci to portable folder
Diffstat (limited to 'examples')
-rw-r--r--examples/host/cdc_msc_hid/Makefile4
-rw-r--r--examples/host/cdc_msc_hid/src/msc_app.c7
2 files changed, 2 insertions, 9 deletions
diff --git a/examples/host/cdc_msc_hid/Makefile b/examples/host/cdc_msc_hid/Makefile
index 3a0e94d73..6a2b4d902 100644
--- a/examples/host/cdc_msc_hid/Makefile
+++ b/examples/host/cdc_msc_hid/Makefile
@@ -19,8 +19,8 @@ SRC_C += \
src/host/hub.c \
src/host/usbh.c \
src/host/usbh_control.c \
- src/host/ehci/ehci.c \
- src/host/ohci/ohci.c \
+ src/portable/ehci/ehci.c \
+ src/portable/ohci/ohci.c \
src/portable/nxp/transdimension/hcd_transdimension.c \
src/portable/nxp/lpc17_40/hcd_lpc17_40.c
diff --git a/examples/host/cdc_msc_hid/src/msc_app.c b/examples/host/cdc_msc_hid/src/msc_app.c
index 623141eaa..3a8ef3a07 100644
--- a/examples/host/cdc_msc_hid/src/msc_app.c
+++ b/examples/host/cdc_msc_hid/src/msc_app.c
@@ -73,13 +73,6 @@ void tuh_msc_mount_cb(uint8_t dev_addr)
// return;
// }
//
-// puts("---------------------------------------------------------------------");
-// puts("- MASSSTORAGE CLASS CLI IS A IMMATURE CODE. DISK-WRITING COMMANDS");
-// puts("- SUCH AS cp(COPY), mkdir(MAKE DIRECTORY) ARE POTENTIAL TO DAMAGE");
-// puts("- YOUR USB THUMBDRIVE. USING THOSE COMMANDS ARE AT YOUR OWN RISK.");
-// puts("- THE AUTHOR HAS NO RESPONSIBILITY WITH YOUR DEVICE NOR ITS DATA");
-// puts("---------------------------------------------------------------------");
-//
// f_chdrive(phy_disk); // change to newly mounted drive
// f_chdir("/"); // root as current dir
//