template for .c .h

This commit is contained in:
2021-07-31 17:11:21 +01:00
parent 3dd32d039c
commit a5da739f65
4 changed files with 87 additions and 9 deletions

View File

@@ -0,0 +1,45 @@
/** \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
**************************************************************************************************/