English | MP4 | AVC 1280×720 | AAC 44KHz 2ch | 100 lectures (22h 36m) | 11.52 GB
No libraries : RTC, IWDG, WWDG, DMA-ADC, DMA-I2C, DMA-SPI, DMA-UART, DMA-PWM, Standby, Wakeup
Are you tired of Copying and Pasting code you don’t understand?
Here’s an overview of what you’re getting in this advanced level course…
Developing bare-metal DMA Drivers:This course completely demystifies the Direct Memory Access (DMA) peripheral. Over 50% of the course is spent on this topic, so that by the end of this course you would have mastered the DMA peripheral.
We shall thoroughly look at developing the following bare-metal DMA drivers.
- Bare-Metal DMA Memory-to-Memory Transfer Driver
- Bare-Metal ADC DMA Regular Conversion Driver
- Bare-Metal ADC DMA Timer Triggered Conversion Driver
- Bare-Metal UART RX/TX DMA Driver
- Bare-Metal SPI RX/TX DMA Driver
- Bare-Metal I2C RX/TX DMA Driver
- Bare-Metal PWM DMA Driver
Developing bare-metal RTC Drivers:The Realtime Clock (RTC) peripheral is another advanced peripheral demystified in this course. We shall study the theory of realtime clocks, take a look at the capabilies of the realtime clock on our microcontroller and then develop the following drivers for the realtime clock.
- Bare-Metal RTC Calendar Driver
- Bare-Metal RTC Alarm Driver
- Bare-Metal RTC Timestamp Driver
- Bare-Metal RTC Tamper Detection Driver
Developing bare-metal Watchdog Timer Drivers:Watchdog Timers are an essential component of any robust embedded device. In my opinion, no embedded device should be released onto the market without the implementation of an Independent Watchdog Timer (IWDG). You will understand why I hold this opinion in the course.
In this course we shall develop the following Watchdog Timer drivers:
- Bare-Metal Independent Watchdog (IWDG) Timer Driver
- Bare-Metal Windowed Watchdog (WWDG) Timer Driver
Working with Standby Mode and Wakeup:Knowing how to put your embedded devics into Low-power mode and coming out of it will greatly improve your ability to developer power efficient embedded solutions. This course will teach you how to put your device into Standby mode and come out of it using different methods.
Specifically, we shall develop the following drivers:
- Bare-Metal Standby Mode and Wakeup Pin Driver
- Bare-Metal Standby Mode and RTC Wakeup Timer Driver
The Art of Debugging :Knowing how to properly debug your firmware will save you lots of time and money, and may even prolong your life because of the level of frustration and stress you will avoid.
In this course you shall grasp the theoretical aspects of debugging, understand the various types of debugging such functional debugging and performance debugging, and learn the various tools and methods used in different scenarios.
Some of the techniques we you will master include:
- Methods of identifying the cause of HardFault
- Catching anomalous results
- Measuring execution time of an algorithm using a Timer
- Measuring execution time of an algorithm using a Logic Analyzer
- Working with arrays dumps
- Debugging techniques for Timers
What you’ll learn
- Write advanced firmware using only bare-metal embedded-c
- Write bare-metal drivers for DMA Memory-to-Memory transfer
- Write DMA ADC drivers using bare-metal embedded-c
- Write DMA PWM drivers using bare-metal embedded-c
- Write DMA UART drivers using bare-metal embedded-c
- Write DMA SPI drivers using bare-metal embedded-c
- Write DMA I2C drivers using bare-metal embedded-c
- Develop proficiency in your embedded development skills and confidently take the next steps
- Write Realtime Clock (RTC) drivers using bare-metal embedded-c
- Write Watchdog Timer (IWDG and WWDG) drivers using bare-metal embedded-c
- Write bare-metal embedded-c drivers for entering Standby mode and Waking up
- Use the debugger effectively to analyze and resolve any bugs
- Understand and write every single line of code yourself- no Copy/Paste
- Build every single line of code from scratch by writing to the microcontroller’s memory space directly.
Table of Contents
Setting Up
1 Downloading CubeIDE
2 Installing CubeIDE
3 Getting the required documentation
4 Getting the required package for bare-metal development
5 Testing the project setup
Essentials of Firmware Debugging
6 Introduction to Debugging
7 Getting familiar with the Debug View
8 Working with the Instrumentation Trace Macrocell (ITM)
9 Retargetting printf() and creating Log functions
10 Debugging with UART – Analyzing the Documentation
11 Debugging with UART – Writing the UART Driver
12 Debugging with UART – Testing the UART Driver
13 Debugging GPIO with Serial Wire Viewer (SWV)
Developing Bare-Metal Memory-to-Memory Direct Memory Access (DMA) Drivers
14 Overview of the Direct Memory Access (DMA) Module
15 Analyzing the DMA Documentation
16 Writing the DMA Memory-to-Memory Driver
17 Implementing the DMA Data Transfer function
18 Testing the DMA Driver
Developing Bare-Metal ADC DMA Drivers
19 Understanding ADC Independents Modes
20 Analyzing the ADC Documentation
21 Writing the ADC DMA Driver (Part I)
22 Writing the ADC DMA Driver (Part II)
Developing Bare-Metal ADC Timer Trigger DMA Drivers
23 Writing the ADC Timer Triggered Driver
24 Testing the ADC Timer Triggered Driver
Developing Bare-Metal UART DMA Drivers
25 Overview of the UART Protocol
26 Listing the Steps
27 Implementing the UART RX TX Initialization functions
28 Implementing the DMA Stream RX TX Configuration function (Part I)
29 Implementing the DMA Stream RX TX Configuration function (Part II)
30 Implementing the DMA Stream RX TX Configuration function (Part III)
31 Testing the UART DMA Driver
Developing Bare-Metal SPI DMA Drivers
32 Understanding the SPI Protocol
33 Analyzing the SPI Documentation
34 Implementing the SPI DMA Initialization function
35 Implementing the TX Stream Configuration function
36 Implementing the RX Stream Configuration function
37 Implementing the Transfer and Receive functions
38 Implementing the MPU9250 Mems Device SPI DMA Driver (Part I)
39 Implementing the MPU9250 Mems Device SPI DMA Driver (Part II)
40 Implementing the MPU9250 Mems Device SPI DMA Driver (Part III)
41 Implementing the MPU9250 Mems Device SPI DMA Driver (Part IV)
42 Testing the MPU9250 Mems Device SPI DMA Driver
Developing Bare-Metal I2C DMA Drivers
43 Understanding the I2C Protocol
44 Analyzing the I2C Documentation
45 Implementing the I2C DMA Initialization function (Part I)
46 Implementing the I2C DMA Initialization function (Part II)
47 Implementing the I2C DMA Tx Stream Initialization function
48 Implementing the I2C DMA Rx Stream Initialization function
49 Implementing the I2C DMA Stream Transfer function
50 Implementing the I2C DMA Stream Receive function
51 Implementing the I2C DMA Read function
52 Implementing the I2C DMA Write function
53 Implementing the I2C DMA Stream IRQHandlers
54 Testing the I2C DMA Driver with the MPU9250 Mems Device
Developing Bare-Metal PWM DMA Drivers
55 Understanding STM32 Timers
56 Analyzing the PWM Documentation
57 Implementing the PWM Initialization function
58 Developing the set_dutycycle() function
59 Implementing the PWM DMA Initialization function(Part I)
60 Implementing the PWM DMA Initialization function(Part II)
61 Testing the PWM DMA Driver
More on Debugging
62 Catching Anomalies with Breakpoints
63 Catching HardFaults
64 Debugging Timers using SWV Graph
65 Measuring the Execution Time of an Algorithm
66 Dumping Register Information
67 Determining Execution Time and Place using Profiling
Developing Bare-Metal RTC Drivers
68 Understanding Real Time Clocks
69 Listing the Steps for Configuring the RTC Calendar
70 Implementing the RTC Calendar Initialization function (Part I)
71 Implementing the RTC Calendar Initialization function (Part II)
72 Setting the Timer Prescalers
73 Exiting the Initialization Mode
74 Getting the Calendar Information
75 Testing the RTC Calendar Driver
76 Implementing the RTC Alarm Initialization function (Part I)
77 Implementing the RTC Alarm Initialization function (Part II)
78 Implementing the RTC Alarm Interrupt Handler and Testing
79 Analyzing the Steps to Configure the RTC Timestamp
80 Implementing the RTC Timestamp Initialization function
81 Implementing the RTC Timestamp Interrupt Handler
82 Testing the RTC Timestamp Driver
83 Implementing the RTC Tamper Detection Initialization function
84 Testing the RTC Tamper Detection Driver
Developing Bare-Metal Independent Watchdog (IWDG) Timer Drivers
85 Overview of the Independent Watchdog
86 Analyzing the Steps for Initializing the IWDG Timer
87 Implementing the IWDG Initialization function
88 Implementing other Modules for Testing the IWDG Driver
89 Testing the IWDG Driver
Developing Bare-Metal Windowed Watchdog (WWDG) Timer Drivers
90 Overview of the Window Watchdog
91 Implementing the WWDG Initialization function
92 Testing the WWDG Driver
Developing Bare-Metal Drivers for Standby Mode and Wakeup
93 Implementing the Standby and Wakeup Setup Function
94 Getting the Source of a Reset
95 Testing the Standby and Wakeup Driver
96 Analyzing Steps for Developing an RTC Wakeup Timer Driver
97 Implementing the RTC Wakeup Timer Initializationf Function
98 Implementing the rtc_enter_standby_mode() Function
99 Testing the RTC Wakeup timer Driver
Closing
100 Closing Remarks
Resolve the captcha to access the links!