rtcm_rs/msg/
msg1035.rs

1msg! (
2    id: msg1035_sat,
3    type_name: Msg1035Sat,
4    fields: [
5        (glo_satellite_id, df_u6),
6        (iod,df_u8),
7        (geom_grad_north_ppm,df242_3),
8        (geom_grad_east_ppm,df242_3),
9        (iono_grad_north_ppm,df244_5),
10        (iono_grad_east_ppm,df244_5)
11    ],
12);
13
14frag_vec_with_len!(
15    id: msg1035_sat_vec,
16    frag_id: msg1035_sat,
17    cap: SAT_CAP_FKP,
18    len_bits: 5,
19);
20
21msg!(
22    id: msg1035,
23    type_name: Msg1035T,
24    fields: [
25        (reference_station_id,df_u12),
26        (glo_fkp_epoch_time_s,df_u17),
27        (satellites,msg1035_sat_vec)
28    ],
29);