Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
ADIS_Projects/McuLib/config/McuEventsconfig.h

31 lines
881 B

/**
* \file
* \brief Configuration header file for SimpleEvents
* Copyright (c) 2020, Erich Styger
* SPDX-License-Identifier: BSD-3-Clause
*
* This header file is used to configure settings of the SimpleEvents module.
*/
#ifndef __McuEvents_CONFIG_H
#define __McuEvents_CONFIG_H
#ifndef McuEvents_CONFIG_USE_EVENT_HANDLER
#define McuEvents_CONFIG_USE_EVENT_HANDLER (1)
/*!< 1: Use Event handler; 0: Do not use Event Handler */
#endif
#ifndef McuEvents_CONFIG_EVENT_HANDLER_NAME
#define McuEvents_CONFIG_EVENT_HANDLER_NAME McuEvents_AppHandleEvent
/*!< Name of event handler, of type 'void FunctionName(uint8_t event)' */
#endif
/*! List of events */
#define McuEvents_INIT /* Example event */ 0
#ifndef McuEvents_CONFIG_NOF_EVENTS
#define McuEvents_CONFIG_NOF_EVENTS 1
/*!< Number of events supported */
#endif
#endif /* __McuEvents_CONFIG_H */