Skip to content

Commit

Permalink
Modify significant digits
Browse files Browse the repository at this point in the history
  • Loading branch information
fukudakazuya committed Dec 31, 2024
1 parent 3ab2ba9 commit 2032f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/real/aocs/gnss_receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ std::string GnssReceiver::GetLogValue() const // For logs
str_tmp += logger::WriteScalar(is_gnss_visible_);
str_tmp += logger::WriteScalar(visible_satellite_number_);
for (size_t gps_index = 0; gps_index < kNumberOfGpsSatellite; gps_index++) {
str_tmp += logger::WriteScalar(pseudorange_list_m_[gps_index], 10);
str_tmp += logger::WriteScalar(pseudorange_list_m_[gps_index], 16);
}

return str_tmp;
Expand Down

0 comments on commit 2032f85

Please sign in to comment.