ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

can we assign value to the request variable of srv file other then run time ?

asked 2018-08-21 22:42:39 -0500

rama_bhuyan gravatar image

updated 2018-08-21 22:45:06 -0500

with an example,

AddTwoInts.srv

int64 a

int64 b


int64 sum

client.cpp

srv.request.a =atoll(argv[1]);

srv. request.b =atoll(argv[2]);

/* which takes the value during run time */

can I assign the value of a and b during writing of the code? pre assign of the value to the variable ?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2018-08-22 01:31:01 -0500

ahendrix gravatar image

Yes. Like any other variable, you can assign any value to the service request parameters. (could come from user input, a file, or just a pre-assigned value).

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2018-08-21 22:42:39 -0500

Seen: 127 times

Last updated: Aug 22 '18