Skip to content

Commit 4118776

Browse files
committed
Use consistent word spelling
1 parent 5eb33d8 commit 4118776

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

FIROS2/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ For each message, one transformation library is required by the integration serv
1515

1616
![image](http://www.plantuml.com/plantuml/svg/ZP712i8m38RlUOempuKvfrv49gYmap05BmCfhfs5hOMslhzjLuQYu1e8_E5Fyf4Mnb9jdtq77UCMhK8jseV5HcXsjq99uA9ZcA1xjQnEvmnxPWnjMIrzBK5giDpVvlXXF9RNNNNuRSqGf6f6guymr-sERHTDfU5AzzGJ39Rt2GkShJddQJeHBfyEj_o6YtQ75pRyWrkDS03XC8Hi1sW8ESeio1mtX0nT47AK3gDWil7_yW80)
1717

18-
In the implementation of these transformation libraries, the user needs to be able to serialisation/deserialization ROS2 messages.
19-
Also, an NGSIv2 serialisation/deserialization mechanism will be used.
18+
In the implementation of these transformation libraries, the user needs to be able to serialisation/deserialisation ROS2 messages.
19+
Also, an NGSIv2 serialisation/deserialisation mechanism will be used.
2020

21-
The FIROS2 package provides a standard NGSIv2 serialisation/deserialization mechanisms, but ROS2 serialisation/deserialization is not offered due to its dependencies with the message type.
21+
The FIROS2 package provides a standard NGSIv2 serialisation/deserialisation mechanisms, but ROS2 serialisation/deserialisation is not offered due to its dependencies with the message type.
2222

2323
For solving this issue, various methods to get it are proposed:
2424

25-
#### Use serialisation/deserialization method provided by the middleware layer
25+
#### Use serialisation/deserialisation method provided by the middleware layer
2626

2727
This is currently the method used in micro-ROS - FIROS 2 integration.
2828

@@ -52,23 +52,23 @@ This is a portion of code used in the transformation library implementation.
5252
return;
5353
}
5454

55-
// Transformation and NGSIv2 serialization code here
55+
// Transformation and NGSIv2 serialisation code here
5656

5757
}
5858
```
5959

6060
Note the call to ROS 2 interface __rosidl_typesupport_cpp::get_message_type_support_handle__
6161

62-
#### Use serialization/deserialization method for an specific type support
62+
#### Use serialisation/deserialisation method for an specific type support
6363

6464
In this case, the transformation library will use one specific type support to serialise/deserialise the bridged ROS2 messages.
6565
In micro-ROS case, the implementation to be used will be rosidl_typesupport_microxrcedds.
6666
This method is trivial to develop as it does not require additional source code on the micro-ROS side.
6767

68-
In the case of micro-ROS, the transformation library should use the serialisation/deserialization API exposed by its typesupport, rosidl_typesupport_microxrcedds.
68+
In the case of micro-ROS, the transformation library should use the serialisation/deserialisation API exposed by its typesupport, rosidl_typesupport_microxrcedds.
6969
This mechanism requires the user to have access to the typesupport API, which sometimes is not always possible.
7070

71-
#### Used serialization/deserialization method generated from IDL file
71+
#### Used serialisation/deserialisation method generated from IDL file
7272

7373
In this case, transformation library will use generated code to serialise/deserialise the bridged ROS2 messages.
7474
The generated code may be made using an IDL parser tool.

0 commit comments

Comments
 (0)