Skip to content

Commit cc00ae3

Browse files
Merge pull request #385 from nyx-space/feat/gh-380-tdm-kvn-support-follow-on
Add path and mode to TDM
2 parents 12ad184 + 471ed16 commit cc00ae3

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/od/msr/trackingdata/io_ccsds_tdm.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ impl TrackingDataArc {
204204
)
205205
.map_err(err_hdlr)?;
206206

207+
writeln!(writer, "\tPATH = 1,2,1").map_err(err_hdlr)?;
207208
writeln!(
208209
writer,
209210
"\tPARTICIPANT_1 = {}",
@@ -221,6 +222,8 @@ impl TrackingDataArc {
221222

222223
writeln!(writer, "\tPARTICIPANT_2 = {spacecraft_name}").map_err(err_hdlr)?;
223224

225+
writeln!(writer, "\tMODE = SEQUENTIAL").map_err(err_hdlr)?;
226+
224227
// Add additional metadata, could include timetag ref for example.
225228
for (k, v) in &metadata {
226229
if k != "originator" {

tests/orbit_determination/simulator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn almanac() -> Arc<Almanac> {
2121
}
2222

2323
#[rstest]
24-
fn continuous_tracking(almanac: Arc<Almanac>) {
24+
fn continuous_tracking_cov_test(almanac: Arc<Almanac>) {
2525
// Test that continuous tracking
2626
let _ = pretty_env_logger::try_init();
2727

tests/orbit_determination/trackingarc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ fn trkconfig_delayed_start_cov_test(
248248

249249
/// Test different cadences and availabilities
250250
#[rstest]
251-
fn trkconfig_cadence_cov_test(
251+
fn trkconfig_cadence(
252252
traj: Traj<Spacecraft>,
253253
devices: BTreeMap<String, GroundStation>,
254254
almanac: Arc<Almanac>,

0 commit comments

Comments
 (0)