-
Notifications
You must be signed in to change notification settings - Fork 42
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
Hardcoded typesupport for Fibonacci action #47
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Let's get this going.
} | ||
#endif | ||
|
||
#define TEST_MSGS__ACTION__FIBONACCI_H_ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sloretz #endif // TEST_MSGS__ACTION__FIBONACCI_H_
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in f99efcf
Also, it looks like this branch could use a rebase. |
780b462
to
1964b1d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than the one comment from @hidmic, this looks good to go 👍
Checking if Windows dll linkage issue is fixed by a4dfb38 |
Checking if WIndows dll linkage issue is fixed by 6d6da58 |
@sloretz looks like this is ready!! |
@hidmic I think it's ready. All that is left is for ros2/rosidl_python#17 and ros2/rosidl#310 to pass code review and possibly another round of CI after fixing issues found during their reviews. |
@sloretz This appears to break
|
* msg and srv in actions folder * Add uniquely named messages and services * Add hand made action typesupport * respose -> result request * respose -> response * Use goal info in more places * Fix feedback symbol * Generate from .action file * Hardcoded typesupport works with generated msg and srv * C typesupport returns rcl_action_type_support_t * Function to get typsupport struct from C++ typesupport * rosidl_typesupport_cpp namespace * Fix include guard * Fix linter test failures * Fix dll linkage on Windows * Fix windows linking issue by having separate visibility macro
Split from #44. This PR has hardcoded type support classes for a Fibonacci action.
requires #44