Add links to driver-examples repo

pull/4/head
Diego Barrios Romero 2019-04-08 19:07:45 +02:00
parent 79c0b870df
commit 1be01a3b18
2 changed files with 8 additions and 0 deletions

View File

@ -132,6 +132,10 @@ In the following example an instance of the device DS3231 will be created.
Other devices can be created with similar methods like:
`Ds323x::new_ds3234(...)`.
Please find additional examples using hardware in this repository: [driver-examples]
[driver-examples]: https://github.com/eldruin/driver-examples
```rust
extern crate linux_embedded_hal as hal;
extern crate ds323x;

View File

@ -146,6 +146,10 @@
//! DS3231 as an example, except when using features specific to another IC,
//! for example, RAM access which is not available in the DS3231 device.
//!
//! Please find additional examples using hardware in this repository: [driver-examples]
//!
//! [driver-examples]: https://github.com/eldruin/driver-examples
//!
//! ### Create a driver instance for the DS3231
//!
//! ```no_run