@@ -10,12 +10,17 @@ gen.add("switch_time", double_t, 0,
1010 0 , 0.0 , 36000 )
1111
1212algo_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
2126exit (gen .generate (PACKAGE , "dynamic_reconfigure_node" , "DeviceTimeTranslator" ))
0 commit comments