@@ -889,10 +889,10 @@ pub mod msg_ssr_flag_high_level {
889889 /// GNSS reference time of the observation used to generate the flag.
890890 #[ cfg_attr( feature = "serde" , serde( rename = "obs_time" ) ) ]
891891 pub obs_time : GpsTimeSec ,
892- /// GNSS reference time of the atmospheric correction associated to the
892+ /// GNSS reference time of the ionospheric correction associated to the
893893 /// flag.
894- #[ cfg_attr( feature = "serde" , serde( rename = "atmo_corr_time " ) ) ]
895- pub atmo_corr_time : GpsTimeSec ,
894+ #[ cfg_attr( feature = "serde" , serde( rename = "iono_corr_time " ) ) ]
895+ pub iono_corr_time : GpsTimeSec ,
896896 /// GNSS reference time of the satellite correction associated to the flag.
897897 #[ cfg_attr( feature = "serde" , serde( rename = "sat_corr_time" ) ) ]
898898 pub sat_corr_time : GpsTimeSec ,
@@ -1151,7 +1151,7 @@ pub mod msg_ssr_flag_high_level {
11511151 + <u8 as WireFormat >:: MIN_LEN ;
11521152 fn len ( & self ) -> usize {
11531153 WireFormat :: len ( & self . obs_time )
1154- + WireFormat :: len ( & self . atmo_corr_time )
1154+ + WireFormat :: len ( & self . iono_corr_time )
11551155 + WireFormat :: len ( & self . sat_corr_time )
11561156 + WireFormat :: len ( & self . ssr_sol_id )
11571157 + WireFormat :: len ( & self . tile_set_id )
@@ -1169,7 +1169,7 @@ pub mod msg_ssr_flag_high_level {
11691169 }
11701170 fn write < B : BufMut > ( & self , buf : & mut B ) {
11711171 WireFormat :: write ( & self . obs_time , buf) ;
1172- WireFormat :: write ( & self . atmo_corr_time , buf) ;
1172+ WireFormat :: write ( & self . iono_corr_time , buf) ;
11731173 WireFormat :: write ( & self . sat_corr_time , buf) ;
11741174 WireFormat :: write ( & self . ssr_sol_id , buf) ;
11751175 WireFormat :: write ( & self . tile_set_id , buf) ;
@@ -1189,7 +1189,7 @@ pub mod msg_ssr_flag_high_level {
11891189 MsgSsrFlagHighLevel {
11901190 sender_id : None ,
11911191 obs_time : WireFormat :: parse_unchecked ( buf) ,
1192- atmo_corr_time : WireFormat :: parse_unchecked ( buf) ,
1192+ iono_corr_time : WireFormat :: parse_unchecked ( buf) ,
11931193 sat_corr_time : WireFormat :: parse_unchecked ( buf) ,
11941194 ssr_sol_id : WireFormat :: parse_unchecked ( buf) ,
11951195 tile_set_id : WireFormat :: parse_unchecked ( buf) ,
0 commit comments