1
0
Fork 0

not enough information is known at construction to send the required ArtPollReply

This commit is contained in:
Kevin Matz 2023-05-20 13:35:37 -04:00
parent 828e4f11a7
commit 29e7d788e6
1 changed files with 7 additions and 3 deletions

View File

@ -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.
}