I'm trying to port GRBL 1.1 to the STM32F746 chip. Tell me the solution, thanks.
stm_usb_fs_lib/inc/usb_mem.h@0:f1834a63f7c1, 2017-09-04 (annotated)
- Committer:
- Sergunb
- Date:
- Mon Sep 04 12:03:42 2017 +0000
- Revision:
- 0:f1834a63f7c1
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Sergunb | 0:f1834a63f7c1 | 1 | /******************** (C) COPYRIGHT 2010 STMicroelectronics ******************** |
Sergunb | 0:f1834a63f7c1 | 2 | * File Name : usb_mem.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 : Utility prototypes functions for memory/PMA transfers |
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_MEM_H |
Sergunb | 0:f1834a63f7c1 | 18 | #define __USB_MEM_H |
Sergunb | 0:f1834a63f7c1 | 19 | |
Sergunb | 0:f1834a63f7c1 | 20 | /* Includes ------------------------------------------------------------------*/ |
Sergunb | 0:f1834a63f7c1 | 21 | /* Exported types ------------------------------------------------------------*/ |
Sergunb | 0:f1834a63f7c1 | 22 | /* Exported constants --------------------------------------------------------*/ |
Sergunb | 0:f1834a63f7c1 | 23 | /* Exported macro ------------------------------------------------------------*/ |
Sergunb | 0:f1834a63f7c1 | 24 | /* Exported functions ------------------------------------------------------- */ |
Sergunb | 0:f1834a63f7c1 | 25 | void UserToPMABufferCopy(uint8_t *pbUsrBuf, uint16_t wPMABufAddr, uint16_t wNBytes); |
Sergunb | 0:f1834a63f7c1 | 26 | void PMAToUserBufferCopy(uint8_t *pbUsrBuf, uint16_t wPMABufAddr, uint16_t wNBytes); |
Sergunb | 0:f1834a63f7c1 | 27 | |
Sergunb | 0:f1834a63f7c1 | 28 | /* External variables --------------------------------------------------------*/ |
Sergunb | 0:f1834a63f7c1 | 29 | |
Sergunb | 0:f1834a63f7c1 | 30 | #endif /*__USB_MEM_H*/ |
Sergunb | 0:f1834a63f7c1 | 31 | |
Sergunb | 0:f1834a63f7c1 | 32 | /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/ |