You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: uefi/src/proto/misc.rs
+14-3
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,17 @@ use uefi_raw::protocol::misc::{
9
9
usecrate::proto::unsafe_protocol;
10
10
usecrate::{Result,StatusExt};
11
11
12
+
/// Timestamp [`Protocol`].
13
+
///
12
14
/// Protocol for retrieving a high-resolution timestamp counter.
13
-
/// **Note:**
14
-
/// If your UEFI firmware not support timestamp protocol which first added at UEFI spec 2.4 2013.
15
-
/// you also could use `RDTSC` in rust, here is a demo [Slint-UI](https://github.com/slint-ui/slint/blob/2c0ba2bc0f151eba8d1fa17839fa2ac58832ca80/examples/uefi-demo/main.rs#L28-L62) who use uefi-rs.
15
+
///
16
+
/// # Note
17
+
/// If your UEFI firmware not support timestamp protocol which first added at
18
+
/// UEFI spec 2.4 2013. you also could use `RDTSC` in rust, here is a demo
0 commit comments