rtcm_rs/msg/
msg1034.rs

1msg! (
2    id: msg1034_sat,
3    type_name: Msg1034Sat,
4    fields: [
5        (gps_satellite_id, df_u6),
6        (iode,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: msg1034_sat_vec,
16    frag_id: msg1034_sat,
17    cap: SAT_CAP_FKP,
18    len_bits: 5,
19);
20
21msg!(
22    id: msg1034,
23    type_name: Msg1034T,
24    fields: [
25        (reference_station_id,df_u12),
26        (gps_fkp_epoch_time_s,df_u20),
27        (satellites,msg1034_sat_vec)
28    ],
29);