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

Convert ROSIDL char to IDL char #698

Open
wants to merge 1 commit into
base: rolling
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rosidl_adapter/rosidl_adapter/msg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def convert_msg_to_idl(package_dir, package_name, input_file, output_dir):
MSG_TYPE_TO_IDL = {
'bool': 'boolean',
'byte': 'octet',
'char': 'uint8',
'char': 'char',
'int8': 'int8',
'uint8': 'uint8',
'int16': 'int16',
Expand Down
2 changes: 1 addition & 1 deletion rosidl_adapter/test/data/action/Test.expected.idl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module test_msgs {
@verbatim (language="comment", text=
"asd" "\n"
"bsd")
uint8 char_value;
char char_value;

float float32_value;

Expand Down
2 changes: 1 addition & 1 deletion rosidl_adapter/test/data/msg/Test.expected.idl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module test_msgs {
@verbatim (language="comment", text=
"combined styles" "\n"
"combined styles, part 2")
uint8 char_value;
char char_value;

float float32_value;

Expand Down
2 changes: 1 addition & 1 deletion rosidl_adapter/test/data/srv/Test.expected.idl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module test_msgs {
@verbatim (language="comment", text=
"5" "\n"
"6")
uint8 char_value;
char char_value;

float float32_value;

Expand Down