File tree Expand file tree Collapse file tree 4 files changed +39
-2
lines changed Expand file tree Collapse file tree 4 files changed +39
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ https://github.com/ros2/rmw_implementation.git f635b57f5218ee931b62bf2ecdc7d83f8
23
23
https://github.com/ros2/rosidl_dds.git 664a9daadce12d02d35091d1bfde7acabe829354
24
24
https://github.com/ros2/rcl_interfaces.git c5d0a20150533a6cb93d5dcbd6e27cea9300aa6e
25
25
https://github.com/ros-controls/control_msgs a555c37f1a3536bb452ea555c58fdd9344d87614
26
- https://github.com/eProsima/Micro-XRCE-DDS-Client.git abac4823ffd5647083a9606d14a831ca1352a829
26
+ https://github.com/eProsima/Micro-XRCE-DDS-Client.git de48438f3620981a59128ae651faae79e52529be
27
27
https://github.com/eProsima/Micro-CDR.git cb4403a8780095df94a7b1936b1e00153c90070d
28
28
https://github.com/ament/googletest.git 79c4c9db1a7bc8bc5473a280499bf776173653d6
29
29
https://github.com/ament/ament_cmake.git 573972a9054e8ff503f717a28baa040e7ce1fd32
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ extern "C"
29
29
#include <uxr/client/visibility.h>
30
30
#include <uxr/client/transport.h>
31
31
32
- #define UXR_CONFIG_CAN_TRANSPORT_MTU 64
32
+ #define UXR_CONFIG_CAN_TRANSPORT_MTU 63
33
33
34
34
typedef struct uxrCANTransport
35
35
{
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 Proyectos y Sistemas de Mantenimiento SL (eProsima).
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef UXR_CLIENT_PROFILE_TRANSPORT_SERIAL_SERIALTRANSPORTRTEMS_H_
16
+ #define UXR_CLIENT_PROFILE_TRANSPORT_SERIAL_SERIALTRANSPORTRTEMS_H_
17
+
18
+ #ifdef __cplusplus
19
+ extern "C"
20
+ {
21
+ #endif // ifdef __cplusplus
22
+
23
+ #include "sys/select.h"
24
+
25
+ typedef struct uxrSerialPlatform
26
+ {
27
+ struct fd_set select_fd ;
28
+ int fd ;
29
+ } uxrSerialPlatform ;
30
+
31
+ #ifdef __cplusplus
32
+ }
33
+ #endif // ifdef __cplusplus
34
+
35
+ #endif // UXR_CLIENT_PROFILE_TRANSPORT_SERIAL_SERIALTRANSPORTPOSIX_H_
Original file line number Diff line number Diff line change 46
46
#ifdef UCLIENT_PROFILE_SERIAL
47
47
#if defined(UCLIENT_PLATFORM_POSIX )
48
48
#include <uxr/client/profile/transport/serial/serial_transport_posix.h>
49
+ #elif defined(UCLIENT_PLATFORM_RTEMS_BSD_NET )
50
+ #include <uxr/client/profile/transport/serial/serial_transport_rtems_bsd_net.h>
49
51
#endif // if defined(UCLIENT_EXTERNAL_SERIAL)
50
52
#include <uxr/client/profile/transport/serial/serial_transport.h>
51
53
#endif //UCLIENT_PROFILE_SERIAL
You can’t perform that action at this time.
0 commit comments