Skip to content
New issue

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

Unity hangs when Markers are serialized with missing fields #10

Open
GregoryLeMasurier opened this issue Nov 15, 2019 · 0 comments
Open

Comments

@GregoryLeMasurier
Copy link
Member

GregoryLeMasurier commented Nov 15, 2019

Unity hangs after calling msg.Serialize() on a Marker with missing fields: marker.header.stamp and marker.lifetime.

Source used:

    public ROSCore rosmaster;
    private NodeHandle nh = null;

    private Publisher<MarkerArray> pub;

	// Use this for initialization
    void Start () {
        nh = rosmaster.getNodeHandle();
        pub = nh.advertise<MarkerArray>("test", 10);
    }

    void Update()
    {
        MarkerArray msg = new MarkerArray();
        msg.markers = new Marker[1];

        msg.markers[0] = new Marker();
        msg.markers[0].header = new Messages.std_msgs.Header();
        msg.markers[0].header.stamp = ROS.GetTime();
        

        msg.markers[0].lifetime = new Duration();

        msg.Serialize();

        pub.publish(msg);
    }
@GregoryLeMasurier GregoryLeMasurier changed the title Unity hangs when Markers are published with missing fields Unity hangs when Markers are serialized with missing fields Nov 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant