2020-07-15 18:26:22 +08:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
2020-12-17 18:22:19 +08:00
|
|
|
* @file dma.c
|
|
|
|
* @brief This file provides code for the configuration
|
|
|
|
* of all the requested memory to memory DMA transfers.
|
2020-07-15 18:26:22 +08:00
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
2021-01-06 11:37:19 +08:00
|
|
|
* <h2><center>© Copyright (c) 2021 STMicroelectronics.
|
2020-07-15 18:26:22 +08:00
|
|
|
* All rights reserved.</center></h2>
|
|
|
|
*
|
|
|
|
* This software component is licensed by ST under Ultimate Liberty license
|
|
|
|
* SLA0044, the "License"; You may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at:
|
|
|
|
* www.st.com/SLA0044
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "dma.h"
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
|
|
|
|
/* USER CODE END 0 */
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
/* Configure DMA */
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
|
2020-12-16 12:02:47 +08:00
|
|
|
/**
|
2020-07-15 18:26:22 +08:00
|
|
|
* Enable DMA controller clock
|
|
|
|
*/
|
2020-12-16 12:02:47 +08:00
|
|
|
void MX_DMA_Init(void)
|
2020-07-15 18:26:22 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
/* DMA controller clock enable */
|
|
|
|
__HAL_RCC_DMA1_CLK_ENABLE();
|
2021-03-10 14:43:41 +08:00
|
|
|
__HAL_RCC_DMA2_CLK_ENABLE();
|
2020-07-15 18:26:22 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 2 */
|
|
|
|
|
|
|
|
/* USER CODE END 2 */
|
|
|
|
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|