Pixy&Usb work with the new folder structure now.

This commit is contained in:
t-moe
2015-04-25 00:20:28 +02:00
parent 6c97e6fc24
commit 416883c15b
5 changed files with 86 additions and 54 deletions

View File

@@ -1,13 +1,24 @@
#include "app.h"
#include "usb_hcd_int.h"
#include "usbh_usr.h"
#include "usbh_core.h"
#include "usbh_msc_core.h"
extern USB_OTG_CORE_HANDLE USB_OTG_Core;
extern USBH_HOST USB_Host;
int main(void)
{
app_init();
while (1)
{
USBH_Process(&USB_OTG_Core, &USB_Host);
app_process();
//USBH_Process(&USB_OTG_Core, &USB_Host);
}
}