Skip to content

Commit 9b88063

Browse files
micro-ROS iron Library auto-update 22-11-2023 06:18 (micro-ROS#1585)
Co-authored-by: pablogs9 <pablogs9@users.noreply.github.com>
1 parent 74446a9 commit 9b88063

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

built_packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://github.com/ament/ament_package.git cf415e74bb8faff896bb6915ee3d120cc7b60
66
https://github.com/ament/googletest.git 1c2fdcd80b08fcfe6b70fa2a369ae6bab9d5f78e
77
https://github.com/ament/uncrustify_vendor.git 94ed3f68d1d2e44e04398c4538509f5e78114dae
88
https://github.com/eProsima/Micro-CDR.git ed4fd513a24a53b93d548d342cb7aa0a18716f04
9-
https://github.com/eProsima/Micro-XRCE-DDS-Client.git b8dbfaa775d0d842edfa9a0eb2ebc8ebdb1a0c14
9+
https://github.com/eProsima/Micro-XRCE-DDS-Client.git 371718ca16c361f639c06a2761b9497f8706794a
1010
https://github.com/micro-ROS/micro_ros_msgs.git b9a1df227be07375b3ad32a27d81b4012d09ecc0
1111
https://github.com/micro-ROS/micro_ros_utilities 74f7a6b08690079ecbb0262db563aa96f667277d
1212
https://github.com/micro-ROS/rcl d50d3670258e26291ab996fd361175cb612abfe9

src/uxr/client/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
#define UXR_CLIENT_VERSION_MAJOR 2
1919
#define UXR_CLIENT_VERSION_MINOR 4
20-
#define UXR_CLIENT_VERSION_MICRO 1
21-
#define UXR_CLIENT_VERSION_STR "2.4.1"
20+
#define UXR_CLIENT_VERSION_MICRO 2
21+
#define UXR_CLIENT_VERSION_STR "2.4.2"
2222

2323
/* #undef UCLIENT_PROFILE_DISCOVERY */
2424

src/uxr/client/profile/transport/can/can_transport.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ extern "C"
2929
#include <uxr/client/visibility.h>
3030
#include <uxr/client/transport.h>
3131

32-
#define UXR_CONFIG_CAN_TRANSPORT_MTU 63
32+
/* For CAN-FD, MTU is fixed value */
33+
#define UXR_CAN_TRANSPORT_MTU 63
3334

3435
typedef struct uxrCANTransport
3536
{
36-
uint8_t buffer[UXR_CONFIG_CAN_TRANSPORT_MTU];
37+
uint8_t buffer[UXR_CAN_TRANSPORT_MTU];
3738
uxrCommunication comm;
3839
struct uxrCANPlatform platform;
3940
} uxrCANTransport;

0 commit comments

Comments
 (0)