Skip to content

Commit

Permalink
Revision of MSM bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhakansson committed Mar 6, 2024
1 parent 9ed1adb commit f5b7a94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/msg/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -608,9 +608,9 @@ macro_rules! msm_data_seg_frag {
use core::fmt::Write;

write!(f, "{} {{", stringify!($type_name))?;
f.write_str("sat_data: ")?;
f.write_str("satellite_data: ")?;
self.satellite_data.to_source(f)?;
f.write_str(", sig_data: ")?;
f.write_str(", signal_data: ")?;
self.signal_data.to_source(f)?;
f.write_char('}')?;

Expand Down Expand Up @@ -722,7 +722,7 @@ macro_rules! msm_sat_frag {
use core::fmt::Write;

write!(f, "{} {{", stringify!($type_name))?;
f.write_str("sat_id:")?;
f.write_str("satellite_id:")?;
self.satellite_id.to_source(f)?;
f.write_char(',')?;

Expand Down Expand Up @@ -831,9 +831,9 @@ macro_rules! msm_sig_frag {
use core::fmt::Write;

write!(f, "{} {{", stringify!($type_name))?;
f.write_str("sat_id: ")?;
f.write_str("satellite_id: ")?;
self.satellite_id.to_source(f)?;
write!(f, ", sig_id: {}::", stringify!($gnss))?;
write!(f, ", signal_id: {}::", stringify!($gnss))?;
self.signal_id.to_source(f)?;
f.write_char(',')?;

Expand Down

0 comments on commit f5b7a94

Please sign in to comment.