Name filters for duplicate devices #513
-
Hello there! Just wanted to ask if the const std::vector<NAMEFilter> filters{/* some filters */};
auto PartnerCF1 = isobus::CANNetworkManager::CANNetwork.create_partnered_control_function(0, filters);
auto PartnerCF2 = isobus::CANNetworkManager::CANNetwork.create_partnered_control_function(0, filters); to create partner CFs for devices that have the same filters without using their identity number as a filter? I suspect that this is not the case, and that both the partner CFs would point to the same device, or something like that. What I probably need to do instead is use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The goal is for what you stated above to work so that you can make multiple partners with the same filters. If that does not work, it would be a bug. Partners created with the same filters were not intended to point to the same control function. |
Beta Was this translation helpful? Give feedback.
The goal is for what you stated above to work so that you can make multiple partners with the same filters. If that does not work, it would be a bug. Partners created with the same filters were not intended to point to the same control function.