Skip to content

Commit

Permalink
Remove constant property to allow custom messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
pablorcum committed Nov 7, 2023
1 parent 828fd4c commit df14a0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion toolbox/lib/ros2deserialize.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
% These are the options for the dropdown lists
% The properties are constant, hidden, and transient based on the
% system object documentation
properties (Constant, Hidden, Transient)
properties (Hidden, Transient)
%MessageTypeSet - Dropdown choices for ROS2 message type
MessageTypeSet = matlab.system.StringSet(ros2("msg","list"));
end
Expand Down
2 changes: 1 addition & 1 deletion toolbox/lib/rosdeserialize.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
% These are the options for the dropdown lists
% The properties are constant, hidden, and transient based on the
% system object documentation
properties (Constant, Hidden, Transient)
properties (Hidden, Transient)
%MessageTypeSet - Dropdown choices for ROS message type
MessageTypeSet = matlab.system.StringSet(rosmsg('list'));
end
Expand Down

0 comments on commit df14a0c

Please sign in to comment.