You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the message contains more than 1 Oneof structure, the second one's value is not converter properly from cluster value to grps message. Its value is returned as None.
In the example below dur_val will be received as None, even if some value was assigned in LabVIEW.
If the message contains more than 1 Oneof structure, the second one's value is not converter properly from cluster value to grps message. Its value is returned as None.
In the example below dur_val will be received as None, even if some value was assigned in LabVIEW.
message WF_Constant {
oneof value {
string value_var_id = 2;
float value_val = 3;
}
oneof duration {
string dur_var_id = 5;
float dur_val = 6;
}
}
AB#2630427
The text was updated successfully, but these errors were encountered: