38
|
1 /**
|
|
2 ******************************************************************************
|
|
3 * File Name : dma.h
|
|
4 * Date : 16/09/2014 16:10:20
|
|
5 * Description : This file contains all the function prototypes for
|
|
6 * the dma.c file
|
|
7 ******************************************************************************
|
|
8 *
|
|
9 * COPYRIGHT(c) 2014 STMicroelectronics
|
|
10 *
|
|
11 * Redistribution and use in source and binary forms, with or without modification,
|
|
12 * are permitted provided that the following conditions are met:
|
|
13 * 1. Redistributions of source code must retain the above copyright notice,
|
|
14 * this list of conditions and the following disclaimer.
|
|
15 * 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
16 * this list of conditions and the following disclaimer in the documentation
|
|
17 * and/or other materials provided with the distribution.
|
|
18 * 3. Neither the name of STMicroelectronics nor the names of its contributors
|
|
19 * may be used to endorse or promote products derived from this software
|
|
20 * without specific prior written permission.
|
|
21 *
|
|
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
25 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
32 *
|
|
33 ******************************************************************************
|
|
34 */
|
|
35 /* Define to prevent recursive inclusion -------------------------------------*/
|
|
36 #ifndef DMA_H
|
|
37 #define DMA_H
|
|
38
|
|
39 #ifdef __cplusplus
|
|
40 extern "C" {
|
|
41 #endif
|
|
42
|
|
43 /* Includes ------------------------------------------------------------------*/
|
|
44 #include "stm32f4xx_hal.h"
|
|
45
|
|
46 void MX_DMA_Init(void);
|
|
47 void MX_DMA_DeInit(void);
|
|
48
|
|
49 #ifdef __cplusplus
|
|
50 }
|
|
51 #endif
|
|
52
|
|
53 #endif /* DMA_H */
|
|
54
|
|
55 /**
|
|
56 * @}
|
|
57 */
|
|
58
|
|
59 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|