Hey there! I no longer provide services in the embedded field, and this website is archived. To see what I'm up to these days, please visit my personal website: hanno.braun-odw.eu

Embedded Rust Glossary

This glossary is an attempt at explaining basic concepts from the Embedded Rust ecosystem. I will attempt to extend and update it going forward.

Is anything missing here? Is an entry not well explained? Do you have any questions? If so, please contact me (per email or Matrix), open an issue, or edit this glossary on GitHub.

Direct Memory Access

See DMA.

DMA

DMA (short for Direct Memory Access) is a hardware feature that allows microcontroller peripherals to directly access memory. This allows for larger amounts of work to be done without software interaction, improving performance and efficiency.

HAL

HALs (short for Hardware Abstraction Layer) are libraries that interface with microcontrollers. They are specific to the microcontrollers they interface with, and there are many different HALs for different types of microcontroller. They can be quite specific, only covering a few microcontroller models, or more general, covering multiple microcontroller families.

Hardware Abstraction Layers usually aim to provide APIs that are high-level, convenient, and safe. For that reason, they are often the preferred way to program a microcontroller. They are often not feature-complete though, especially if they target niche hardware that is not used by many developers.

HALs are usually built on top of one or several Peripheral Access Crates (PAC, for short). These can usually be accessed through the HAL API, and serve as a fallback for accessing hardware features that are not yet supported by the HAL.

If you're looking for a HAL for your target hardware, good places to search are GitHub, crates.io, and Awesome Embedded Rust. There are also community groups that develop HALs for specific kinds of microcontrollers, like stm32-rs, nRF Rust, and lpc-rs.

Hardware Abstraction Layer

See HAL.

PAC

PACs (short for Peripheral Access Crate) are low-level, machine-generated libraries that aim to cover that usually provide a complete or near-complete interface to a given microcontroller. Hardware Abstraction Layers are usually built on top of them, and provide a higher-level interface to the same hardware.

Peripheral Access Crates provide register-level access to the target hardware. Their APIs tend to have some level of type-safety, but do otherwise not attempt to restrict or guide the user in any way. Using them is very error-prone and requires a solid understanding of the target hardware. For that reason, using a Hardware Abstraction Layer is usually preferred.

PACs are generated from SVD files, using svd2rust. SVD files are provided by the hardware vendor and are of varying quality. Low-quality SVD files result in PACs that are buggy, miss features, and lack type-safety. Most widely-used PACs use patched SVD files to fix any problems that have been discovered.

If you're looking for a PAC for your target hardware, good places to search are GitHub, crates.io, and Awesome Embedded Rust. There are also community groups that provide PACs for specific kinds of microcontrollers, like stm32-rs, nRF Rust, and lpc-rs.

Peripheral Access Crate

See PAC.

Real-Time Interrupt-driven Concurrency

See RTIC.

RTIC

RTIC (short for Real-Time Interrupt-driven Concurrency; official website) is a lightweight framework for building Embedded Rust applications. It provides a task abstraction, efficient and safe sharing of resources between tasks, message passing, and more.

RTIC systematically solves many of the problems that any non-trivial Embedded Rust application would end up solving in an ad-hoc way anyway. It is therefore a widely held belief within the Embedded Rust community, that most firmware applications should use RTIC, unless there is a specific reason not to.

SVD

SVD (short for System View Description) is an XML-based file format that describes a microcontroller from the perspective of the software that is running on it. More specifically, it describes the register-based interface of the microcontroller's peripherals, but also contains some other information, like available hardware interrupts.

SVD files are the basis for PACs, which are generated from an SVD file using svd2rust. SVD files are of varying quality, which can lead to bugs and other quality problems in the generated PAC. PACs are often generated from patched files for that reason, but reporting issues to the hardware vendor can also be worthwhile.

SVD files can be hard to find, depending on the vendor. Some provide them for download on their websites (like ST) or distribute them with their IDEs (like NXP).

svd2rust

svd2rust (official repository) is a tool that converts SVD files into Peripheral Access Crates.

System View Description

See SVD.

Type State

In the context of Embedded Rust, type state refers to a pattern that uses types to encode the state of an API at compile-time. This can be useful in preventing accidental misuse of the API. For example, if the API controls a microcontroller peripheral, methods that will only work when the peripheral is enabled will simply be unavailable (trying to use them will cause a compiler error), until the peripheral has been enabled.

Rust's ownership system makes this pattern more useful then in most languages, as it provides much more control over how APIs can be used.

System View Description

See SVD.