Skip to content

USB Host + MSC #1196

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
first working version of usb host + msc
  • Loading branch information
rhapsodyv committed Dec 29, 2020
commit eb3791487672deb1cde168fd27565771ffb896cc
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/msc/usb_host_msc.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_msc.c"

#endif /* USBHOST */
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/msc/usb_host_msc_bot.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_msc_bot.c"

#endif /* USBHOST */
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/msc/usb_host_msc_scsi.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_msc_scsi.c"

#endif /* USBHOST */
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/usb_host_core.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_core.c"

#endif /* USBHOST */
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/usb_host_ctlreq.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_ctlreq.c"

#endif /* USBHOST */
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/usb_host_ioreq.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_ioreq.c"

#endif /* USBHOST */
5 changes: 5 additions & 0 deletions cores/arduino/stm32/usb_host/usb_host_pipes.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#ifdef USBHOST

#include "usbh_pipes.c"

#endif /* USBHOST */
Loading