File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ So for example plotting the example in examples/simple on a Nucleo-G474RE
3838cd examples/simple
3939cargo run # Let it flash and then cancel to let the target continue running in the background while giving up access to the probe
4040
41- cd ../probe-plotter-host
41+ cd ../probe-plotter-tools
4242cargo run ../examples/simple/target/thumbv7em-none-eabihf/debug/simple stm32g474retx
4343# Rerun will open with a graph showing all created metrics objects
4444```
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 11[package ]
2- name = " probe-plotter"
2+ name = " probe-plotter-tools "
33version = " 0.1.0"
44edition = " 2024"
55publish = [" gitea" ]
Original file line number Diff line number Diff line change 11use core:: fmt;
2- use std:: { fs :: File , io:: Read , time:: Duration } ;
2+ use std:: { io:: Read , time:: Duration } ;
33
44use object:: { Object , ObjectSymbol } ;
55use probe_rs:: { Core , MemoryInterface } ;
@@ -143,10 +143,10 @@ struct Symbol {
143143}
144144
145145#[ derive( Debug ) ]
146- struct InvalidSymbolError ( serde_json :: Error ) ;
146+ struct InvalidSymbolError ;
147147
148148impl Symbol {
149149 pub fn demangle ( raw : & str ) -> Result < Self , InvalidSymbolError > {
150- serde_json:: from_str ( raw) . map_err ( |e | InvalidSymbolError ( e ) )
150+ serde_json:: from_str ( raw) . map_err ( |_ | InvalidSymbolError )
151151 }
152152}
You can’t perform that action at this time.
0 commit comments