forked from OpenCyphal/nunavut
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
C++: Fix incorrect handling of blank lines in doc comments; fix a min…
…or mistake introduced in the prior PR (OpenCyphal#290) - Do not lose blank lines in doc comments. - Move `Request`/`Response` aliases out of the `_traits_`; this was changed by mistake in OpenCyphal#287 - Repair the vscode run/debug configuration The naming of the service pseudo-type `Service_{{major}}_{{minor}}` non-obvious and I would like to suggest renaming it such that the service pseudo-type is named after the service itself suffixed with the version numbers. This would be in line with the way it is implemented in Python. Instead of this: ```c++ uavcan::_register::Access::Request_1_0 uavcan::_register::Access::Response_1_0 uavcan::_register::Access::Service_1_0 ``` We now have this: ```c++ uavcan::_register::Access::Request_1_0 uavcan::_register::Access::Response_1_0 uavcan::_register::Access_1_0 ``` Then there already are aliases inside `Access_1_0` which means that the full set of the available names is as follows: ```c++ uavcan::_register::Access::Request_1_0 uavcan::_register::Access::Response_1_0 uavcan::_register::Access_1_0 uavcan::_register::Access_1_0::Request uavcan::_register::Access_1_0::Response ``` See related discussion in OpenCyphal#155 and OpenCyphal#190
- Loading branch information
1 parent
6c0a42a
commit 9dafc1c
Showing
6 changed files
with
35 additions
and
203 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
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
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