File tree Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Expand file tree Collapse file tree 7 files changed +12
-12
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ authors = [
3
3
" The Embedded HAL Team and Contributors <embedded-hal@teams.rust-embedded.org>" ,
4
4
]
5
5
categories = [" embedded" , " hardware-support" , " no-std" ]
6
- description = " Device-sharing mechanisms for embedded-hal, a Hardware Abstraction Layer (HAL) for embedded systems"
7
- documentation = " https://docs.rs/embedded-hal-shared "
6
+ description = " Bus/ Device connection mechanisms for embedded-hal, a Hardware Abstraction Layer (HAL) for embedded systems"
7
+ documentation = " https://docs.rs/embedded-hal-bus "
8
8
edition = " 2018"
9
9
keywords = [" hal" , " IO" ]
10
10
license = " MIT OR Apache-2.0"
11
- name = " embedded-hal-shared "
11
+ name = " embedded-hal-bus "
12
12
readme = " README.md"
13
13
repository = " https://github.com/rust-embedded/embedded-hal"
14
14
version = " 0.1.0-alpha.1"
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
- [ ![ crates.io] ( https://img.shields.io/crates/d/embedded-hal-shared .svg )] ( https://crates.io/crates/embedded-hal-shared )
2
- [ ![ crates.io] ( https://img.shields.io/crates/v/embedded-hal-shared .svg )] ( https://crates.io/crates/embedded-hal-shared )
3
- [ ![ Documentation] ( https://docs.rs/embedded-hal-shared /badge.svg )] ( https://docs.rs/embedded-hal-shared )
1
+ [ ![ crates.io] ( https://img.shields.io/crates/d/embedded-hal-bus .svg )] ( https://crates.io/crates/embedded-hal-bus )
2
+ [ ![ crates.io] ( https://img.shields.io/crates/v/embedded-hal-bus .svg )] ( https://crates.io/crates/embedded-hal-bus )
3
+ [ ![ Documentation] ( https://docs.rs/embedded-hal-bus /badge.svg )] ( https://docs.rs/embedded-hal-bus )
4
4
<!--
5
- 
5
+ 
6
6
-->
7
7
8
- # ` embedded-hal-shared `
8
+ # ` embedded-hal-bus `
9
9
10
- Device-sharing mechanisms for [ ` embedded-hal ` ] , a Hardware Abstraction Layer (HAL) for embedded systems.
10
+ Bus/ Device connection mechanisms for [ ` embedded-hal ` ] , a Hardware Abstraction Layer (HAL) for embedded systems.
11
11
12
12
It is possible to connect several peripherals to a bus like SPI or I2C.
13
13
To support this, ` embedded-hal ` provides the ` SpiBus ` and ` SpiDevice ` traits in the case of SPI, for example.
@@ -24,12 +24,12 @@ This project is developed and maintained by the [HAL team][team].
24
24
25
25
## [ API reference]
26
26
27
- [ API reference ] : https://docs.rs/embedded-hal-shared
27
+ [ API reference ] : https://docs.rs/embedded-hal-bus
28
28
29
29
<!--
30
30
## Minimum Supported Rust Version (MSRV)
31
31
32
- This crate is guaranteed to compile on stable Rust 1.46 and up. It *might*
32
+ This crate is guaranteed to compile on stable Rust 1.54 and up. It *might*
33
33
compile with older versions but that may change in any new patch release.
34
34
-->
35
35
Original file line number Diff line number Diff line change 1
- //! Device-sharing mechanisms for [`embedded-hal`], a Hardware Abstraction Layer (HAL) for embedded systems.
1
+ //! Bus/ Device connection mechanisms for [`embedded-hal`], a Hardware Abstraction Layer (HAL) for embedded systems.
2
2
//!
3
3
//! It is possible to connect several peripherals to a bus like SPI or I2C.
4
4
//! To support this, `embedded-hal` provides the `SpiBus` and `SpiDevice` traits in the case of SPI, for example.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments