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,24 @@
/**
* \file
* \brief Version information header file for MCU library
* Copyright (c) 2020-2024, Erich Styger
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SOURCES_MCULIBVERSION_H_
#define SOURCES_MCULIBVERSION_H_
/* See
* https://github.com/ErichStyger/McuOnEclipseLibrary
* Date: 16-Dec-2024
* Time: 08:04
*/
#define McuLib_VERSION_VERSION_MAJOR (1)
/*!< McuLib major version number */
#define McuLib_VERSION_VERSION_MINOR (0)
/*!< McuLib minor version number */
#define McuLib_VERSION_VERSION_BUILD (11)
/*!< McuLib build version number */
#endif /* SOURCES_MCULIBVERSION_H_ */