feat: added PicoW_Sensor code template

Credits to @ext-erich.styger that provided the template
This commit is contained in:
SylvanArnold
2025-04-22 11:30:45 +02:00
committed by Sylvan Arnold
parent b2e9eab44e
commit 6cd510e749
985 changed files with 606823 additions and 0 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 */