Skip to content

Commit fbb4af8

Browse files
micro-ROS foxy Library auto-update 08-05-2021 06:24 (#253)
Co-authored-by: pablogs9 <[email protected]>
1 parent 0086a56 commit fbb4af8

File tree

4 files changed

+7
-17
lines changed

4 files changed

+7
-17
lines changed

built_packages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ https://github.com/ros2/rcl_logging.git d22a6630f039bee97c6667394def926a5426a673
1616
https://github.com/ros2/common_interfaces.git 0377ea7b95d98457284d0fbfc01bc53f16ca3332
1717
https://github.com/ros-controls/control_msgs 653b646ba34d2166149cc02269bac0f48beb72b0
1818
https://github.com/eProsima/Micro-CDR.git bf546d5d10ef0a81e0a6f8561c7e9a54ef0b20b0
19-
https://github.com/eProsima/Micro-XRCE-DDS-Client.git 9aea2e2581a0bc4af49ea05441272fe3f3321b54
19+
https://github.com/eProsima/Micro-XRCE-DDS-Client.git 9ebfa607f26eb8525eba22fce510665d60e606d2
2020
https://github.com/micro-ROS/rcl 12da7d8fead1667a36f1217b8a177d59d8f83c68
2121
https://github.com/micro-ROS/rcutils 1fdfd3cd2b645ce683fe3e150feeac7c4a1bf073
2222
https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing d11b87737245b8456bbada44dfa7b1d670b1c4d0
2323
https://github.com/micro-ROS/micro_ros_msgs.git 9a3968d4694f516ded8bdbfe23e2a487477bb8b4
24-
https://github.com/micro-ROS/rosidl_typesupport.git 263a6702fb4da931415c5ea27498c76f0694d475
24+
https://github.com/micro-ROS/rosidl_typesupport.git e09988aa7bc7b803d5874bd482af89eb0705f12d
2525
https://github.com/micro-ROS/rosidl_typesupport_microxrcedds.git 5f1eb83dc6f998a12c853a6601c2683b0940e693
2626
https://github.com/micro-ROS/rmw-microxrcedds.git 0bf0042b9d54d6b488a97ffbda2c95ed6bb6d996
2727
https://github.com/ros2/rclc aec6e900cdb12765db71bd4cc990c7de37e2cab2

src/uxr/client/config.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@
3535
/* #undef UCLIENT_PLATFORM_FREERTOS_PLUS_TCP */
3636
/* #undef UCLIENT_PLATFORM_ZEPHYR */
3737

38-
/* #undef UCLIENT_EXTERNAL_TCP */
39-
/* #undef UCLIENT_EXTERNAL_UDP */
40-
/* #undef UCLIENT_EXTERNAL_SERIAL */
41-
4238
#define UXR_CONFIG_MAX_OUTPUT_BEST_EFFORT_STREAMS 1
4339
#define UXR_CONFIG_MAX_OUTPUT_RELIABLE_STREAMS 1
4440
#define UXR_CONFIG_MAX_INPUT_BEST_EFFORT_STREAMS 1

src/uxr/client/profile/multithread/multithread.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ struct uxrSession;
3030

3131
#ifdef WIN32
3232
#elif defined(PLATFORM_NAME_FREERTOS)
33-
#include <freertos/FreeRTOS.h>
34-
#include <freertos/semphr.h>
33+
#include "FreeRTOS.h"
34+
#include "semphr.h"
3535
#elif defined(UCLIENT_PLATFORM_ZEPHYR)
3636
#elif defined(UCLIENT_PLATFORM_POSIX)
3737
#include <pthread.h>

src/uxr/client/transport.h

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
#include <uxr/client/config.h>
1919

2020
#ifdef UCLIENT_PROFILE_UDP
21-
#if defined(UCLIENT_EXTERNAL_UDP)
22-
#include <uxr/client/profile/transport/ip/udp/udp_transport_external.h>
23-
#elif defined(UCLIENT_PLATFORM_POSIX_NOPOLL)
21+
#if defined(UCLIENT_PLATFORM_POSIX_NOPOLL)
2422
#include <uxr/client/profile/transport/ip/udp/udp_transport_posix_nopoll.h>
2523
#elif defined(UCLIENT_PLATFORM_POSIX)
2624
#include <uxr/client/profile/transport/ip/udp/udp_transport_posix.h>
@@ -33,9 +31,7 @@
3331
#endif //UCLIENT_PROFILE_UDP
3432

3533
#ifdef UCLIENT_PROFILE_TCP
36-
#if defined(UCLIENT_EXTERNAL_TCP)
37-
#include <uxr/client/profile/transport/ip/tcp/tcp_transport_external.h>
38-
#elif defined(UCLIENT_PLATFORM_POSIX)
34+
#if defined(UCLIENT_PLATFORM_POSIX)
3935
#include <uxr/client/profile/transport/ip/tcp/tcp_transport_posix.h>
4036
#elif defined(UCLIENT_PLATFORM_WINDOWS)
4137
#include <uxr/client/profile/transport/ip/tcp/tcp_transport_windows.h>
@@ -44,9 +40,7 @@
4440
#endif //UCLIENT_PROFILE_TCP
4541

4642
#ifdef UCLIENT_PROFILE_SERIAL
47-
#if defined(UCLIENT_EXTERNAL_SERIAL)
48-
#include <uxr/client/profile/transport/serial/serial_transport_external.h>
49-
#elif defined(UCLIENT_PLATFORM_POSIX)
43+
#if defined(UCLIENT_PLATFORM_POSIX)
5044
#include <uxr/client/profile/transport/serial/serial_transport_posix.h>
5145
#endif // if defined(UCLIENT_EXTERNAL_SERIAL)
5246
#include <uxr/client/profile/transport/serial/serial_transport.h>

0 commit comments

Comments
 (0)