-
Notifications
You must be signed in to change notification settings - Fork 8
User Guide Supported Distributions
Zakaria Madaoui edited this page Jul 24, 2026
·
12 revisions
This page lists the reference distributions maintained in this repository. New distributions for other hardware targets are developed as out-of-tree crates.
| Distribution | Path | Target | Features | Notes |
|---|---|---|---|---|
rp2040-rtic |
distributions/rp2040-rtic/ |
Raspberry Pi Pico / RP2040 dual-core Cortex-M0+ |
autoassign, swtasks
|
Single binary; starts core 1 from post_init. |
stm32-renode-rtic |
distributions/stm32-renode-rtic/ |
Renode-simulated multicore STM32F1C3-like | N/A | Multi-binary build: compile each core separately. |
rtic-hippo |
distributions/rtic-hippo/ |
Single-core RISC-V Hippomenes MCU | deadline-pass |
Uses threshold-based (mintthresh) locking. |
atalanta-rtic |
distributions/atalanta-rtic/ |
Single-core RISC-V Atalanta MCU | deadline-pass |
|
distribution-template |
distributions/distribution-template/ |
Reference / template | — | Conceptual starting point for new distributions; not expected to compile. |
-
swtasks— enables thertic-sw-passsoftware tasks pass (dispatchers, message queues,spawn,spawn_from). -
autoassign— enables thertic-auto-assignpass for automaticcore = Nassignment. -
deadline-pass— enables thertic-deadline-passdeadlines-to-priorities conversion.
If you want to support new hardware, you create a new distribution crate outside of this repository. The Distributor Guide explains how to implement the required backend traits and register compilation passes.