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

/dev/ttyS5 dropping serial data #761

Closed
jgoppert opened this issue Mar 20, 2014 · 1 comment
Closed

/dev/ttyS5 dropping serial data #761

jgoppert opened this issue Mar 20, 2014 · 1 comment

Comments

@jgoppert
Copy link
Member

Using /dev/ttyS5 for serial communication with roboclaw drops about half the data with poll while /dev/tty6 works flawlessly. With continuous spinning and collecting all data received, I can get most of the data, but this is not a solution. My thoughts are that either there is something else reading the data from /dev/ttyS5 or that the buffer is set to low. But the buffer is set too 512 in the config. I have searched the source code but have not found anythign reading from this port. I have even killed all processes on the board except my test program and sercon and this problem still exists. I have also tried to use JTAG to detect what is happening but I have had no luck.

Results on /dev/ttyS5

nsh> roboclaw test
starting new test.
roboclaw_test: setting up uart
requesting version
reading version with poll
nsh> poll msg: SB obola 2x5a 4.0
requesting version
reading version w/o poll
no poll msg: 2
{USB Roboclaw 2x15a v4.0.2

Results on /dev/ttyS6
Using /dev/ttyS6 for serial communication with roboclaw works.

nsh> roboclaw test /dev/ttyS6 128
starting new test.
roboclaw_test: setting up uart
requesting version
reading version with poll
nsh> poll msg: USB Roboclaw 2x15a v4.0.2

requesting version
reading version w/o poll
no poll msg: USB Roboclaw 2x15a v4.0.2

Test program.

int roboclaw_test_main(int argc, char *argv[])
{
    test_thread_running = true;
    // defaults
    const char * port = "/dev/ttyS5";
    uint8_t address = 128;
    uint32_t timeout = 10000; // 1 second
    bool doack = false; // do ack for writes

    // parse
    if (argc == 3) {
        port = argv[1];
        address = strtoul(argv[2], nullptr, 0);
    } else if (argc != 1) {
        errx(1, "wrong number of args");
    }

    printf("starting new test.\n");

    // open port
    int uart = open(port, O_RDWR | O_NONBLOCK | O_NOCTTY);
    if (uart < 0) {
        errx(1, "failed to open port: %s", port);
        return 0;
    }

    // setup uart
    warnx("setting up uart");
    struct termios uart_config;
    int ret = tcgetattr(uart, &uart_config);
    if (ret < 0) errx(1, "failed to get attr");
    uart_config.c_oflag &= ~ONLCR; // no CR for every LF
    ret = cfsetispeed(&uart_config, B38400);
    if (ret < 0) errx(1, "failed to set input speed");
    ret = cfsetospeed(&uart_config, B38400);
    if (ret < 0) errx(1, "failed to set output speed");
    ret = tcsetattr(uart, TCSANOW, &uart_config);
    if (ret < 0) errx(1, "failed to set attr");

    // clear old data
    tcflush(uart, TCIOFLUSH);

    // message data
    uint8_t get_version = 21;
    char msg[200];
    char buf[10];

    // request version
    printf("requesting version\n");
    write(uart, &address, 1);
    write(uart, &get_version, 1);

    // read version with poll
    printf("reading version with poll\n");
    struct pollfd uartPoll;
    uint32_t tout = 1000;
    uartPoll.fd = uart;
    uartPoll.events = POLLIN;
    msg[0] = '\0';
    while (true) {
        int pollrc = poll(&uartPoll, 1, tout);
        if (pollrc < 1) break;
        ret = ::read(uart, buf, sizeof(buf)); 
        if (ret < 1) break;
        strncat(msg,(const char *)buf,ret);
    }
    printf("poll msg: %s\n",msg);

    // request version
    printf("requesting version\n");
    write(uart, &address, 1);
    write(uart, &get_version, 1);

    // read version w/o poll
    printf("reading version w/o poll\n");
    msg[0] = '\0';
    for (int i=0;i<10000;i++) {
        ret = ::read(uart, buf, sizeof(buf)); 
        if (ret < 1) {
            continue;
        }
        strncat(msg,(const char *)buf,ret);
    }
    printf("no poll msg: %s\n",msg);

    // close uart
    close(uart);
    test_thread_running = false;
    return 0;
}
@LorenzMeier
Copy link
Member

Fixed as far as I recall.

PX4BuildBot added a commit that referenced this issue Feb 27, 2020
    - ecl in PX4/Firmware (2d51ae8): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
PX4BuildBot added a commit that referenced this issue Feb 28, 2020
    - ecl in PX4/Firmware (a141780): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
PX4BuildBot added a commit that referenced this issue Feb 29, 2020
    - ecl in PX4/Firmware (2d24993): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
PX4BuildBot added a commit that referenced this issue Mar 1, 2020
    - ecl in PX4/Firmware (867da8e): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
PX4BuildBot added a commit that referenced this issue Mar 1, 2020
    - ecl in PX4/Firmware (8d0b1ce): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
PX4BuildBot added a commit that referenced this issue Mar 2, 2020
    - ecl in PX4/Firmware (62bc352): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
PX4BuildBot added a commit that referenced this issue Mar 2, 2020
    - ecl in PX4/Firmware (43aab81): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
dagar pushed a commit that referenced this issue Mar 2, 2020
    - ecl in PX4/Firmware (43aab81): PX4/PX4-ECL@05d391c
    - ecl current upstream: PX4/PX4-ECL@3fa5f50
    - Changes: PX4/PX4-ECL@05d391c...3fa5f50

    3fa5f50 2020-02-27 Carl Olsson - EKF: dont check gps_check_fail_status in velocity reset (#761)
71d4d22 2020-02-21 Daniel Agar - EKF: covariances() helper return const reference and fix code style
8b91856 2020-02-21 bresch - ekf: fix angle wrapping in realignYawGPS
00872fc 2020-02-18 Daniel Agar - EKF: ImuDownSampler pass imuSample as const reference
81c6d66 2020-02-13 bresch - ekf: clean uncorrelateQuatStates function
c6d5a74 2020-02-12 Julian Kent - Update change indicator
NicolasM0 pushed a commit to NicolasM0/Firmware that referenced this issue Feb 5, 2021
In a velocity reset we only used the GPS measurement if _gps_check_fail_status.value was equal to zero. The value of this flag is independent of EKF2_GPS_CHECK so checks can fail even if they are not configured to have any effect.
PX4BuildBot added a commit that referenced this issue Oct 30, 2023
    - rosidl in PX4/Firmware (4c9d5c0): 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 Oct 30, 2023
    - rosidl in PX4/Firmware (c2eddab): 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 Oct 31, 2023
    - rosidl in PX4/Firmware (1e03829): 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 (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
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants