Building Board Support Package (BSP) for STM32F411-Nucleo64 Part13.2: DMA Memory to Memory Mode

In this second section of the thirteenth part of board support package, we shall develop the source code of the DMA driver and test the driver with Memory to Memory mode.

In this guide, we shall cover the following:

  • Adding the required functions to the header file.
  • Develop the source code.
  • DMA Memory to Memory driver.
  • Code.
  • Results.

1. Adding the required function to the header file:

Open dma_bsp.h header file and add the following three functions:

First function:

C

This function shall initialize the DMA and takes DMA_Stream_TypeDef and DMA_ConfigTypedef as argument and returns nothing.

Second and third function as following:

C

Those functions will launch DMA transfer for both single and double buffer mode.

Both functions will take DMA_Stream_TypeDef, length and source as argument.

In double buffer, you will have two destinations rather than single destination for single buffer transfer.

Hence, the updated header file as following:

C

2. Develop the source code:

We start off by creating new source code with name of dma_bsp.c.

Within the source code, we shall the following header file:

C

We start with DMA Initialization:

C

Make sure that the DMA stream is disabled:

C

Reset the control register:

C

Configure the DMA according to the passed parameters as following:

C

For DMA transfer single buffer:

C

For double buffer mode:

C

For the interrupt handler:

C

The process as following:

Call the interrupt handler which is defined as weak function that will allow the user to overwrite the function then clear the pending flags.

Hence, the entire source code as following:

C

3. DMA Memory to Memory driver:

In main.c:

Include the dma_bsp header file:

C

Also, include stdlib for random number generation:

C

Declare a volatile variable to handle transfer complete interrupt:

C

Declare two arrays to hold the source and destination:

C

Declare DMA_ConfigTypedef data structure :

C

DMA2 Channel0 configuration:

C

Configure the DMA:

C

In while loop:

C

In interrupt handler:

C

4. Code:

You may download the source code from here:

5. Results:

Using debug session, add both array to live expression and you should get the following:

We have successfully transfer 5 word data from one location to another.

Happy coding 🙂

2 Comments

  • H.S.Raghavendra Rao Posted August 20, 2023 2:08 am

    Dear Sir,
    Good Morning, It is a pleasure to go through your site,
    In this site, in 5th Item, Results, has some file not found Displayed,
    though the results are known, please kindly look at the problem.
    thanks with regards,
    HSR-Rao.

    • Husamuldeen Posted August 20, 2023 3:44 am

      Hi,
      thank you. The problem has been fixed.

Add Comment

Your email address will not be published. Required fields are marked *