From 29e7d788e6264f199ed9001f53b141f11d30b2e3 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Sat, 20 May 2023 13:35:37 -0400 Subject: [PATCH] not enough information is known at construction to send the required ArtPollReply --- protocol/artistic/artnet/device.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/protocol/artistic/artnet/device.cpp b/protocol/artistic/artnet/device.cpp index 71c7549..3c54090 100644 --- a/protocol/artistic/artnet/device.cpp +++ b/protocol/artistic/artnet/device.cpp @@ -26,11 +26,15 @@ namespace ARTNET { +/** + * @brief Device::Device + * + * \note A ArtPollReply packet is required to be broadcast to the Directed Broadcast address by + * all Art-Net devices on power up. Since information in that packet requres a fully configured + * device, it must be specifically sent later. + */ Device::Device() { - /// \cite ARTNET A ArtPollReply packet is broadcast to the Directed Broadcast - /// address by all Art-Net devices on power up. - Device::txArtPollReply(); // Always the reference implimentation, never virual. }