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,32 @@
/*!
* Copyright (c) 2024, Erich Styger
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
* \file
* \brief Configuration header file for the McuIO module.
*/
#ifndef __MCU_IO_CONFIG_H__
#define __MCU_IO_CONFIG_H__
#ifdef __cplusplus
extern "C" {
#endif
#ifndef MCUIO_CONFIG_USE_FREERTOS_HEAP
#define MCUIO_CONFIG_USE_FREERTOS_HEAP (McuLib_CONFIG_SDK_USE_FREERTOS)
/*!< 1: use FreeRTOS heap for memory allocation (default); 0: using normal malloc() and free() */
#endif
#ifndef MCUIO_CONFIG_USE_FREERTOS_QUEUE
#define MCUIO_CONFIG_USE_FREERTOS_QUEUE (McuLib_CONFIG_SDK_USE_FREERTOS)
/*!< 1: use FreeRTOS queue for buffer management allocation (default); 0: using bare-metal ring buffer */
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __MCU_IO_CONFIG_H__ */