-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Changelog <!-- Write a one-sentence summary of the user-impacting change (API, UI/UX, performance, etc) that could appear in a changelog. Write "None" if there is no user-facing change --> ### Description In [ROS2](https://docs.ros.org/en/iron/Concepts/Basic/About-Interfaces.html#field-types), `byte` fields should be treated as `uint8` types: > | Type name | C++ | Python | DDS type | > |-----------|---------|-----------------|----------| > | byte | uint8_t | builtins.bytes* | octet | Prior to this change we were treating `byte` fields as `int8` which causes errors when parsing a byte field with a default value (e.g. `255`) which is out of the range of a int8.
- Loading branch information
Showing
2 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters