Tags
Language
Tags
May 2025
Su Mo Tu We Th Fr Sa
27 28 29 30 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Attention❗ To save your time, in order to download anything on this site, you must be registered 👉 HERE. If you do not have a registration yet, it is better to do it right away. ✌

( • )( • ) ( ͡⚆ ͜ʖ ͡⚆ ) (‿ˠ‿)
SpicyMags.xyz

Arm Cortex M Microcontroller Dma Programming Demystified

Posted By: ELK1nG
Arm Cortex M Microcontroller Dma Programming Demystified

Arm Cortex M Microcontroller Dma Programming Demystified
Last updated 8/2022
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 3.87 GB | Duration: 9h 46m

Direct Memory Access Demystified with STM32 Peripherals (ADC, SRAM,UART,M2M,M2P,P2M) and Embedded C code Exercises

What you'll learn
Please watch free preview videos you will learn something today without even enrolling for this course
Fundamentals of Direct Memory Access in a Microcontroller
The Microcontroller Architecture and Bus interfaces
Bus matrix of the ARM cortex M based MCU
Concurrent data access from ARM and DMA
DMA control configurations like burst size, FIFO, Alignment
DMA Controller internals and Bus interfaces
DMA Controller channels,Streams,priority
Memory to Memory data transfer using DMA and Exercises
Peripheral to Memory and Memory to Peripheral DMA and Programming exercises
Peripheral DMA configurations
DMA controller interrupts and interrupts handling
Debugging
Requirements
Basic knowledge of C and Microcontroller could be added advantage but not mandatory
Mind Receptive to new ideas or arguments
Description
The course aims to demystify the Microcontroller DMA controller internals and its programming with various peripherals. Suitable for beginners to intermediate students in the field of Embedded Systems and programming. Please go through the description below to understand the course offering.Key things you learn,1) The Multi AHB bus matrix and ARM Cortex M Bus interfaces2) MCU Master and Slave communication over bus matrix3) DMA internals: channel mapping / streams/ fifo /Master ports / Arbiter/etc4) DMA different transfer modes: M2P, P2M,M2M5) DMA with peripherals like ADC, GPIO, UART_RX/TX and many other peripherals will be updated in this course.6) DMA programming from scratch. Helps you to troubleshoot DMA issues on other microcontroller or processor platforms. You can speculate and debug problems more quickly when you learn the hard way.7) And lots of other videos about circular mode/burst transfer /RTOS etc. will be added shortly.Hardware used:1) STM32F446RE Nucleo64 boardyou can also use other STM32 boards such as the discovery board, evaluation board, or any other board.Software used:1) KEIL MDK V5 (free version, for windows)2) Openstm32 system workbench ( windows/linux/mac) (free)3) CubeMx software from ST (free)The installation procedure is covered in the courseDescription:This course is all about understanding the Direct Memory Access Controller of the Micro-controller and how to use it in the embedded applications.The course uses ARM Cortex M based STM32 Micro-controller for all theory discussion and code exercises. The course discusses generic details of the DMA which you can leverage to other Micro-controllers but you have made changes to the code in order to run on your target if it's not an ST's 32-bit Micro-controller.The course will help you to raise your confidence in handling your MCU's DMA controller and connecting dots by going through the various levels of discussion.I really tried to simplify the subject with clean/generic explanations and exercises.We will discuss why DMA is required and how it benefits ARM to offload data transfer work with exercises.We will learn different types of DMA transfers like M2M, P2M, and M2P (M: Memory P: Peripheral) and various DMA configurations. Please go through "What will I learn?" section above.For the beginners/intermediate students, the course will indeed add huge advantage and helps to use DMA successfully in Embedded applications.Learning order of FastBit Embedded Brain Academy Courses,If you are a beginner in the field of embedded systems, then you can take our courses in the below-mentioned order. This is just a recommendation from the instructor for beginners. 1) Microcontroller Embedded C Programming: absolute beginners(Embedded C)2) Embedded Systems Programming on ARM Cortex-M3/M4 Processor(ARM Cortex M4 Processor specific)3) Mastering Microcontroller with Embedded Driver Development(MCU1)4) Mastering Microcontroller: TIMERS, PWM, CAN, RTC,LOW POWER(MCU2)5) Embedded System Design using UML State Machines(State machine)6 Mastering RTOS: Hands-on FreeRTOS and STM32Fx with Debugging(RTOS)7) ARM Cortex M Microcontroller DMA Programming Demystified(DMA)8) STM32Fx Microcontroller Custom Bootloader Development(Bootloader)9) Embedded Linux Step by Step using Beaglebone Black(Linux)10) Linux device driver programming using Beaglebone Black(LDD1)

Overview

Section 1: DMA Getting Started and Multi AHB Architecture

Lecture 1 About the instructor

Lecture 2 Course Overview

Lecture 3 FAQ

Lecture 4 Source Code

Lecture 5 Important Note

Lecture 6 DMA Introduction: Master – Slave Communication

Lecture 7 Understanding MCU Block Diagram

Lecture 8 Understanding Multi AHB Bus Matrix

Lecture 9 Concurrent Data Transfer using ARM and DMA

Lecture 10 Concurrent Data Transfer using ARM and DMA-Demonstration

Lecture 11 Concurrent Data Transfer using ARM and DMA-Demonstration contd

Section 2: Development board used in our courses

Lecture 12 Note for the students

Lecture 13 About MCU Development board

Lecture 14 STM32F4 Discovery and Nucleo : Board Details

Lecture 15 ST-Link Driver Installation

Lecture 16 ST Link Firmware Upgrade

Section 3: KEIL-MDK-5 Setup For ARM Cortex M based MCUs

Lecture 17 Note for the students

Lecture 18 KEIL-MDK-5 Installation

Lecture 19 KEIL-MDK-5 Installation Contd.

Lecture 20 KEIL-MDK-5 Pack Installation

Lecture 21 Locating Pack Installation files

Lecture 22 Creating a KEIL Project

Lecture 23 Exercise: LED Toggling App using Board BSP APIs

Lecture 24 Exercise: LED Toggling App using Board BSP APIs-Nucleo

Lecture 25 Exercise : Adding button support using board BSP APIs(Nucleo)

Section 4: Installing Open STM32 System Workbench

Lecture 26 Downloading OpenSTM32 System-Workbench

Lecture 27 Installing OpenSTM32 System-Workbench

Section 5: STM32Cube Mx Installation and Code Generation

Lecture 28 Note for the students

Lecture 29 STM32CubeMX Installation

Lecture 30 Creating Projects using STM32CubeMX Part-1

Lecture 31 Creating Projects using STM32CubeMX-Part 2

Lecture 32 Creating Projects using STM32CubeMX-Part 3

Lecture 33 Creating Projects using STM32CubeMX-Part 4

Section 6: DMA Exercises: GPIO Polling and Interrupt

Lecture 34 DMA Programming : Generic Steps to follow

Lecture 35 Toggling of LED using DMA(Polling mode)-Part-1

Lecture 36 Toggling of LED using DMA(Polling mode)-Part-2

Lecture 37 Toggling of LED using DMA(Polling mode) - Part-3

Lecture 38 Toggling of LED using DMA(Polling mode)-Part-4

Lecture 39 Toggling of LED using DMA (Interrupt Mode)- Part 1

Lecture 40 Toggling of LED using DMA (Interrupt Mode)- Part 2

Section 7: DMA Exercises: UART to SRAM

Lecture 41 UART to SRAM Data Transfer using DMA (Interrupt Mode) : Big Picture

Lecture 42 UART to SRAM Data Transfer using DMA (Interrupt Mode) : Implementation

Lecture 43 UART to SRAM Data Transfer using DMA (Interrupt Mode) Contd

Section 8: DMA Functional Block Diagram ( What's inside the DMA controller ? )

Lecture 44 Master and Slave Ports of DMA

Lecture 45 DMA Streams

Lecture 46 DMA Channel Mapping

Lecture 47 DMA Channel Mapping Case Study1 : P2M

Lecture 48 DMA Channel Mapping Case Study2: M2M, M2P

Section 9: DMA Exercises : ADC to SRAM

Lecture 49 DMA Exercise : ADC to SRAM Big Picture

Lecture 50 ADC and DMA Configuration Settings

Lecture 51 ADC and DMA : Understanding Code-1

Lecture 52 ADC and DMA : Understanding Code-2

Section 10: DMA Arbiter and Stream Priority

Lecture 53 DMA Arbiter and Stream Priority

Section 11: DMA Transfer Modes and FIFO mode

Lecture 54 P2M Data Transfer

Lecture 55 M2P Data Transfer

Lecture 56 DMA Exercise : SRAM to UART2_TX Part-1

Lecture 57 DMA Exercise : SRAM to UART2_TX Part-2

Section 12: DMA Programming from scratch ( Register level programming)

Lecture 58 Introduction

Lecture 59 M2P Data Transfer : Project creation

Lecture 60 Button Init steps to Receive an interrupt

Lecture 61 Coding for Button init Part-1

Lecture 62 Coding for Button init Part-2

Lecture 63 Coding for Button init Part-3

Lecture 64 Implementing Button interrupt handler

Lecture 65 Discussing steps to configure the UART Peripheral

Lecture 66 UART PINMUX configuration settings

Lecture 67 code to bring out UART TX RX functionality on gpio pins

Lecture 68 Setting up Baudrate and Configuring UART parameters

Lecture 69 Testing UART communication

Lecture 70 Brainstorming DMA Initialization Steps

Lecture 71 Identifying the DMA stream

Lecture 72 Configuring DMA Stream direction and data width

Lecture 73 Configuring Channel Selection

Lecture 74 Testing with UART TX DMA request

Lecture 75 DMA stream interrupt(IRQ) discussion Part1

Lecture 76 DMA stream interrupt(IRQ) discussion Part2

Lecture 77 Coding DMA stream IRQ handler : Part1

Lecture 78 Coding DMA stream IRQ handler : Part2

Lecture 79 Note for the students

Section 13: BONUS LECTURE

Lecture 80 BONUS LECTURE

Professionals interested in exploring Embedded systems,Hobbyists and students who want to start their career in Embedded world,If you think about 'embedded' then think about taking this course. you will not be disappointed