sascha1337 / awesome-embedded-rust

Curated list of resources for Embedded and Low-level development in the Rust programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Embedded Rust

Awesome

This is a curated list of resources related to embedded and low-level programming in the programming language Rust, including a list of useful crates.

This project is developed and maintained by the Resources team.

Don't see something you want or need here? Add it to the Not Yet Awesome Embedded Rust list!

Table of contents

Community

In 2018 the Rust community created an embedded working group to help drive adoption in the Rust ecosystem.

  • Embedded WG, including newsletters with progress updates.

Community Chat Rooms

Books, blogs and training materials

Tools

  • xargo Rust package manager with support for non-default std libraries — build rust runtime for your own embedded system.
    • xargo is great but it's in maintenance mode, cargo-xbuild is catching up as intended replacement.
  • svd2rust Generate Rust structs with register mappings from SVD files.
  • edc2svd Generate SVD files for PIC32 devices from EDC files. - crates.io
  • embedded-hal-mock Mock implementation of embedded-hal traits for testing without accessing real hardware. - crates.io
  • bindgen Automatically generates Rust FFI bindings to C and C++ libraries. - crates.io
  • cortex-m semihosting Semihosting for ARM Cortex-M processors
  • bobbin-cli A Rust command line tool to simplify embedded development and deployment.
  • cargo-fel4 A Cargo subcommand for working with feL4 projects. - crates.io
  • cargo-flash A small cargo subcommand to download your binary to your target chip. - crates.io
  • cargo-embed A superset of cargo-flash with additional useful features like configuration file support, a RTT terminal or a GDB server. - crates.io
  • cargo-hf2 A small cargo subcommand to download cargo builds to Microsoft UF2 bootloaders via HID USB . - crates.io
  • uf2 Converts binary files to Microsoft's UF2 format for copying over to mass storage device uf2 bootloaders - crates.io
  • Knurling Tools are developed by Ferrous Systems to ease the development process for building, debugging, and testing embedded Rust systems. These tools include:
    • Probe Run: a cargo runner to flash and run embedded applications just like you would native applications, including backtraces and panicking behavior
    • defmt: a highly efficient logging framework that targets resource-constrained devices, like microcontrollers.
    • flip-link, a linker wrapper that provides stack overflow protection without an MMU by flipping the standard memory layout of ARM Cortex-M programs
    • app-template, a cargo-generate powered project template for quickly setting up new projects using the Knurling Tools.
    • defmt-test, an embedded test harness that lets you write and run unit tests as if you were using the built-in #[test] attribute, but will run on an embedded target
    • embedded-hal-compat, a compatibility layer to provide interoperability between v0.2.x and v1.x.x hal implementations and drivers

Real-time

Real-time Operating System (RTOS)

  • Drone OS An Embedded Operating System for writing real-time applications in Rust.
  • FreeRTOS.rs Rust interface for the FreeRTOS API
  • FreeRTOS-rust Rust interface for FreeRTOS with Rust entry point and build support crate.
  • Tock An embedded operating system designed for running multiple concurrent, mutually distrustful applications on low-memory and low-power microcontrollers

Real-time tools

  • RTIC v0.5 Real-Time Interrupt-driven Concurrency — A concurrency framework for building real time systems:

Peripheral Access Crates

Register definition for microcontroller families. Usually generated using svd2rust. - crates.io

Peripheral Access Crates were also called Device Crates.

NOTE You may be able to find even more peripheral access crates by searching for the svd2rust keyword on crates.io!

Microchip

  • atsamd11 Peripheral access API for Microchip (formerly Atmel) SAMD11 microcontrollers. This git repo hosts both the peripheral access crate and the hal.
  • atsamd21 Peripheral access API for Microchip (formerly Atmel) SAMD21 microcontrollers. This git repo hosts both the peripheral access crate and the hal.
  • atsamd51 Peripheral access API for Microchip (formerly Atmel) SAMD51 microcontrollers. This git repo hosts both the peripheral access crate and the hal.
  • atsame54 Peripheral access API for Microchip (formerly Atmel) SAME54 microcontrollers. This git repo hosts both the peripheral access crate and the hal.
  • avr-device Peripheral access API for Microchip (formerly Atmel) AVR microcontroller family.
  • sam3x8e Peripheral access API for Atmel SAMD3X8E microcontrollers (generated using svd2rust) - crates.io
  • pic32-pac Peripheral access API for PIC32MX1xx, PIC32MX2xx, PIC32MX274 XLP

Nordic

  • nrf51 Peripheral access API for nRF51 microcontrollers (generated using svd2rust) - crates.io
  • nrf52810-pac - Peripheral access API for the nRF52810 microcontroller (generated using svd2rust) - crates.io
  • nrf52811-pac - Peripheral access API for the nRF52811 microcontroller (generated using svd2rust) - crates.io
  • nrf52832-pac - Peripheral access API for the nRF52832 microcontroller (generated using svd2rust) - crates.io
  • nrf52833-pac - Peripheral access API for the nRF52833 microcontroller (generated using svd2rust) - crates.io
  • nrf52840-pac - Peripheral access API for the nRF52840 microcontroller (generated using svd2rust) - crates.io
  • nrf5340-app-pac - Peripheral access API for the nRF5340 application core (generated using svd2rust) - crates.io
  • nrf5340-net-pac - Peripheral access API for the nRF5340 network core (generated using svd2rust) - crates.io
  • nrf9160-pac - Peripheral access API for the nRF9160 system-in-package (generated using svd2rust) - crates.io

NXP

SiFive

Silicon Labs

  • efm32pg12-pac - Peripheral access API for Silicon Labs EFM32PG12 microcontrollers - crates.io

STMicroelectronics

The stm32-rs project has peripheral access APIs for most STM32 microcontrollers (generated using svd2rust):

Texas Instruments

  • tm4c123x Peripheral access API for TM4C123x microcontrollers (generated using svd2rust)
  • tm4c129x Peripheral access API for TM4C129x microcontrollers (generated using svd2rust)

MSP430

Ambiq Micro

  • ambiq-apollo1-pac Peripheral access API for Ambiq Apollo 1 microcontrollers (generated using svd2rust)
  • ambiq-apollo2-pac Peripheral access API for Ambiq Apollo 2 microcontrollers (generated using svd2rust)
  • ambiq-apollo3-pac Peripheral access API for Ambiq Apollo 3 microcontrollers (generated using svd2rust)
  • ambiq-apollo3p-pac Peripheral access API for Ambiq Apollo 3 Plus microcontrollers (generated using svd2rust)

GigaDevice

  • gd32vf103-pac Peripheral access API for GD32VF103 RISC-V microcontrollers (generated using svd2rust) - crates.io
  • gd32f1 Peripheral access API for GD32F1x0 Cortex-M3 microcontrollers (generated using svd2rust) - crates.io

XMC

Peripheral access crates for the different XMC4xxx families of microcontrollers

HAL implementation crates

Implementations of embedded-hal for microcontroller families and systems running some OS. - crates.io

NOTE You may be able to find even more HAL implementation crates by searching for the embedded-hal-impl and embedded-hal keywords on crates.io!

OS

  • bitbang-hal software protocol implementations for microcontrollers with digital::OutputPin and digital::InputPin
  • ftdi-embedded-hal for FTDI FTx232H chips connected to Linux systems via USB
  • linux-embedded-hal for embedded Linux systems like the Raspberry Pi. - crates.io

Microchip

  • atsam4-hal - HAL for SAM4E, SAM4N and SAM4S - crates.io
  • atsamd-hal - HAL for SAMD11, SAMD21, SAMD51 and SAME54 - crates.io
  • avr-hal - HAL for AVR microcontroller family and AVR-based boards
  • pic32-hal - HAL for PIC32MX

Nordic

NXP

Also check the list of NXP board support crates!

SiFive

STMicroelectronics

Also check the list of STMicroelectronics board support crates!

Texas Instruments

MSP430

  • msp430fr2x5x-hal
    • HAL implementation for the MSP430FR2x5x family of microcontrollers

Espressif

Silicon Labs

  • tomu-hal
    • HAL implementation targeted for Tomu USB board with EFM32HG309F64 ARMv6-M core. Has support to configure tomu bootloader directly from application via toboot_config macro.

XMC

GigaDevice

  • gd32vf103xx-hal - cratex.io
    • HAL for GD32VF103xx microcontrollers
  • gd32vf103-hal - crates.io
    • (WIP) Hardware abstract layer (HAL) for the GD32VF103 RISC-V microcontroller
  • gd32f1x0-hal - crates.io
    • HAL implementation for GD32F1x0 microcontrollers

Architecture support crates

Crates tailored for general CPU architectures.

ARM

  • cortex-a Low level access to Cortex-A processors (early state) - crates.io
  • cortex-m Low level access to Cortex-M processors - crates.io

RISC-V

  • riscv Low level access to RISC-V processors - crates.io

MIPS

  • mips Low level access to MIPS32 processors - crates.io
  • mips-mcu Low level access to MIPS MCU cores - crates.io

Board support crates

Crates tailored for specific boards.

1BitSquared

Adafruit

Arduino

Nordic

NXP

Sparkfun

SeeedStudio

SiFive

Sipeed

Sony

  • prussia - SDK for the PlayStation 2.

STMicroelectronics

Teensy

  • teensy4-rs Board Support create for the [Teensy 4.0]

Texas Instruments

  • monotron - A 1980s home-computer style application for the Texas Instruments Stellaris Launchpad. PS/2 keyboard input, text output on a bit-bashed 800x600 VGA signal. Uses menu, vga-framebuffer and pc-keyboard.
  • stellaris-launchpad - For the Texas Instruments Stellaris Launchpad and Tiva-C Launchpad crates.io

Special Purpose

  • betafpv-f3 - For the BetaFPV F3 drone flight controller

Component abstraction crates

The following crates provide HAL-like abstractions for subcomponents of embedded devices which go beyond what is available in embedded-hal:

  • accelerometer - Generic accelerometer support, including traits and types for taking readings from 2 or 3-axis accelerometers and tracking device orientations - crates.io
  • embedded-graphics: 2D drawing library for any size display - crates.io
  • radio - Generic radio transceiver traits, mocks, and helpers - crates.io
  • smart-leds: Support for addressable LEDs including WS2812 and APA102
  • usb-device: Abstraction layer between USB peripheral crates & USB class crates - crates.io
  • atat: Abstraction crate to ease writting AT based driver crates - crates.io
  • embedded-nal: An Embedded Network Abstraction Layer - crates.io
  • embedded-storage: An Embedded Storage Abstraction Layer

Driver crates

Platform agnostic crates to interface external components. These crates use the embedded-hal interface to support all the devices and systems that implement the embedded-hal traits.

The list below contains drivers developed as part of the Weekly Driver initiative and that have achieved the "released" status (published on crates.io + documentation / short blog post).

  1. AD983x - SPI - AD9833/AD9837 waveform generators / DDS - Intro blog post - crates.io
  2. adafruit-alphanum4 - I2C - Driver for Adafruit 14-segment LED Alphanumeric Backpack based on the ht16k33 chip - crates.io
  3. ADS1x1x - I2C - 12/16-bit ADCs like ADS1013, ADS1015, ADS1115, etc. - Intro blog post - crates.io
  4. ADXL313 - SPI - 3-axis accelerometer - crates.io
  5. ADXL343 - I2C - 3-axis accelerometer - crates.io
  6. ADXL355 - SPI - 3-axis accelerometer - Intro blog post - crates.io
  7. AHT20 - I2C - Humidity and temperature sensor - github - crates.io
  8. AnyLeaf - I2C - pH sensor module - github - crates.io
  9. AT86RF212 - SPI - Low power IEEE 802.15.4-2011 ISM RF Transceiver - Intro blog post - crates.io
  10. BlueNRG - SPI - driver for BlueNRG-MS Bluetooth module - Intro post crates.io
  11. BNO055 - I2C - Bosch Sensortec BNO055 9-axis IMU driver - Intro post crates.io
  12. CD74HC4067 - GPIO - 16-channel digital and analog multiplexer - Intro blog post - github - crates.io
  13. dht-sensor - 1-Wire - DHT11/DHT22 temperature/humidity sensor driver - github - crates.io
  14. DRV8825 - DRV8825 Stepper Motor Driver (based on Stepper) - Intro blog post - crates.io
  15. DS1307 - I2C - Real-time clock driver - Intro blog post - crates.io
  16. EEPROM24x - I2C - 24x series serial EEPROM driver - Intro blog post - crates.io
  17. embedded-ccs811 - I2C - Gas and VOC sensor driver for monitoring indoor air quality - Intro blog post - crates.io
  18. embedded-sdmmc - SPI - SD/MMC Card Driver with MS-DOS Partition and FAT16/FAT32 support - Intro post crates.io
  19. ENC28J60 - SPI - Ethernet controller - Intro blog post - crates.io
  20. HC-12 - SERIAL - Wireless serial transceiver module - Intro blog post - github - crates.io
  21. HTS221 - I2C - Humidity and temperature sensor - Intro blog post - crates.io
  22. IIS2MDC - I2C - ST's High accuracy, ultra-low-power, 3-axis digital output magnetometer - crates.io
  23. ISM330DHCX - I2C - ST's IMU with 3D accelerometer, 3D gyroscope, ML core and more - crates.io
  24. keypad - GPIO - Keypad matrix circuits - Intro post - crates.io
  25. KXCJ9 - I2C - KXCJ9/KXCJB 3-axis accelerometers - Intro blog post - crates.io
  26. L3GD20 - SPI - Gyroscope - Intro blog post - crates.io
  27. LSM303DLHC - I2C - Accelerometer + compass (magnetometer) - Intro blog post - crates.io
  28. MAX6955 - I2C - Driver for Alphanumeric LED display driver - Intro blog post - crates.io
  29. MCP25LCXX - SPI - Driver for Microchip's 25LC series of EEPROMs - crates.io
  30. MCP3008 - SPI - 8 channel 10-bit ADC - Intro blog post - crates.io
  31. MCP3425 - I2C - 16-bit ADC - Intro blog post - crates.io
  32. MCP794xx - I2C - Real-time clock / calendar driver - Intro blog post - crates.io
  33. MMA7660FC - I2C - 3-axis accelerometer - Intro blog post
  34. OPT300x - I2C - Ambient light sensor family driver - Intro blog post - crates.io
  35. pwm-pca9685 - I2C - 16-channel, 12-bit PWM/Servo/LED controller - Intro blog post - crates.io
  36. rainbow-hat-rs - I2C/SPI/GPIO - Pimoroni Rainbow HAT driver for Raspberry Pi - github - crates.io
  37. rotary-encoder-hal - GPIO - A rotary encoder driver using embedded-hal - Intro blog post - crates.io
  38. SGP30 - I2C - Gas sensor - Intro blog post - crates.io
  39. SH1106 - I2C - Monochrome OLED display controller - Intro post crates.io
  40. shared-bus - I2C - utility driver for sharing a bus between multiple devices - Intro post crates.io
  41. shift-register-driver - GPIO - Shift register - Intro blog post - crates.io
  42. Si4703 - I2C - FM radio turner (receiver) driver - Intro blog post - crates.io
  43. SRAM23x - SPI - Microchip 23x series serial SRAM/NVSRAM driver - Intro blog post - crates.io
  44. SSD1306 - I2C/SPI - OLED display controller - Intro blog post - crates.io
  45. STSPIN220 - STSPIN220 Stepper Motor Driver (based on Stepper) - Intro blog post - crates.io
  46. Sx127x - SPI - Long Range Low Power Sub GHz (Gfsk, LoRa) RF Transceiver - Intro blog post - crates.io
  47. Sx128x - SPI - Long range, low power 2.4 GHz (Gfsk, Flrc, LoRa) RF Transceiver - Intro blog post - crates.io
  48. TC72 - SPI - Microchip TC72 temperature sensor - crates.io
  49. TCN75A - I2C - Microchip TCN75A temperature sensor - crates.io
  50. TMP006 - I2C - Contact-less infrared (IR) thermopile temperature sensor driver - Intro post crates.io
  51. TMP1x2 - I2C - TMP102 and TMP112x temperature sensor driver - Intro blog post crates.io
  52. TSIC - GPIO - TSIC 306 temperature sensor driver - Intro blog post crates.io
  53. TSL256X - I2C - Light Intensity Sensor - Intro blog post - crates.io
  54. VEML6030/VEML7700 - I2C - Ambient light sensors - Intro blog post - crates.io
  55. VEML6075 - I2C - UVA and UVB light sensor - Intro blog post - crates.io
  56. usbd-serial - USB CDC-ACM class (serial) implementation - github - crates.io
  57. usbd-hid - USB HID class implementation - github - crates.io
  58. usbd-hid-device - USB HID class implementation without unsafe - github - crates.io
  59. usbd-midi - USB MIDI class implementation - github - crates.io
  60. usbd-webusb - USB webUSB class implementation - github - crates.io
  61. SHTCx - I2C - Temperature / humidity sensors - github - crates.io
  62. ST7789 - SPI - An embedded-graphics compatible driver for the popular lcd family from Sitronix used in the PineTime watch github crates.io
  63. DW1000 - SPI - Radio transceiver (IEEE 802.15.4 and position tracking) - Article - crates.io
  64. Adafruit-7segment - I2C - Driver for Adafruit 7-segment LED Numeric Backpack based on the ht16k33 chip - github - crates.io

NOTE You may be able to find even more driver crates by searching for the embedded-hal-driver keyword on crates.io!

WIP

Work in progress drivers. Help the authors make these crates awesome!

  1. AFE4400 - SPI - Pulse oximeter
  2. APDS9960 - I2C - Proximity, ambient light, RGB and gesture sensor - crates.io
  3. AS5048A - SPI - AMS AS5048A Magnetic Rotary Encoder
  4. AXP209 - I2C - Power management unit
  5. BH1750 - I2C - ambient light sensor (lux meter)
  6. BME280 - A rust device driver for the Bosch BME280 temperature, humidity, and atmospheric pressure sensor and the Bosch BMP280 temperature and atmospheric pressure sensor. crates.io
  7. bme680 - I2C - Temperature / humidity / gas / pressure sensor - crates.io
  8. BMI160 - I2C / SPI - Inertial Measurement Unit - crates.io
  9. BMP280 - A platform agnostic driver to interface with the BMP280 pressure sensor crates.io
  10. CC1101 - SPI - Sub-1GHz RF Transceiver - crates.io
  11. DS3231 - I2C - real time clock
  12. DS3234 - SPI - Real time clock
  13. DS323x - I2C/SPI - Real-time clocks (RTC): DS3231, DS3232 and DS3234 - crates.io
  14. epd-waveshare - SPI - driver for E-Paper Modules from Waveshare crates.io
  15. embedded-morse - Output morse messages - crates.io
  16. embedded-nrf24l01 - SPI+GPIO - 2.4 GHz radio
  17. GridEYE - I2C - Rust driver for Grid-EYE / Panasonic AMG88(33) - crates.io
  18. HC-SR04 - DIO - Ultrasound sensor
  19. HD44780-driver - GPIO - LCD controller - crates.io
  20. HD44780 - Parallel port - LCD controller
  21. HM11 - USART - HM-11 bluetooth module AT configuration crate - crates.io
  22. HRS3300 - I2C - Heart rate sensor / monitor used in the PineTime smartwatch, for example. - crates.io
  23. HDC20xx - I2C - Temperature and humidity sensor compatible with HDC2080, HDC2021 and HDC2010. - crates.io
  24. hub75 - A driver for rgb led matrices with the hub75 interface - crates.io
  25. hzgrow-r502 - UART capacitive fingerprint reader - crates.io
  26. iAQ-Core - I2C - iAQ-Core-C/iAQ-Core-P Gas and VOC sensor driver for monitoring indoor air quality.
  27. ILI9341 - SPI - TFT LCD display
  28. INA260 - I2C - power monitor - crates.io
  29. ISL29125 - I2C - RGB Color Light Sensor with IR Blocking Filter - crates.io
  30. IST7920 - SPI monochrome LCD display - crates.io
  31. LM75 - I2C - Temperature sensor and thermal watchdog - crates.io
  32. LS010B7DH01 - SPI - Memory LCD
  33. LSM303C - A platform agnostic driver to interface with the LSM303C (accelerometer + compass) crates.io
  34. LSM9DS1 - I2C/SPI - 9-axis motion sensor module crates.io
  35. ltr-559 - I2C - Ambient Light Sensor and Proximity sensor crates.io
  36. lvgl - no_std LittleVGL port - crates.io
  37. MAG3110 - I2C - Magnetometer
  38. MAX17048/9 - I2C - LiPo Fuel gauge, battery monitoring IC - crates.io
  39. MAX170xx - I2C - LiPo Fuel gauge, battery monitoring ICs compatible with MAX17043/4, MAX17048/9, MAX17058/9.
  40. MAX3010x - I2C - Pulse oximeter and heart-rate sensor. ATM Compatible with MAX30102. -crates.io
  41. MAX31855 - SPI - Thermocouple digital converter -crates.io
  42. MAX31865 - SPI - RTD to Digital converter - crates.io
  43. MAX44009 - I2C - Ambient light sensor - crates.io
  44. MAX7219 - SPI - LED display driver - crates.io
  45. MCP4725 - I2C - 12-bit DAC - crates.io
  46. MCP49xx - SPI - 8/10/12-bit DACs like MCP4921, MCP4922, MCP4801, etc. - crates.io
  47. MCP9808 - I2C - Temperature sensor - crates.io
  48. MFRC522 - SPI - RFID tag reader/writer
  49. midi-port - UART - MIDI input - crates.io
  50. MLX9061x - I2C - MLX90614/MLX90615 Contact-less infrared (IR) temperature sensor driver. - crates.io
  51. motor-driver - Motor drivers: L298N, TB6612FNG, etc.
  52. MPU6050 - I2C - no_std driver for the MPU6050 crates.io
  53. MPU9250 - no_std driver for the MPU9250 (and other MPU* devices) & onboard AK8963 (accelerometer + gyroscope + magnetometer IMU) crates.io
  54. NRF24L01 - SPI - 2.4 GHz wireless communication
  55. OneWire - 1wire - OneWire protocol implementation with drivers for devices such as DS18B20 - crates.io
  56. PCD8544 - SPI - 48x84 pixels matrix LCD controller
  57. PCD8544_rich - SPI - Rich driver for 48x84 pixels matrix LCD controller - crates.io
  58. PCF857x - I2C - I/O expanders: PCF8574, PCF8574A, PCF8575 crates.io
  59. radio-at86rf212 - SPI - Sub GHz 802.15.4 radio transceiver crates.io
  60. RFM69 - SPI - ISM radio transceiver
  61. RN2xx3 - Serial - A driver for the RN2483 / RN2903 LoRaWAN modems by Microchip
  62. SCD30 - I2C - CO₂ sensor - crates.io
  63. SHT2x - I2C - temperature / humidity sensors
  64. SHT3x - I2C - Temperature / humidity sensors
  65. SI5351 - I2C - clock generator
  66. SI7021 - I2C - Humidity and temperature sensor
  67. spi-memory - SPI - A generic driver for various SPI Flash and EEPROM chips - crates.io
  68. SSD1320 - SPI - Graphical OLED display controller - crates.io
  69. SSD1322 - SPI - Graphical OLED display controller - crates.io
  70. SSD1351 - SPI - 16bit colour OLED display driver - crates.io
  71. SSD1675 - SPI - Tri-color ePaper display controller - crates.io
  72. st7032i - I2C - Dot Matrix LCD Controller driver (Sitronix ST7032i or similar). - crates.io
  73. ST7735-lcd - SPI - An embedded-graphics compatible driver for the popular lcd family from Sitronix crates.io
  74. ST7920 - SPI - LCD displays using the ST7920 controller crates.io
  75. stm32-eth - MCU - Ethernet
  76. SX1278 - SPI - Long range (LoRa) transceiver
  77. SX1509 - I2C - IO Expander / Keypad driver
  78. TCS3472 - I2C - RGB color light sensor - crates.io
  79. TPA2016D2 - I2C - A driver for interfacing with the Texas Instruments TPA2016D2 Class-D amplifier - crates.io
  80. VEML6040 - I2C - RGBW color light sensor - crates.io
  81. VEML6070 - I2C - UVA light sensor - crates.io
  82. VEML7700 - I2C - Ambient light sensors - crates.io
  83. vesc-comm - A driver for communicating with VESC-compatible electronic speed controllers crates.io
  84. VL53L0X - A platform agnostic driver to interface with the vl53l0x (time-of-flight sensor) crates.io
  85. w5500 - SPI - Ethernet Module with hardwired protocols : TCP, UDP, ICMP, IPv4, ARP, IGMP, PPPoE - crates.io
  86. xCA9548A - I2C - I2C switches/multiplexers: TCA9548A, PCA9548A - crates.io
  87. ublox-cellular-rs - Serial - Cellular driver for the full Ublox cellular serial based family

no-std crates

#![no_std] crates designed to run on resource constrained devices.

  1. adskalman: Kalman filter and Rauch-Tung-Striebel smoothing implementation. crates.io
  2. atomic: Generic Atomic wrapper type. crates.io
  3. bbqueue: A SPSC, statically allocatable queue based on BipBuffers suitable for DMA transfers - crates.io
  4. bitmatch: A crate that allows you to match, bind, and pack the individual bits of integers. - crates.io
  5. biquad: A library for creating second order IIR filters for signal processing based on Biquads, where both a Direct Form 1 (DF1) and Direct Form 2 Transposed (DF2T) implementation is available. crates.io
  6. bit_field: manipulating bitfields and bitarrays - crates.io
  7. bluetooth-hci: device-independent Bluetooth Host-Controller Interface implementation. crates.io
  8. bounded-registers A high-assurance memory-mapped register code generation and interaction library. bounded-registers provides a Tock-like API for MMIO registers with the addition of type-based bounds checking. - crates.io
  9. cam-geom: Geometric models of cameras for photogrammetry. crates.io
  10. combine: parser combinator library - crates.io
  11. console-traits: Describes a basic text console. Used by menu and implemented by vga-framebuffer. crates.io
  12. cmim, or Cortex-M Interrupt Move: A crate for Cortex-M devices to move data to interrupt context, without needing a critical section to access the data within an interrupt, and to remove the need for the "mutex dance" - crates.io
  13. cmsis-dsp-sys: Rust FFI bindings to the Arm CMSIS_5 math library - crates.io
  14. dcmimu: An algorithm for fusing low-cost triaxial MEMS gyroscope and accelerometer measurements crates.io
  15. debouncr: A simple no-std input debouncer to detect rising/falling edges with minimal RAM requirements. crates.io
  16. device-driver: A toolkit to write better device drivers, faster. crates.io
  17. embassy: A set of embedded async tools to make async/await a first-class option for embedded development
  18. embedded-crc-macros: Macros implementing portable CRC algorithms and build-time lookup table generation. crates.io
  19. embedded-websocket: A lightweight server and client websocket library for embedded systems. crates.io
  20. endian_codec: (En/De)code rust types as packed bytes with specific order (endian). Supports derive. - crates.io
  21. gcode: A gcode parser for no-std applications - crates.io
  22. gdbstub: zero-allocation, pure Rust implementation of the GDB Remote Serial Protocol - crates.io
  23. heapless: provides Vec, String, LinearMap, RingBuffer backed by fixed-size buffers - crates.io
  24. ieee802154: Partial implementation of the IEEE 802.15.4 standard - crates.io
  25. infrared: infrared remote control library for embedded rust - crates.io
  26. intrusive-collections: intrusive (non-allocating) singly/doubly linked lists and red-black trees - crates.io
  27. irq: utilities for writing interrupt handlers (allows moving data into interrupts, and sharing data between them) - crates.io
  28. managed: provides ManagedSlice, ManagedMap backed by either their std counterparts or fixed-size buffers for #![no_std]. - crates.io
  29. menu: A basic command-line interface library. Has nested menus and basic help functionality. crates.io
  30. mqtt-sn: Implementation of the MQTT-SN protocol - crates.io
  31. microfft: Embedded-friendly (no_std, no-alloc) fast fourier transforms - crates.io
  32. micromath: Embedded Rust math library featuring fast, safe floating point approximations for common arithmetic operations, 2D and 3D vector types, and statistical analysis - crates.io
  33. nalgebra: general-purpose and low-dimensional linear algebra library - crates.io
  34. nom: parser combinator framework - crates.io
  35. null-terminated: generic null-terminated arrays - crates.io
  36. num-format: Crate for producing string representations of numbers, formatted according to international standards, e.g. "1,000,000" for US English - crates.io
  37. panic-persist: A panic handler crate inspired by panic-ramdump that logs panic messages to a region of RAM defined by the user, allowing for discovery of panic messages post-mortem using normal program control flow. - crates.io
  38. pc-keyboard: A PS/2 keyboard protocol driver. Transport (bit-banging or SPI) agnostic, but can convert Set 2 Scancodes into Unicode. crates.io
  39. qei : A qei wrapper that allows you to extend your qei timers from a 16 bit integer to a 64 bit integer. - crates.io
  40. qemu-exit: Quit a running QEMU session with user-defined exit code. Useful for unit or integration tests using QEMU. - crates.io
  41. RampMaker: Stepper Motor Acceleration Ramp Generator - crates.io
  42. register-rs: Unified interface for MMIO and CPU registers. Provides type-safe bitfield manipulation. register-rs is Tock registers with added support for CPU register definitions using the same API as for the MMIO registers. This enables homogeneous interfaces to registers of all kinds. - crates.io
  43. scroll: extensible and endian-aware Read/Write traits for generic containers - crates.io
  44. smbus-pec: Minimal portable System Management Bus Packet Error Code calculation algorithm. crates.io
  45. smoltcp: a small TCP/IP stack that runs without alloc. crates.io
  46. static-bytes: Help work with buffers without dynamic allocation. Implement traits from bytes crate. crate.io
  47. Stepper: Universal Stepper Motor Interface - crates.io
  48. tinybmp: No-std, no-alloc BMP parser for embedded systems. Introductory blog post - crates.io
  49. vga-framebuffer: A VGA signal generator and font renderer for VGA-less microcontrollers. Used by Monotron to generate 48 by 36 character display using 3 SPI peripherals and a timer. crates.io
  50. wyhash: A fast, simple and portable hashing algorithm and random number generator. - crates.io

WIP

Work in progress crates. Help the authors make these crates awesome!

  • light-cli: a lightweight heapless cli interface crates.io
  • OxCC: A port of Open Source Car Control written in Rust
  • Rubble: A pure-Rust embedded BLE stack crates.io

Firmware projects

  • anne-key: Alternate keyboard firmware for the Obins ANNE Pro

Old books, blogs and training materials

These materials may be outdated and reflect earlier practices, but might still be useful for reference.

License

This list is licensed under

Code of Conduct

Contribution to this crate is organized under the terms of the Rust Code of Conduct, the maintainer of this crate, the Resources team, promises to intervene to uphold that code of conduct.

About

Curated list of resources for Embedded and Low-level development in the Rust programming language

License:Creative Commons Zero v1.0 Universal