xref: /btstack/port/stm32-f4discovery-cc256x/Inc/dma.h (revision 225f4ba4fe806afeda1ee8519bb5f4a8ce540af2)
1 /**
2   ******************************************************************************
3   * File Name          : dma.h
4   * Description        : This file contains all the function prototypes for
5   *                      the dma.c file
6   ******************************************************************************
7   * @attention
8   *
9   * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
10   * All rights reserved.</center></h2>
11   *
12   * This software component is licensed by ST under BSD 3-Clause license,
13   * the "License"; You may not use this file except in compliance with the
14   * License. You may obtain a copy of the License at:
15   *                        opensource.org/licenses/BSD-3-Clause
16   *
17   ******************************************************************************
18   */
19 /* Define to prevent recursive inclusion -------------------------------------*/
20 #ifndef __dma_H
21 #define __dma_H
22 
23 #ifdef __cplusplus
24  extern "C" {
25 #endif
26 
27 /* Includes ------------------------------------------------------------------*/
28 #include "main.h"
29 
30 /* DMA memory to memory transfer handles -------------------------------------*/
31 
32 /* USER CODE BEGIN Includes */
33 
34 /* USER CODE END Includes */
35 
36 /* USER CODE BEGIN Private defines */
37 
38 /* USER CODE END Private defines */
39 
40 void MX_DMA_Init(void);
41 
42 /* USER CODE BEGIN Prototypes */
43 
44 /* USER CODE END Prototypes */
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
50 #endif /* __dma_H */
51 
52 /**
53   * @}
54   */
55 
56 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
57