You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
332 B
22 lines
332 B
#ifndef USBMASSSTORAGE_H |
|
#define USBMASSSTORAGE_H |
|
|
|
#include <boards.h> |
|
#include "usb_mass_mal.h" |
|
|
|
|
|
extern "C" { |
|
#include <usbd_usr.h> |
|
#include <usbd_desc.h> |
|
#include <usb_conf.h> |
|
#include <usbd_core.h> |
|
|
|
#include "msc/usbd_msc_core.h" |
|
|
|
#define USB_MASS_MAL_FAIL -1 |
|
#define USB_MASS_MAL_SUCCESS 0 |
|
|
|
|
|
} |
|
#endif /* USBMASSSTORAGE_H */ |
|
|
|
|