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
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
Prev Previous commit
Next Next commit
fix include
  • Loading branch information
rhapsodyv committed Dec 29, 2020
commit 95df0144e2f4b64cdfc9452424cadd4257e7b7eb
7 changes: 6 additions & 1 deletion cores/arduino/stm32/usb_host/usbh_conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@
*
******************************************************************************
*/
#ifdef USBHOST
/* USER CODE END Header */

/* Includes ------------------------------------------------------------------*/
#include "usbh_core.h"
#include "Arduino.h"

#include "stm32f4xx_hal_hcd.h"
#ifndef HAL_HCD_MODULE_ENABLED
#error "HAL_HCD_MODULE_ENABLED is required"
#endif

/* USER CODE BEGIN Includes */

Expand Down Expand Up @@ -569,3 +572,5 @@ USBH_StatusTypeDef USBH_Get_USB_Status(HAL_StatusTypeDef hal_status)
}

#endif // !defined(USBCON)

#endif /* USBHOST */