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

Low and critical battery warnings are triggered to soon #737

Closed
julianoes opened this issue Mar 13, 2014 · 15 comments
Closed

Low and critical battery warnings are triggered to soon #737

julianoes opened this issue Mar 13, 2014 · 15 comments

Comments

@julianoes
Copy link
Contributor

I think we should either lower the thresholds that trigger low and critical batteries or instead filter much slower so that sudden peaks don't always trigger warnings.

@thomasgubler
Copy link
Contributor

I agree the current solution is too sensitive against sudden throttle peaks.

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

It can be tuned with BAT_V_EMPTY and BAT_V_FULL parameters. Default settings maybe really a bit sensitive. But the problem is that actual voltage under load depends on copter, battery model and battery temperature significantly. Look at typical discharge curve: http://www.rcheliresource.com/wp-content/uploads/2009/05/tp-5000mah-pro-power-40c-cell-discharge-curve-graph.jpg

Voltage range shouldn't be used for remaining charge estimation, but if battery capacity not set or no current sensor available it's better to warn user too early than too late.

BTW, battery configuration is documented part of setup: http://pixhawk.org/users/battery_config

@LorenzMeier
Copy link
Member

@DrTon The discussion here is that transients trigger the alarm (which they shouldn't). Its not about the absolute charge level.

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

It's exactly about charge level, because batt "warning" triggered on 25% remaining charge and "critical" on 10%.
Look: https://github.com/PX4/Firmware/blob/master/src/modules/commander/commander.cpp#L1023
And if you tune battery parameters as described in Wiki everything will work perfectly. I think you even not read it...

Example configuration for 3300mAh 3S battery + PIXHAWK + APM Power Module (voltage and current sensors):

BAT_V_SCALING 0.0082
BAT_C_SCALING 0.0124
BAT_CAPACITY 3300.0
BAT_V_EMPTY 3.3
BAT_V_FULL 3.5
BAT_N_CELLS 3

Compare this with your params. ;)

By default battery capacity is NOT configured, because we have no idea about it. But for known configurations (e.g. Iris) we can and should add this to autostart parameters, I missed it.

@LorenzMeier
Copy link
Member

@DrTon Its not about what the system is capable of if set up correctly. Its about what it does as default. Since we don't know the battery capacity and need to operate voltage based, we need to fix the voltage based operation anyway so that the default works.
We then also need GUI support for the current based setup. But as long that's not there we need sensible defaults.

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

Ok, but if one happy user will plug warm, very good battery on light copter he will get first batt warning at 3% remaining battery and the second on 1% (look discharge curve). Another user will still get warnings at 70% and 60% (old, cold battery under heavy load). Is it ok??? I got some dead bubbles instead from batteryes with this approach...

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

Owners of copters that supported out-of-the box will have already configured battery capacity and voltage (we know exactly or almost exactly what battery and current sensor they have). Other users with custom setups will need to tune at least PID, and must have some basic knowledge about capacity, voltage etc. and should be able to set 2-3 parameters, isn't it?

@LorenzMeier
Copy link
Member

In theory yes, but we still need the under voltage protection in that mode. If the user doesn't charge the battery between flights we will have a wrong estimate and need to fall back to voltage. And then we again need to reject short transients. No matter what we do, we need to fix them 8).

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

I think you haven't reviewed my batt fixes PR :)
Yes, we need, and we already have:

remaining_charge = min(estimate_voltage, estimate_discharged)

But for this protection voltage range should be on the lower end of discharge curve (and I wrote about this in Wiki):

BAT_V_EMPTY 3.3
BAT_V_FULL 3.5

To be sure that on high voltages only discharged capacity will act, but leave voltage only as protection.

What about short transients, now lowpass filter is already much slower than before my fixes, we can, of course make it even more slow, but it may be dangerous. Not fully charged battery may go <9V very fast, while filtered value will be still ok. I have one idea to compensate internal resistance of battery, model in FlightPlot works great, but need one more parameter: effective internal resistance, that depends not only on battery model, but also on battery temperature. So I decided to not complicate things.

@LorenzMeier
Copy link
Member

I'm aware of that - we still have the issue with the default setup 8). How parameter sensitive was your resistance model? I agree we should not rely on anything that makes us sensitive, just trying to understand if it could be viable.

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

Look, blue is simply voltage-based estimate filtered at 0.5Hz. Yellow is resistance compensated estimate also filtered at 0.5Hz. Resistance in my case (3300mAh, cold weather, ~5C) was 0.04 Ohm, should be tuned with at least ~20% precision for good results.

batt_r

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

Green is discharged current based estimate, but capacity was set to 2200 instead of 3300, I forgot to change :)

@LorenzMeier
Copy link
Member

Interesting - if you set the resistance significantly (50% off) too low or too high, how do the plots look like? I'm trying to understand if we can find a mode where we guard against wrong parameters / learn the right ones without needing excessive tuning.

@DrTon
Copy link
Contributor

DrTon commented Mar 14, 2014

50% off in resistance value will give ~ average from blue and yellow.

@julianoes
Copy link
Contributor Author

Addressed in #1211, let's test...

PX4BuildBot added a commit that referenced this issue Apr 10, 2021
    - sitl_gazebo in PX4/Firmware (96d0755): PX4/PX4-SITL_gazebo-classic@5761bd6
    - sitl_gazebo current upstream: PX4/PX4-SITL_gazebo-classic@05e2cd9
    - Changes: PX4/PX4-SITL_gazebo-classic@5761bd6...05e2cd9

    05e2cd9 2021-04-10 Manuel Galliker - Removed unused computation of CoG (#737)
PX4BuildBot added a commit that referenced this issue Apr 11, 2021
    - sitl_gazebo in PX4/Firmware (96d0755): PX4/PX4-SITL_gazebo-classic@5761bd6
    - sitl_gazebo current upstream: PX4/PX4-SITL_gazebo-classic@05e2cd9
    - Changes: PX4/PX4-SITL_gazebo-classic@5761bd6...05e2cd9

    05e2cd9 2021-04-10 Manuel Galliker - Removed unused computation of CoG (#737)
PX4BuildBot added a commit that referenced this issue Apr 12, 2021
    - sitl_gazebo in PX4/Firmware (96d0755): PX4/PX4-SITL_gazebo-classic@5761bd6
    - sitl_gazebo current upstream: PX4/PX4-SITL_gazebo-classic@05e2cd9
    - Changes: PX4/PX4-SITL_gazebo-classic@5761bd6...05e2cd9

    05e2cd9 2021-04-10 Manuel Galliker - Removed unused computation of CoG (#737)
PX4BuildBot added a commit that referenced this issue Apr 12, 2021
    - sitl_gazebo in PX4/Firmware (8acdb8c): PX4/PX4-SITL_gazebo-classic@5761bd6
    - sitl_gazebo current upstream: PX4/PX4-SITL_gazebo-classic@05e2cd9
    - Changes: PX4/PX4-SITL_gazebo-classic@5761bd6...05e2cd9

    05e2cd9 2021-04-10 Manuel Galliker - Removed unused computation of CoG (#737)
dagar pushed a commit that referenced this issue Apr 12, 2021
    - sitl_gazebo in PX4/Firmware (8acdb8c): PX4/PX4-SITL_gazebo-classic@5761bd6
    - sitl_gazebo current upstream: PX4/PX4-SITL_gazebo-classic@05e2cd9
    - Changes: PX4/PX4-SITL_gazebo-classic@5761bd6...05e2cd9

    05e2cd9 2021-04-10 Manuel Galliker - Removed unused computation of CoG (#737)
PX4BuildBot added a commit that referenced this issue Jul 17, 2024
    - rosidl in PX4/Firmware (c2cd488): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 17, 2024
    - rosidl in PX4/Firmware (af68405): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 18, 2024
    - rosidl in PX4/Firmware (6f40aad): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 18, 2024
    - rosidl in PX4/Firmware (156da98): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 19, 2024
    - rosidl in PX4/Firmware (83b14ae): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 19, 2024
    - rosidl in PX4/Firmware (9bae53d): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 20, 2024
    - rosidl in PX4/Firmware (72408bc): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 20, 2024
    - rosidl in PX4/Firmware (a46d471): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 21, 2024
    - rosidl in PX4/Firmware (d71d1dc): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 21, 2024
    - rosidl in PX4/Firmware (b26af35): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 22, 2024
    - rosidl in PX4/Firmware (5354839): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 22, 2024
    - rosidl in PX4/Firmware (1fcad64): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 23, 2024
    - rosidl in PX4/Firmware (3cc348d): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 23, 2024
    - rosidl in PX4/Firmware (217ab27): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 24, 2024
    - rosidl in PX4/Firmware (cdce5c4): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 24, 2024
    - rosidl in PX4/Firmware (44a6d46): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 25, 2024
    - rosidl in PX4/Firmware (8d16ca3): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 25, 2024
    - rosidl in PX4/Firmware (ce359e2): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 26, 2024
    - rosidl in PX4/Firmware (8401cd9): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 26, 2024
    - rosidl in PX4/Firmware (36bb651): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 27, 2024
    - rosidl in PX4/Firmware (0af40b5): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 27, 2024
    - rosidl in PX4/Firmware (2ab7310): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 28, 2024
    - rosidl in PX4/Firmware (54fb0e0): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 28, 2024
    - rosidl in PX4/Firmware (4a8ccae): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 29, 2024
    - rosidl in PX4/Firmware (cb2f75b): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 29, 2024
    - rosidl in PX4/Firmware (531059e): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 30, 2024
    - rosidl in PX4/Firmware (7a51b2b): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 30, 2024
    - rosidl in PX4/Firmware (7624c7b): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 31, 2024
    - rosidl in PX4/Firmware (78ba343): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
PX4BuildBot added a commit that referenced this issue Jul 31, 2024
    - rosidl in PX4/Firmware (9f3e683): https://github/commit/7790c70717e09c003711f6f65015666c223fc283
    - rosidl current upstream: https://github/commit/f47565cf5f0edfc535e5278503a6a0bce772f1e5
    - Changes: https://github/compare/7790c70717e09c003711f6f65015666c223fc283...f47565cf5f0edfc535e5278503a6a0bce772f1e5

    f47565c 2023-08-21 Mike Purvis - Add rosidl_find_package_idl helper function (#754)
1fab290 2023-08-21 Chris Lalancette - 4.3.1
bf4cce3 2023-08-21 Chris Lalancette - Changelog.
b854136 2023-08-10 Chris Lalancette - Set the C++ version to 17. (#761)
89c6713 2023-07-25 Emerson Knapp - Fix same named types overriding typesources (#759)
c72b454 2023-07-20 Chen Lihui - update comment (#757)
17944a6 2023-07-11 Chris Lalancette - 4.3.0
261cb04 2023-07-11 Chris Lalancette - Changelog.
187210e 2023-06-21 Stefan Fabian - Fixed visibility control file added to wrong header list variable. (#755)
69efae0 2023-06-12 Shane Loretz - Remove unused splitting of .srv files in CMake (#753)
fcf7b5f 2023-06-07 Chris Lalancette - 4.2.0
1225630 2023-06-07 Chris Lalancette - Changelog.
1228f54 2023-06-07 Emerson Knapp - Fix deprecation warnings for message constants (#750)
e3b71ec 2023-05-15 Stefan Fabian - Generate typesupport declarations for actions, messages and services (#703)
a5cc3ec 2023-05-11 Chris Lalancette - 4.1.1
9302d87 2023-05-11 Chris Lalancette - Changelog.
5df46c3 2023-05-10 Alexis Paques - Fix IWYU for clangd in C and C++ (#742)
3853866 2023-05-01 Chris Lalancette - Mark _ in benchmark tests as unused. (#741)
e1af9be 2023-04-28 Yadunund - 4.1.0
a57baea 2023-04-11 Chris Lalancette - 4.0.0
8e82d7a 2023-04-11 Chris Lalancette - Changelog.
7583b95 2023-04-11 methylDragon - Dynamic Subscription (BONUS: Allocators): rosidl (#737)
6da8660 2023-04-08 methylDragon - Runtime Interface Reflection: rosidl (#728)
7cbb116 2023-04-06 Emerson Knapp - Type Description Codegen and Typesupport  (rep2011) (#727)
8b27b67 2023-03-29 Emerson Knapp - Copied type_description_interfaces structs (rep2011) (#732)
eac4201 2023-03-24 Emerson Knapp - Expose type hash on typesupports (rep2011) (#729)
10d0883 2023-03-24 Chris Lalancette - Fix a few more clang analysis problems. (#731)
ce20c11 2023-03-22 Alexander Hans - Return reference from BoundedVector::emplace_back (#730)
b93c518 2023-03-15 Emerson Knapp - Type hash in interface codegen (rep2011) (#722)
383ca18 2023-03-14 Yadu - Fix warnings (#726)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants