mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 18:10:14 +01:00
include README.md in doctest, fix example
This commit is contained in:
parent
333cf954f8
commit
1a69cb0932
|
@ -18,7 +18,7 @@ fn main() {
|
||||||
.expect("connection failed");
|
.expect("connection failed");
|
||||||
|
|
||||||
// clear screen content
|
// clear screen content
|
||||||
connection.send(servicepoint::Command::Clear.into())
|
connection.send(servicepoint::Command::Clear)
|
||||||
.expect("send failed");
|
.expect("send failed");
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
@ -42,3 +42,8 @@ pub const PIXEL_COUNT: usize = PIXEL_WIDTH * PIXEL_HEIGHT;
|
||||||
|
|
||||||
/// Actual hardware limit is around 28-29ms/frame. Rounded up for less dropped packets.
|
/// Actual hardware limit is around 28-29ms/frame. Rounded up for less dropped packets.
|
||||||
pub const FRAME_PACING: Duration = Duration::from_millis(30);
|
pub const FRAME_PACING: Duration = Duration::from_millis(30);
|
||||||
|
|
||||||
|
// include README.md in doctest
|
||||||
|
#[doc = include_str!("../README.md")]
|
||||||
|
#[cfg(doctest)]
|
||||||
|
pub struct ReadmeDocTests;
|
||||||
|
|
Loading…
Reference in a new issue