17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Embedded Systems Bare-Metal Programming Ground Up™ (STM32)
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
Are you tired of Copying and Pasting code you don’t understand?
With a programming based approach, this course is designed to give you a solid foundation in bare-metal firmware development for ARM-based microcontrollers . The goal of this course is to teach you how to navigate the microcontroller reference manual and datasheet to extract the right information to professionally build peripheral drivers and firmware. To achieve this goal, no libraries are used in this course, purely bare-metal embedded-c and register manipulations.
Still keeping it simple, this course comes in different ARM Cortex-M development boards so that students can put the techniques to practice using an ARM Cortex-M development board of their choice. This version of the course uses the STMicroelectronics STM32F4-NUCLEO which has an ARM Cortex-M4 microcontoller.
So with that understood, let me tell you…
Exactly What You’re Getting
This is dramatically different from any course you have ever taken because it’s more of a professional hands-on “field guide” to stm32 bare metal firmware development. The reason why is because there’s no fluff or filler. It immediately gets down to the actual subject, showing you exactly what to do, how to do it, and why.
Plus, it’s easy.
And you’ll immediately “get” the entire mythology I personally use to build firmware for consumer devices in my professional life.
It’s About MORE Than Just Getting the Code to Work
See, this course will change your professional life forever. Here is what one student had to say about the course :
“I would suggest this course for all the beginners. The concepts have been covered in the right sequence.And also the best part of this lecture series is getting to know how to explore the reference manual and datasheets.”
Here is what another student had to say :
“Extremly helpful to get to understand the uC programming deeper! For me it is much easier from now to develop code because I undertstand the base behind, so I’m more confident and more experienced to develop and debug the code. Really, this course is very useful to link the hardware knowledge with the coding skills. This fills the gap between them. Thanks for it! “
A third student :
“I am a professional semiconductor chipset application engineer with 30 years in global embedded product design in system applications. I can say this teacher is very straight forward by sharing his many years knowledge to the students with his true heart. Yes. I love his teaching pace and style!“
Taken by 5000+ Students with 1000+ Reviews
If at least one of the following applies to you then keep reading if not then simply skip this course:
” Escape From “
Copying/Pasting code you don’t understand Using third party libraries and header files like HAL, LL and StdPeriph Experiencing bugs you don’t understand Being afraid of technical documentations like the reference manual and datasheet of the chip Imposter syndrome
” Arrive At “
Building every single line of code from scratch by writing to the microcontroller’s memory space directly. Using No third party libraries or header files Understanding and writing every single line of code yourself- no Copy/Paste Using the debugger effectively to analyze and resolve any bugs Developing proficiency in your embedded development skills and confidently take the next steps
So like I said, there’s more than just getting each piece of code to work.
Here’s an overview of what you’re getting…
Analyzing the chip documentations:Before developing the firmware for any chip you have to learn how to read the documentation provided by the chip manufacturer. Defining Peripheral addressAll components on the microcontroller have an address range. To write to a component or read from a component you need to locate its address range in the documentation and properly define the addresses in your code. Creating registers from the address:The addresses in the address range of a component represent the registers of that component. To access these registers you have effectively typecast the addresses. Understanding CMSIS:Cortex-Microcontroller Interface Standard (CMSIS)CMSIS is a standard developed by Arm for all Cortex-Microcontrollers. This is the standard used in professional firmware development
But it gets better because you’re also getting…
Deep Lessons on Developing Peripheral Drivers
You will learn how to develop bare-metal drivers for the following peripherals :
Analog-to-Digital Converter (ADC) Serial Peripheral Interface (SPI) Inter-Integrated Circuit (I2C) Direct Memory Access (DMA) Nested Vector Interrupt Controller (NVIC) General Purpose Timers (TIM) System Tick Timer (SysTick) General Purpose Input/Output (GPIO)
Specially Designed For People Who Hate Copy/Paste
Listen. If you don’t like “Copy/Paste” you’re not alone. I can’t stand it either. I’d literally rather have a piece of code that I wrote from scratch that doesn’t work than someone else’s working code I copied and pasted.
And that’s why I’ve spent months designing and recording this course in which I show you how to locate every single register used and the meaning of every hexadecimal value written into the register.
Also it comes with a money back guarantee so you have nothing to loose. Who this course is for:
If you are an absolute beginner to embedded systems, then take this course. If you are an experienced embedded developer and want to learn how to professionally develop embedded applications for ARM processors, then take this course.
Requirements
No programming experience needed – I’ll teach you everything you need to know. We shall be using the STM32 IDE which is FREE.
Last Updated 10/2021
VISITOR COMMENTS (0 )
FILE LIST
Filename
Size
.pad/0
11 B
.pad/1
44 B
TutsNode.com.txt
63 B
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/1. Downloading our Integrated Development Environment (IDE).srt
2.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/2. Installing our Integrated Development Environment (IDE).srt
2.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/3. Getting the right Documentation for Bare-Metal Development.srt
7.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/4. Coding Locating the Ports and Pins of Components on the Nucleo board.srt
9.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/5. Coding Defining Addresses of Modules using information from the Documentation.srt
24.5 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/6. Coding Creating required Registers using Information from Documentation.srt
21.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/7. Coding Configuring Pins using the Registers we Created.srt
10.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/8. Coding Creating Registers from Structure Members.srt
23 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/1. Getting Started - Constructing Peripheral Registers from Memory Addresses/9. Notice.html
279 B
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/10. Serial Peripheral Interface (SPI)/1. Introduction to Serial Peripheral Interface (SPI).srt
14.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/10. Serial Peripheral Interface (SPI)/2. Coding Implementing the SPI GPIO Initialization function.srt
11.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/10. Serial Peripheral Interface (SPI)/3. Coding Configuring the SPI Parameters.srt
9.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/10. Serial Peripheral Interface (SPI)/4. Coding Implementing the SPI Transmit.srt
7.5 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/10. Serial Peripheral Interface (SPI)/6. Coding Configuring the ADXL345 Accelerometer using the SPI Driver.srt
14.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/12. Set Up/2. Installing Keil uVision 5.srt
11.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/13. General Purpose InputOutput(GPIO)/1. Overview of ARM Cortex-M General Purpose InputOutput Module.srt
9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/13. General Purpose InputOutput(GPIO)/2. Coding Developing GPIO Driver Using Information from the Datasheet.mp4
421.9 MB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/13. General Purpose InputOutput(GPIO)/2. Coding Developing GPIO Driver Using Information from the Datasheet.srt
62.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/13. General Purpose InputOutput(GPIO)/4. Coding Controlling GPIO using the BSRR Register.srt
18.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/13. General Purpose InputOutput(GPIO)/5. Coding Reading GPIO Inputs.srt
12.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/13. General Purpose InputOutput(GPIO)/6. Notice.html
172 B
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/14. Writing Bare-Metal C Code with STM32CubeIDE/2. Coding Writing a GPIO Driver from Scratch (PART I).srt
46.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/14. Writing Bare-Metal C Code with STM32CubeIDE/3. Coding Writing a GPIO Driver from Scratch (PART II).srt
25.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/15. Universal Asynchronous Receiver-Transmitter(UART)/1. Overview of the UART Protocol.srt
10 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/15. Universal Asynchronous Receiver-Transmitter(UART)/3. Coding Developing the UART Driver Using Information from the Datasheet.mp4
289.5 MB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/15. Universal Asynchronous Receiver-Transmitter(UART)/3. Coding Developing the UART Driver Using Information from the Datasheet.srt
36.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/15. Universal Asynchronous Receiver-Transmitter(UART)/4. Further discussion on UART Alternate Function configuration.srt
9.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/15. Universal Asynchronous Receiver-Transmitter(UART)/5. Coding Receiving Data with the UART.srt
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/1. Overview of the System Tick Timer.srt
9.9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/10. Coding Input capture frequency measurement.srt
19.9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/11. Coding Configuring the General Purpose Timer for PWM Output.srt
8.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/2. Overview of General Purpose Timers.srt
11.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/4. Coding Developing the System Tick Timer Driver.srt
7.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/6. Coding Creating a Delay Function using the System Tick Timer.srt
13.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/7. Coding Developing the General Purpose Timer (GPTM) Driver.srt
15.9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/8. Coding Configuring the General Purpose Timer for Output Compare.srt
11.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/16. System Tick and General Purpose Timers/9. Coding Configuring the General Purpose Timer for Input Capture.srt
24.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/17. Interrupts Programming/1. Introduction to Interrupts.srt
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/17. Interrupts Programming/3. Coding Developing the GPIO Interrupt Driver.srt
21.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/17. Interrupts Programming/4. Coding Working with Multiple GPIO Interrupts.srt
24.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/17. Interrupts Programming/5. Coding Developing the UART Interrupt Driver.srt
15.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/17. Interrupts Programming/6. Coding Developing the System Tick Interrupt Driver.srt
11.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/17. Interrupts Programming/7. Coding Developing the General Purpose Timer Interrupt Driver.srt
15 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/18. Analog to Digital Conversion (ADC)/2. Coding Developing the ADC Driver.srt
22.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/18. Analog to Digital Conversion (ADC)/3. Coding Reading the CPU Temperature with the ADC and Displaying it with the UART.srt
25.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/19. Interfacing with a Liquid Crystal Display (LCD)/1. Coding Developing the Liquid Crystal Display (LCD) Driver.srt
30.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/19. Interfacing with a Liquid Crystal Display (LCD)/2. Coding Configuring the Liquid Crystal Display for 4-bit Data Mode.srt
13.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/2. General Purpose InputOutput(GPIO)/1. Overview of ARM Cortex-M General Purpose InputOutput Module.srt
9.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/2. General Purpose InputOutput(GPIO)/2. Coding Developing the GPIO Output Driver.srt
31.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/2. General Purpose InputOutput(GPIO)/4. Coding Developing the GPIO Input Driver.srt
11.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/20. Inter-Integrated Circuit (I2C)/1. Introduction to I2C.srt
12 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/20. Inter-Integrated Circuit (I2C)/2. Analyzing the DS1307 Realtime Clock.srt
7.9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/20. Inter-Integrated Circuit (I2C)/3. Coding Developing an I2C Driver.srt
28.9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/1. Introduction to Serial Peripheral Interface (SPI).srt
14.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/2. Coding Developing a Simple SPI Driver.srt
17 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/2.1 1_simple_spi_write.zip
396.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/3. Coding Developing an SPI Driver for the ST7735 Graphics LCD (Part I).srt
34.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/4. Coding Developing an SPI Driver for the ST7735 Graphics LCD (Part II).srt
12.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/5. Coding Developing an SPI Driver for the ST7735 Graphics LCD (Part III).srt
17 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/21. Serial Peripheral Interface (SPI)/6. Coding Developing an SPI Driver for the ST7735 Graphics LCD (Part IV).srt
26.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/22. ARM Design Philosophy and RISC Architecture/5. Memory.srt
9.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/23. The ARM Programmer's Model/10. ARM Cortex-A and Cortex-R.srt
2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/23. The ARM Programmer's Model/3. ARM7TDMI Registers.srt
9.5 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/24. Setting Up Option 2 - STM32CubeIDE/2. Setting Up STM32CubeIDE.srt
7.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/24. Setting Up Option 2 - STM32CubeIDE/5. Overview.srt
24.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/3. Universal Asynchronous Receiver-Transmitter(UART)/1. Overview of the UART Protocol.srt
10.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/3. Universal Asynchronous Receiver-Transmitter(UART)/2. Coding Developing the UART Transmitter Driver.srt
29.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/3. Universal Asynchronous Receiver-Transmitter(UART)/3. Coding Testing the UART Transmitter Driver.srt
9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/3. Universal Asynchronous Receiver-Transmitter(UART)/6. Coding Developing the UART Receiver Driver.srt
8.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/4. Analog to Digital Conversion (ADC)/2. Understanding ADC Independents Modes.srt
11.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/4. Analog to Digital Conversion (ADC)/3. Coding Developing the ADC Single Conversion Driver.mp4
266.1 MB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/4. Analog to Digital Conversion (ADC)/3. Coding Developing the ADC Single Conversion Driver.srt
36.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/5. The System Tick (SysTick) Timer/1. Overview of the System Tick Timer.srt
10.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/5. The System Tick (SysTick) Timer/2. Coding Developing the System Tick Timer Driver.srt
17.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/6. General Purpose Timers/1. Overview of General Purpose Timers.srt
12 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/6. General Purpose Timers/3. Coding Developing the General Purpose Timer Driver.srt
15.4 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/6. General Purpose Timers/4. Coding Developing the Timer Output Compare Driver.srt
20.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/6. General Purpose Timers/5. Coding Developing the Timer Input Capture Driver.srt
23.6 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/7. Interrupt Programming/1. Introduction to Interrupts.srt
26.7 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/7. Interrupt Programming/2. Coding Developing the GPIO Interrupt Driver.srt
20.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/7. Interrupt Programming/3. Coding Testing the GPIO Interrupt Driver.srt
11.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/7. Interrupt Programming/4. Coding Developing the UART Receiver Interrupt Driver.srt
13.9 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/7. Interrupt Programming/5. Coding Developing the ADC Interrupt Driver.srt
10.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/7. Interrupt Programming/7. Coding Developing the Timer Interrupt Driver.srt
7.8 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/8. Direct Memory Access (DMA) Driver Development/1. Overview of the Direct Memory Access (DMA) Module.srt
16.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/8. Direct Memory Access (DMA) Driver Development/2. Coding Developing the UART Transmitter DMA Driver Pt.1.srt
10.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/8. Direct Memory Access (DMA) Driver Development/3. Coding Developing the UART Transmitter DMA Driver Pt.2.srt
26 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/8. Direct Memory Access (DMA) Driver Development/4. Coding Testing the UART Transmitter DMA Driver.srt
17.1 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/9. Inter-Integrated Circuit (I2C)/1. Introduction to I2C.srt
12.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/9. Inter-Integrated Circuit (I2C)/2. Coding Implementing the I2C Init function.srt
22.3 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/9. Inter-Integrated Circuit (I2C)/3. Coding Implementing the I2C Byte Read function.srt
17.5 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/9. Inter-Integrated Circuit (I2C)/4. Coding Implementing the I2C Burst Read function.srt
8.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/9. Inter-Integrated Circuit (I2C)/6. Coding Configuring the ADXL345 Accelerometer using the I2C driver.srt
24.2 KB
[TutsNode.com] - Embedded Systems Bare-Metal Programming Ground Up™ (STM32)/9. Inter-Integrated Circuit (I2C)/7. Coding Testing the ADXL345 Accelerometer using the I2C driver.srt