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
Hi,
I searched the source, found out that the "Auxiliary Capabilities Request" was not implemented , and I am confused about the protocol response describing "Number of Instances: Indicates the number of input/function instances where the described
Function attribute and Assigned attribute are the same". I'd like to contribute this part, can anyone explain how to get the number of instances?
The text was updated successfully, but these errors were encountered:
It's a bit confusing to me as well... I can see if I can find out more. But, if you're wanting to contribute the client side of this, then a complete understanding might not be strictly needed I guess, as if I was going to implement sending of the request and receiving of the reply, I'd probably just give that information verbatim to the consumer of the library and let them use it as they see fit?
Like, I'd probably pass them (in a callback or something) the values listed under J.7.14 bytes 3-n repeating in a const class, maybe something like
class AuxiliaryCapabilities
{
public:
class SetInformation
{
public:
std::uint8_t numberOfInstances;
std::uint8_t functionAttribute;
std::uint8_t assignedAttribute;
};
NAME auxiliaryUnitNAME;
std::vector<SetInformation> sets;
};
Could also use enums or something to clarify further, but I think that'd be the general idea?
Then the answer to "how to get the number of instances" is just "it's whatever the VT sends back to you" since the VT provides that based on the content of the other working sets' object pools.
Hi,
I searched the source, found out that the "Auxiliary Capabilities Request" was not implemented , and I am confused about the protocol response describing "Number of Instances: Indicates the number of input/function instances where the described
Function attribute and Assigned attribute are the same". I'd like to contribute this part, can anyone explain how to get the number of instances?
The text was updated successfully, but these errors were encountered: