File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 5
5
//!
6
6
//! The Zephyr configuration `CONFIG_PRINTK` must be enabled for this functionality to be present.
7
7
//!
8
- //! This module provides two macros: [`printk`] and [`printkln`]. These are analagous to
8
+ //! This module provides two macros: [`crate:: printk! `] and [`crate:: printkln! `]. These are analagous to
9
9
//! [`std::print`](https://doc.rust-lang.org/std/macro.print.html) and
10
10
//! [`std::println`](https://doc.rust-lang.org/std/macro.println.html) macros.
11
11
//!
@@ -22,7 +22,7 @@ use core::fmt::{
22
22
23
23
/// Print to Zephyr's console.
24
24
///
25
- /// Equivalent to the [`printkln!`] macro except that a newline is not printed at the end of the
25
+ /// Equivalent to the [`crate:: printkln!`] macro except that a newline is not printed at the end of the
26
26
/// message.
27
27
///
28
28
/// Note that printk access in Zephyr are uncoordinated unless `CONFIG_PRINTK_SYNC` is enabled.
@@ -35,6 +35,9 @@ macro_rules! printk {
35
35
} } ;
36
36
}
37
37
38
+ /// Print to Zephyr's console.
39
+ ///
40
+ /// TODO
38
41
#[ macro_export]
39
42
macro_rules! printkln {
40
43
( $( $arg: tt) * ) => { {
You can’t perform that action at this time.
0 commit comments