Yuliya Smirnova / ADE7912

Dependents:   h7adc

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dma.h Source File

dma.h

00001 /**
00002   ******************************************************************************
00003   * File Name          : dma.h
00004   * Description        : This file contains all the function prototypes for
00005   *                      the dma.c file
00006   ******************************************************************************
00007   * @attention
00008   *
00009   * <h2><center>&copy; Copyright (c) 2020 STMicroelectronics.
00010   * All rights reserved.</center></h2>
00011   *
00012   * This software component is licensed by ST under Ultimate Liberty license
00013   * SLA0044, the "License"; You may not use this file except in compliance with
00014   * the License. You may obtain a copy of the License at:
00015   *                             www.st.com/SLA0044
00016   *
00017   ******************************************************************************
00018   */
00019 /* Define to prevent recursive inclusion -------------------------------------*/
00020 #ifndef __dma_H
00021 #define __dma_H
00022 
00023 #ifdef __cplusplus
00024  extern "C" {
00025 #endif
00026 
00027 /* Includes ------------------------------------------------------------------*/
00028 #include "main.h"
00029 
00030 /* DMA memory to memory transfer handles -------------------------------------*/
00031 
00032 /* USER CODE BEGIN Includes */
00033 
00034 /* USER CODE END Includes */
00035 
00036 /* USER CODE BEGIN Private defines */
00037 
00038 /* USER CODE END Private defines */
00039 
00040 void MX_DMA_Init(void);
00041 
00042 /* USER CODE BEGIN Prototypes */
00043 
00044 /* USER CODE END Prototypes */
00045 
00046 #ifdef __cplusplus
00047 }
00048 #endif
00049 
00050 #endif /* __dma_H */
00051 
00052 /**
00053   * @}
00054   */
00055 
00056 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
00057