We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The trigger node example is not using the launch file parsed data https://github.com/astuff/avt_vimba_camera/blob/ros1_master/src/trigger.cpp#L73
bool Trigger::PrepareActionCommand() { return (SetIntFeatureValue("ActionDeviceKey", 1) && SetIntFeatureValue("ActionGroupKey", 1) && SetIntFeatureValue("ActionGroupMask", 1)); }
Should use the object property instead of one int action_device_key_; int action_group_key_; int action_group_mask_;
bool Trigger::PrepareActionCommand() { return (SetIntFeatureValue("ActionDeviceKey", action_device_key_) && SetIntFeatureValue("ActionGroupKey", action_group_key_) && SetIntFeatureValue("ActionGroupMask", action_group_mask_)); }
The text was updated successfully, but these errors were encountered:
Good catch! feel free to open a PR to fix it.
Sorry, something went wrong.
BUG FIX Issue astuff#104 - Passing Variables and not constant in Trig…
ff43cf4
…ger::PrepareActionCommand
BUG FIX Issue #104 - Passing Variables and not constant in Trigger::P…
dbf72af
…repareActionCommand (#108) Co-authored-by: Dagata_Mining <agrenier@pointlaz.com>
No branches or pull requests
The trigger node example is not using the launch file parsed data
https://github.com/astuff/avt_vimba_camera/blob/ros1_master/src/trigger.cpp#L73
Should use the object property instead of one
int action_device_key_;
int action_group_key_;
int action_group_mask_;
The text was updated successfully, but these errors were encountered: