1
0
Fork 0

note where specification is disobeyed

This commit is contained in:
Kevin Matz 2023-05-20 14:55:31 -04:00
parent 9114e227f7
commit 6d257449f0
1 changed files with 4 additions and 0 deletions

View File

@ -206,6 +206,10 @@ void Device::rxArtPoll(std::shared_ptr<ArtPoll> packet)
if (!data_opt.has_value())
return;
auto data = data_opt.value();
/// \bug The specification details resolution of diagostice behavior from multiple simultanious
/// controllers. However, the spec does not provide a mechanism for differentiating between
/// controllers. Until OSI layer 3 data is available, LTP the reporting settings.
diagnostic_reporting_behavior = data->talk_to_me;
diagnostic_reporting_threshold = data->diagnostic_level;