LedBars/RpiLedBars/res/src/c.template

46 lines
1.9 KiB
Plaintext
Raw Normal View History

2021-07-31 18:11:21 +02:00
/** \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
**************************************************************************************************/