The very first step in starting an embedded Linux system does not involve Linux at all. Instead, the processor is reset and starts executing code from a given location. This location contains a ...
I'd bet many people who write programs for embedded systems don't understand the underlying hardware and how it works. Elecia White aims to help those programmers with information in her book, “Making ...
This article presents an introduction of microcontrollers as the first part on the series Embedded Systems Programming. It describes the structure and operation of the microcontroller, and the purpose ...
When tasks share resources, as they often do, strange things can and will happen. Priority inversions in embedded systems can be particularly difficult to anticipate. Here’s an introduction to ...
In several of my previous posts, we’ve been looking at embedded software testing using Cpputest and build environments using Docker. Each topic is a building block ...
This is the second of three courses in the Embedded Interface Design (EID) specialization, the online version of the EID class offered on campus at CU Boulder. This course is an introduction to rapid ...
Over the last several years, Docker has taken the software industry by storm. Docker provides developers an “open platform for developing, shipping, and running applications”. The major advantage that ...
Counter/timer hardware is a crucial component of most embedded systems. In some cases a timer is needed to measure elapsed time; in others we want to count or time some external events. Here's a ...