rtcm_rs/msg/
msg1092.rs

1use super::msm123_sat::*;
2
3msm_sig_frag!(
4    id: msg1092_sig,
5    type_name: Msg1092Sig,
6    gnss: gal,
7    fields: [
8        (gnss_signal_fine_phaserange_ms,df401),
9        (gnss_phaserange_lock_time_ind,df402),
10        (half_cycle_ambiguity_ind,df420)
11        ],
12);
13
14msm_data_seg_frag!(
15    id: msg1092_data,
16    type_name: Msg1092Data,
17    gnss: gal,
18    sat_id: msm123_sat,
19    sig_id: msg1092_sig,
20);
21
22msg!(
23    id: msg1092,
24    type_name: Msg1092T,
25    fields: [
26        (reference_station_id, df003),
27        (gal_epoch_time_ms, df248),
28        (msm_multiple_message_flag, df393),
29        (issue_of_data_station, df409),
30        (reserved_58_7, df001_7bits),
31        (clock_steering_ind, df411),
32        (external_clock_ind, df412),
33        (gnss_smoothing_type_ind, df417),
34        (gnss_smoothing_interval_index, df_u3),
35        (data_segment, msg1092_data)
36    ],
37);