Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/npryce/rusty-pi
https://github.com/npryce/rusty-pi
Last synced: about 21 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/npryce/rusty-pi
- Owner: npryce
- Created: 2014-06-02T23:33:15.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-07T07:36:43.000Z (about 9 years ago)
- Last Synced: 2024-10-31T22:42:24.088Z (8 days ago)
- Language: Rust
- Size: 3.57 MB
- Stars: 142
- Watchers: 15
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - npryce/rusty-pi - (others)
README
Hardware Control on the Raspberry Pi with the Rust Language
===========================================================A work in progress...
Current plan...
1. Getting Started: intro to the Raspberry Pi, building a cross-compiler and setting up the development environment, parts for hardware tinkering. Rust learning: program entry point, the prelude
2. Getting Physical: simple hardware control blinking LEDs and reacting to button presses via GPIO. Rust learning: I/O, error handling, enums, structs, traits, splitting a program into cooperating tasks, separating I/O from coordination
3. Getting Fast: map GPIO device registers into memory for direct access, bit-bang a simple radio protocol. Rust learning: memory mapping, unsafe blocks, use Rust's type system to ensure safe access.
4. Getting Connected: using the I2C bus to read from analogue-to-digital converters. Rust learning: using C functions and data structures. Native vs green runtimes.
5. Getting Mobile: motor control or control of an RC vehicle.This plan may change...