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: probe-plotter-tools/src/lib.rs
+15-8Lines changed: 15 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ use defmt_parser::Level;
10
10
use object::{Object,ObjectSymbol};
11
11
use probe_rs::{
12
12
Core,MemoryInterface,
13
-
rtt::{ChannelMode,Rtt},
13
+
rtt::{self,ChannelMode,Rtt},
14
14
};
15
15
use rerun::TextLogLevel;
16
16
use serde::Deserialize;
@@ -47,17 +47,24 @@ pub enum Type {
47
47
}
48
48
49
49
// Most of this is taken from https://github.com/knurling-rs/defmt/blob/8e517f8d7224237893e39337a61de8ef98b341f2/decoder/src/elf2table/mod.rs and modified
0 commit comments