mirror of
https://github.com/rust-embedded/awesome-embedded-rust.git
synced 2025-06-04 20:38:48 +00:00
Merge pull request #121 from xoac/atomic
Add atomic to list of no_std crates
This commit is contained in:
commit
49fa0114f1
1 changed files with 7 additions and 6 deletions
13
README.md
13
README.md
|
@ -465,24 +465,25 @@ Work in progress drivers. Help the authors make these crates awesome!
|
|||
|
||||
[`#![no_std]` crates][no-std-category] designed to run on resource constrained devices.
|
||||
|
||||
- [atomic](https://crates.io/crates/atomic): Generic Atomic<T> wrapper type. 
|
||||
- [bit_field](https://crates.io/crates/bit_field): manipulating bitfields and bitarrays - 
|
||||
- [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. 
|
||||
- [bluetooth-hci](https://crates.io/crates/bluetooth-hci): device-independent Bluetooth Host-Controller Interface implementation. 
|
||||
- [combine](https://crates.io/crates/combine): parser combinator library - 
|
||||
- [console-traits](https://github.com/thejpster/console-traits): Describes a basic text console. Used by [menu] and implemented by [vga-framebuffer].
|
||||
- [console-traits](https://github.com/thejpster/console-traits): Describes a basic text console. Used by [menu] and implemented by [vga-framebuffer]. 
|
||||
- [embedded-graphics](https://crates.io/crates/embedded-graphics): 2D drawing library for any size display - 
|
||||
- [heapless](https://crates.io/crates/heapless): provides `Vec`, `String`, `LinearMap`, `RingBuffer` backed by fixed-size buffers - 
|
||||
- [intrusive-collections](https://crates.io/crates/intrusive-collections): intrusive (non-allocating) singly/doubly linked lists and red-black trees - 
|
||||
- [managed](https://crates.io/crates/managed): provides `ManagedSlice`, `ManagedMap` backed by either their std counterparts or fixed-size buffers for `#![no_std]`. - 
|
||||
- [menu]: A basic command-line interface library. Has nested menus and basic help functionality.
|
||||
- [menu]: A basic command-line interface library. Has nested menus and basic help functionality. 
|
||||
- [nalgebra](https://crates.io/crates/nalgebra): general-purpose and low-dimensional linear algebra library - 
|
||||
- [nom](https://crates.io/crates/nom): parser combinator framework - 
|
||||
- [pc-keyboard]: A PS/2 keyboard protocol driver. Transport (bit-banging or SPI) agnostic, but can convert Set 2 Scancodes into Unicode.
|
||||
- [pc-keyboard]: A PS/2 keyboard protocol driver. Transport (bit-banging or SPI) agnostic, but can convert Set 2 Scancodes into Unicode. 
|
||||
- [qei](https://crates.io/crates/qei) : A qei wrapper that allows you to extend your qei timers from a 16 bit integer to a 64 bit integer. - 
|
||||
- [register-rs](https://github.com/rust-osdev/register-rs): Unified interface for MMIO and CPU registers. Provides type-safe bitfield manipulation. - 
|
||||
- [scroll](https://crates.io/crates/scroll): extensible and endian-aware Read/Write traits for generic containers - 
|
||||
- [smoltcp](https://github.com/m-labs/smoltcp): a small TCP/IP stack that runs without `alloc`
|
||||
- [vga-framebuffer]: A VGA signal generator and font renderer for VGA-less microcontrollers. Used by [Monotron](https://github.com/thejpster/monotron) to generate 48 by 36 character display using 3 SPI peripherals and a timer.
|
||||
- [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.
|
||||
- [smoltcp](https://github.com/m-labs/smoltcp): a small TCP/IP stack that runs without `alloc`. 
|
||||
- [vga-framebuffer]: A VGA signal generator and font renderer for VGA-less microcontrollers. Used by [Monotron](https://github.com/thejpster/monotron) to generate 48 by 36 character display using 3 SPI peripherals and a timer. 
|
||||
|
||||
[pc-keyboard]: https://github.com/thejpster/pc-keyboard
|
||||
[vga-framebuffer]: https://github.com/thejpster/vga-framebuffer-rs
|
||||
|
|
Loading…
Reference in a new issue