All Projects → rust-embedded → Linux Embedded Hal

rust-embedded / Linux Embedded Hal

Licence: other
Implementation of the `embedded-hal` traits for Linux devices

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Linux Embedded Hal

Ring Buffer
simple C++11 ring buffer implementation, allocated and evaluated at compile time
Stars: ✭ 80 (-23.81%)
Mutual labels:  embedded
Ot Rtos
OpenThread RTOS, an integration of OpenThread, LwIP, and FreeRTOS.
Stars: ✭ 90 (-14.29%)
Mutual labels:  embedded
Routersploit
Exploitation Framework for Embedded Devices
Stars: ✭ 9,866 (+9296.19%)
Mutual labels:  embedded
Gpio Utils
Userspace Utilities for managing GPIOs in Linux
Stars: ✭ 82 (-21.9%)
Mutual labels:  embedded
Kaa
Kaa Internet of Things platform for device management, data collection, analytics and visualization, remote control, software updates and more
Stars: ✭ 1,264 (+1103.81%)
Mutual labels:  embedded
Cs2x
Transpiles a C# subset to non .NET languages and runtimes. (Powered by Roslyn)
Stars: ✭ 97 (-7.62%)
Mutual labels:  embedded
Bitbox
The bitbox console (example, firmwares, doc)
Stars: ✭ 78 (-25.71%)
Mutual labels:  embedded
Embassy
Rust Embedded async executor and HALs
Stars: ✭ 100 (-4.76%)
Mutual labels:  embedded
Utensor
TinyML AI inference library
Stars: ✭ 1,295 (+1133.33%)
Mutual labels:  embedded
Libreelec.tv
Just enough OS for KODI
Stars: ✭ 1,358 (+1193.33%)
Mutual labels:  embedded
Nrf52dk Sys
A Rust Crate to develop on the Nordic nRF52-DK
Stars: ✭ 83 (-20.95%)
Mutual labels:  embedded
Ehal
Embedded Hardware Abstraction Library
Stars: ✭ 84 (-20%)
Mutual labels:  embedded
Python Saleae
Python library to control a Saleae Logic Analyzer
Stars: ✭ 97 (-7.62%)
Mutual labels:  embedded
Easyflash
Lightweight IoT device information storage solution: KV/IAP/LOG. | 轻量级物联网设备信息存储方案:参数存储、在线升级及日志存储 ,全新一代版本请移步至 https://github.com/armink/FlashDB
Stars: ✭ 1,236 (+1077.14%)
Mutual labels:  embedded
Mfixedpoint
MFixedPoint is a header-only fixed-point C++ library suitable for fast arithmetic operations on systems which don't have a FPU (e.g. embedded systems).. Suitable for performing computationally intensive operations on a computing platform that does not have a floating-point unit (like most smaller embedded systems, such as Cortex-M3, CortexM0, ATmega, PSoC 5, PSoC 5 LP, PSoC 4, Arduino platforms e.t.c). Common applications include BLDC motor control and image processing. Best performance on a 32-bit or higher architecture (although 8-bit architectures should still be fine).
Stars: ✭ 100 (-4.76%)
Mutual labels:  embedded
Deveeldb
DeveelDB is a complete SQL database system, primarly developed for .NET/Mono frameworks
Stars: ✭ 80 (-23.81%)
Mutual labels:  embedded
Lwmem
Lightweight dynamic memory manager library for embedded systems with memory constraints. It implements malloc, calloc, realloc and free functions
Stars: ✭ 92 (-12.38%)
Mutual labels:  embedded
Spokestack Python
Spokestack is a library that allows a user to easily incorporate a voice interface into any Python application.
Stars: ✭ 103 (-1.9%)
Mutual labels:  embedded
Cargo Embed
a cargo extension for working with microcontrollers
Stars: ✭ 100 (-4.76%)
Mutual labels:  embedded
Slowpoke
Low-level key/value store in pure Go.
Stars: ✭ 98 (-6.67%)
Mutual labels:  embedded

linux-embedded-hal

Implementation of the embedded-hal traits for Linux devices

This project is developed and maintained by the Embedded Linux team.

Documentation

Note that current v0.4.0-alpha.X releases track the unstable ['embedded-hal'] v1.0.0-alpha.Y. For bugfixes or backports please open PRs against the v0.3.x branch.

GPIO character device

Since Linux kernel v4.4 the use of sysfs GPIO was deprecated and replaced by the character device GPIO. See gpio-cdev documentation for details.

This crate includes feature flag gpio_cdev that exposes CdevPin as wrapper around LineHandle from gpio-cdev. To enable it update your Cargo.toml. Please note that in order to prevent LineHandle fd from closing you should assign to a variable, see cdev issue for more details.

linux-embedded-hal = { version = "0.3", features = ["gpio_cdev"] }

SysfsPin can be still used with feature flag gpio_sysfs.

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.36.0 and up. It might compile with older versions but that may change in any new patch release.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Code of Conduct

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].