sandman

Results 21 comments of sandman

Ok, I got it to work by adding manual tags for both of those components. No idea why the AUTOMATIC TAGS directive doesn't work. Maybe it has something to do...

As a broader context, this is an extract from the ISO 17419:2018 standard for ITS Globally Unique Identifiers. The ASN.1 schema is publicly available at https://standards.iso.org/iso/17419/ed-1/en/

Update: I cross-checked the generated C code again and the constraint checking code seems to be correct: ```c asn_per_constraints_t asn_PER_type_Zid_constr_1 CC_NOTUSED = { { APC_CONSTRAINED | APC_EXTENSIBLE, 5, 5, 1,...

I've narrowed down the source of the error: its the INTEGER_decode_uper function in INTEGER.c: This part of code in the above function sets ct to 0 which causes the failure...

Does this also work for U-PER ? I'm getting the same error with a different standard's ASN1 spec..

Hi, How did you access the Benchmarks branch?

I just noticed that `rosimagesrc` is exposed as a ROS node. This is interesting and potentially the reason why my pipeline does not work.. I have a standalone C++ application/ROS...

Test gst-inspect-1.0 can load the plugin This works provided the path where the plugin is built (ros2_ws/install/lib/) are added to LD_LIBRARY_PATH and to GST_PLUGIN_PATH.

After a deeper look, the LD_LIBRARY_PATH does not contain the path of the GStreamer libraries. It seems to be loaded by the gst-inspect binary at runtime (dynamic linking). Adding the...

Thanks @BrettRD ! Yes, what worked for me was to copy the .so files to the GStreamer library path and then updating LD_LIBRARY_PATH to include the GStreamer library path in...