-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
We need to build a program that will
- Subscribe to a topic which is producing
odcl's - When it receives an ODCL:
- open a GUI accept/revise review program
- submit the accepted or revised odcl to AUVSI server
- You will need to execute the callback in a separate thread, since we need to be transmitting telemetry e.g. while the odcl is being reviewed.
- We have existing GUI code for reviewing ODCL's, right? Put that into the python module in
devand then install the module via pip to use those functions in ROS. The module was renamed touavfpy. Then we can call e.g.uavfpy.interop.reviewGUI(odcl)inside of ROS. Note that we cannot handle ROS messages directly inuavfpy, as ROS is not a dependency.- if you can, unit test the GUI code with
pytest.
- if you can, unit test the GUI code with
Reactions are currently unavailable