We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10fa1e0 + 9e53f77 commit 41f688aCopy full SHA for 41f688a
1 file changed
src/start/exceptions.md
@@ -81,7 +81,7 @@ use cortex_m::peripheral::syst::SystClkSource;
81
use cortex_m_rt::{entry, exception};
82
use cortex_m_semihosting::{
83
debug,
84
- hio::{self, HStdout},
+ hio::{self, HostStream},
85
};
86
87
#[entry]
@@ -103,7 +103,7 @@ fn main() -> ! {
103
#[exception]
104
fn SysTick() {
105
static mut COUNT: u32 = 0;
106
- static mut STDOUT: Option<HStdout> = None;
+ static mut STDOUT: Option<HostStream> = None;
107
108
*COUNT += 1;
109
0 commit comments