File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/viam/sdk/services/private Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -107,23 +107,23 @@ motion_configuration from_proto(const service::motion::v1::MotionConfiguration&
107107 }
108108
109109 if (proto.has_position_polling_frequency_hz ()) {
110- * mc.position_polling_frequency_hz = proto.position_polling_frequency_hz ();
110+ mc.position_polling_frequency_hz = proto.position_polling_frequency_hz ();
111111 }
112112
113113 if (proto.has_obstacle_polling_frequency_hz ()) {
114- * mc.obstacle_polling_frequency_hz = proto.obstacle_polling_frequency_hz ();
114+ mc.obstacle_polling_frequency_hz = proto.obstacle_polling_frequency_hz ();
115115 }
116116
117117 if (proto.has_plan_deviation_m ()) {
118- * mc.plan_deviation_m = proto.plan_deviation_m ();
118+ mc.plan_deviation_m = proto.plan_deviation_m ();
119119 }
120120
121121 if (proto.has_linear_m_per_sec ()) {
122- * mc.linear_m_per_sec = proto.linear_m_per_sec ();
122+ mc.linear_m_per_sec = proto.linear_m_per_sec ();
123123 }
124124
125125 if (proto.has_angular_degs_per_sec ()) {
126- * mc.angular_degs_per_sec = proto.angular_degs_per_sec ();
126+ mc.angular_degs_per_sec = proto.angular_degs_per_sec ();
127127 }
128128
129129 return mc;
You can’t perform that action at this time.
0 commit comments