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_int.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 : Endpoint CTR (Low and High) interrupt's service routines
Sergunb 0:f1834a63f7c1 7 * prototypes
Sergunb 0:f1834a63f7c1 8 ********************************************************************************
Sergunb 0:f1834a63f7c1 9 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
Sergunb 0:f1834a63f7c1 10 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
Sergunb 0:f1834a63f7c1 11 * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
Sergunb 0:f1834a63f7c1 12 * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
Sergunb 0:f1834a63f7c1 13 * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
Sergunb 0:f1834a63f7c1 14 * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
Sergunb 0:f1834a63f7c1 15 *******************************************************************************/
Sergunb 0:f1834a63f7c1 16
Sergunb 0:f1834a63f7c1 17 /* Define to prevent recursive inclusion -------------------------------------*/
Sergunb 0:f1834a63f7c1 18 #ifndef __USB_INT_H
Sergunb 0:f1834a63f7c1 19 #define __USB_INT_H
Sergunb 0:f1834a63f7c1 20
Sergunb 0:f1834a63f7c1 21 /* Includes ------------------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 22 /* Exported types ------------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 23 /* Exported constants --------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 24 /* Exported macro ------------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 25 /* Exported functions ------------------------------------------------------- */
Sergunb 0:f1834a63f7c1 26 void CTR_LP(void);
Sergunb 0:f1834a63f7c1 27 void CTR_HP(void);
Sergunb 0:f1834a63f7c1 28
Sergunb 0:f1834a63f7c1 29 /* External variables --------------------------------------------------------*/
Sergunb 0:f1834a63f7c1 30
Sergunb 0:f1834a63f7c1 31 #endif /* __USB_INT_H */
Sergunb 0:f1834a63f7c1 32
Sergunb 0:f1834a63f7c1 33 /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/