We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The function IvyMessagesInterface.send_request is sending the agent name in the place of the message class.
IvyMessagesInterface.send_request
A CONFIG request message is sent as IvyMessagesInterface 63240_1 CONFIG_REQ 200 instead of ground 63240_1 CONFIG_REQ 200
IvyMessagesInterface 63240_1 CONFIG_REQ 200
ground 63240_1 CONFIG_REQ 200
pprzlink/lib/v2.0/python/pprzlink/ivy.py
Line 295 in f8e9822
should be replaced by
class_name, new_id, request_message.name, request_message.payload_to_ivy_string()
The text was updated successfully, but these errors were encountered:
Actually, this is correct, if you compare to the ocaml lib, it is the sender (agent) name that is sent in first position: https://github.com/paparazzi/pprzlink/blob/master/lib/v2.0/ocaml/pprzLink.ml#L814
The confusion is probably coming from the fact that the agent name of the server is "ground", but does not refer to the class name in fact. https://github.com/paparazzi/paparazzi/blob/master/sw/ground_segment/tmtc/server.ml#L25
Sorry, something went wrong.
No branches or pull requests
The function
IvyMessagesInterface.send_request
is sending the agent name in the place of the message class.A CONFIG request message is sent as
IvyMessagesInterface 63240_1 CONFIG_REQ 200
instead ofground 63240_1 CONFIG_REQ 200
pprzlink/lib/v2.0/python/pprzlink/ivy.py
Line 295 in f8e9822
should be replaced by
class_name, new_id, request_message.name, request_message.payload_to_ivy_string()
The text was updated successfully, but these errors were encountered: