/** \file .c * \brief This module */ /*************************************************************************************************** * Includes **************************************************************************************************/ /*************************************************************************************************** * Preprocessor Constants and Macros **************************************************************************************************/ /*************************************************************************************************** * Type and Contant Definitions **************************************************************************************************/ /*************************************************************************************************** * Persistent Variables **************************************************************************************************/ /** * Boolean for interrupting the main thread loop */ bool isUdpListenerRunning = false; /*************************************************************************************************** * Internal Function Prototypes **************************************************************************************************/ /** * \brief This function is used to thread main execution function * * \param arg not used. * * \return NULL. */ static void *artnet_udp_handler(void *arg); /*************************************************************************************************** * External Function Definitions **************************************************************************************************/ /*************************************************************************************************** * Internal Function Definitions **************************************************************************************************/