doc: renamed project

This commit is contained in:
SylvanArnold
2025-04-29 13:52:54 +02:00
committed by Sylvan Arnold
parent 244e516bd8
commit 32618389d1
985 changed files with 1 additions and 1 deletions

View File

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