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
The current serial implementation will panic if you log! within a log!
statment. For example, the following code panics:
fn foo() {
log!("foo: {}, bar()");
}
fn bar() -> u64 {
log!("bar");
42
}
We change the implementation to have the PORT be static rather than
the entire Serial structure.
Signed-off-by: Joe Richey <[email protected]>
0 commit comments