Skip to content

Commit 668eb7e

Browse files
committed
Fixed spelling.
1 parent 71ee89c commit 668eb7e

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

cuckoo_time_translator/cfg/DeviceTimeTranslator.cfg

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,17 @@ gen.add("switch_time", double_t, 0,
1010
0, 0.0, 36000)
1111

1212
algo_enum = gen.enum([
13-
gen.const("ReceiveTimeOnly", int_t, 0, "No device time. Receive time only is used."),
14-
gen.const("ConvexHull", int_t, 1, "Convex hull"),
15-
gen.const("Kalman", int_t, 2, "Kalman filter"),
13+
gen.const("ReceiveTimeOnly", int_t, 0,
14+
"Receive time is passed through as translated time. Device time is ignored."),
15+
gen.const("ConvexHull", int_t, 1,
16+
"Convex hull translator"),
17+
gen.const("Kalman", int_t, 2,
18+
"Kalman translator"),
19+
gen.const("DeviceTimeOnly", int_t, 10,
20+
"Device time is passed through as translated time. Receive time is ignored."),
1621
],
1722
"Device timestamp filter algorithm")
1823

19-
gen.add("filter_algo", int_t, 0, "The filter algorithm used for device timestamps", 0, 0, 3, edit_method=algo_enum)
24+
gen.add("filter_algo", int_t, 0, "The translation algorithm used for device timestamps", 0, 0, 3, edit_method=algo_enum)
2025

2126
exit(gen.generate(PACKAGE, "dynamic_reconfigure_node", "DeviceTimeTranslator"))

cuckoo_time_translator_python/scripts/ctt_introspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
if baselineOwt:
7171
base_times = np.array(baselineOwt.apply(ds.raw_hw_times, ds.receive_times))
72-
info("Baseline owt after translation: " + baselineOwt.getConfigAndStateString())
72+
info("Baseline OWT after translation: " + baselineOwt.getConfigAndStateString())
7373

7474
delaysToPlot = []
7575
labels = []

0 commit comments

Comments
 (0)