Fast-DDS-Gen
Fast-DDS-Gen copied to clipboard
Fast-DDS IDL code generator tool. Looking for commercial support? Contact [email protected]
# Bug Report ``` $ fastddsgen -version openjdk version "11.0.21" 2023-10-17 OpenJDK Runtime Environment (build 11.0.21+9-post-Ubuntu-0ubuntu122.04) OpenJDK 64-Bit Server VM (build 11.0.21+9-post-Ubuntu-0ubuntu122.04, mixed mode, sharing) fastddsgen version 3.2.1 ``` OS:...
## Description This PR: * [x] Adds this PR template * [x] Ports the repository's colcon.meta from JSON to YAML ## Contributor Checklist - [x] Commit messages follow the project...
closes #288
**here is my dataArray.idl contents:** ``` struct dataPair { float real; float img; }; struct dataArray { dataPair dataPairs[64]; }; ``` **Code generated using fastddsgen version 3.0.1 :** fastddsgen -cs...
For an IDL file named `outer-middle-inner.idl` with content ``` module outer { module middle { module inner { enum some_type { A, B, C }; }; }; }; ``` fastddsgen...
This issue arises from v3.1. On 3.0.1 I can generate map bindings for python. From 3.1 onwards, I can only generate map bindings for cpp and not python ``` ERROR:...
OS:windows11+vs2019 I install fastdds using binary packages on Windows,I use HellowWorldExample, I tried to generate the idl file using fastddsgen myself, but when I ran `fastddsgen.bat/Helloworld.idl`, the following error occurred:...
Hi all, I am using fastddsgen v3.1.0. When I compiled the generated xxxCdrAux.hpp, there was an narrowing conversion error "_error: narrowing conversion of ‘12144122424’ from ‘long unsigned int’ to ‘uint32_t’...
When I compile perf_test from performance_test as following: colcon build --cmake-args -DPERFORMANCE_TEST_FASTRTPS_ENABLED=ON, some errors occured: /usr/bin/ld: CMakeFiles/perf_test.dir/src/communication_abstractions/communicator_factory.cpp.o: in function `eprosima::fastdds::dds::LoanableSequence::resize(int)': communicator_factory.cpp:(.text._ZN8eprosima7fastdds3dds16LoanableSequenceIN16performance_test3msg10FastDDSGen8Struct4kESt17integral_constantIbLb1EEE6resizeEi[_ZN8eprosima7fastdds3dds16LoanableSequenceIN16performance_test3msg10FastDDSGen8Struct4kESt17integral_constantIbLb1EEE6resizeEi]+0xa5): undefined reference to `performance_test::msg::FastDDSGen::Struct4k::Struct4k()' ...... which library should I...
The following command uses -I options both pointing to the same "other" folder fastddsgen -replace -cs -I base/ -I other/ -I /home/eltdev/tmp/fastddsgen_bug/other/ sub/IcdTypesComplexTest.idl It cases the tool to hang. Patch...