I'm trying to port GRBL 1.1 to the STM32F746 chip. Tell me the solution, thanks.

Committer:
Sergunb
Date:
Mon Sep 04 12:03:42 2017 +0000
Revision:
0:f1834a63f7c1
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Sergunb 0:f1834a63f7c1 1 /******************** (C) COPYRIGHT 2010 STMicroelectronics ********************
Sergunb 0:f1834a63f7c1 2 * File Name : usb_lib.h
Sergunb 0:f1834a63f7c1 3 * Author : MCD Application Team
Sergunb 0:f1834a63f7c1 4 * Version : V3.2.1
Sergunb 0:f1834a63f7c1 5 * Date : 07/05/2010
Sergunb 0:f1834a63f7c1 6 * Description : USB library include files
Sergunb 0:f1834a63f7c1 7 ********************************************************************************
Sergunb 0:f1834a63f7c1 8 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
Sergunb 0:f1834a63f7c1 9 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
Sergunb 0:f1834a63f7c1 10 * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
Sergunb 0:f1834a63f7c1 11 * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
Sergunb 0:f1834a63f7c1 12 * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
Sergunb 0:f1834a63f7c1 13 * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
Sergunb 0:f1834a63f7c1 14 *******************************************************************************/
Sergunb 0:f1834a63f7c1 15
Sergunb 0:f1834a63f7c1 16 /* Define to prevent recursive inclusion -------------------------------------*/
Sergunb 0:f1834a63f7c1 17 #ifndef __USB_LIB_H
Sergunb 0:f1834a63f7c1 18 #define __USB_LIB_H
Sergunb 0:f1834a63f7c1 19
Sergunb 0:f1834a63f7c1 20 /* Includes ------------------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 21 #include "stm32f10x.h"
Sergunb 0:f1834a63f7c1 22 #include "usb_type.h"
Sergunb 0:f1834a63f7c1 23 #include "usb_regs.h"
Sergunb 0:f1834a63f7c1 24 #include "usb_def.h"
Sergunb 0:f1834a63f7c1 25 #include "usb_core.h"
Sergunb 0:f1834a63f7c1 26 #include "usb_init.h"
Sergunb 0:f1834a63f7c1 27 #ifndef STM32F10X_CL
Sergunb 0:f1834a63f7c1 28 #include "usb_mem.h"
Sergunb 0:f1834a63f7c1 29 #include "usb_int.h"
Sergunb 0:f1834a63f7c1 30 #endif /* STM32F10X_CL */
Sergunb 0:f1834a63f7c1 31
Sergunb 0:f1834a63f7c1 32 #include "usb_sil.h"
Sergunb 0:f1834a63f7c1 33
Sergunb 0:f1834a63f7c1 34 #ifdef STM32F10X_CL
Sergunb 0:f1834a63f7c1 35 #include "otgd_fs_cal.h"
Sergunb 0:f1834a63f7c1 36 #include "otgd_fs_pcd.h"
Sergunb 0:f1834a63f7c1 37 #include "otgd_fs_dev.h"
Sergunb 0:f1834a63f7c1 38 #include "otgd_fs_int.h"
Sergunb 0:f1834a63f7c1 39 #endif /* STM32F10X_CL */
Sergunb 0:f1834a63f7c1 40
Sergunb 0:f1834a63f7c1 41
Sergunb 0:f1834a63f7c1 42 /* Exported types ------------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 43 /* Exported constants --------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 44 /* Exported macro ------------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 45 /* Exported functions ------------------------------------------------------- */
Sergunb 0:f1834a63f7c1 46 /* External variables --------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 47
Sergunb 0:f1834a63f7c1 48 #endif /* __USB_LIB_H */
Sergunb 0:f1834a63f7c1 49
Sergunb 0:f1834a63f7c1 50 /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/