From 4d84041a10cc736ee3e9ac39ca078567343e8116 Mon Sep 17 00:00:00 2001 From: enriquezgarc Date: Mon, 22 May 2023 16:10:05 +0200 Subject: [PATCH] Specify supported Arduino architectures. --- LICENSE.md | 2 +- docs/doxygen/doxyfile | 2 +- examples/E9000SPC/E9000SPC.ino | 2 +- .../readAngleSpeedRevolutions/readAngleSpeedRevolutions.ino | 2 +- examples/readAngleTest/readAngleTest.ino | 2 +- .../readAngleValueProcessing/readAngleValueProcessing.ino | 2 +- examples/readMultipleRegisters/readMultipleRegisters.ino | 2 +- examples/readSpeedProcessing/readSpeedProcessing.ino | 2 +- examples/sensorRegisters/const.h | 2 +- examples/sensorRegisters/sensorRegisters.ino | 2 +- examples/sensorType/const.h | 2 +- examples/sensorType/sensorType.ino | 2 +- examples/testSensorMainValues/testSensorMainValues.ino | 2 +- examples/useMultipleSensors/useMultipleSensors.ino | 2 +- examples/writeRegisters/writeRegisters.ino | 2 +- library.json | 2 +- library.properties | 4 ++-- src/TLE5012-ino.hpp | 2 +- src/corelib/TLE5012b.cpp | 2 +- src/corelib/TLE5012b.hpp | 2 +- src/corelib/tle5012b_reg.cpp | 2 +- src/corelib/tle5012b_reg.hpp | 2 +- src/corelib/tle5012b_util.hpp | 2 +- src/framework/arduino/pal/TLE5012-pal-ino.hpp | 2 +- src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.cpp | 2 +- src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.hpp | 2 +- .../readAngleSpeedRevolutions/readAngleSpeedRevolutions.cpp | 2 +- .../readAngleSpeedRevolutions/readAngleSpeedRevolutions.hpp | 2 +- .../wiced-43xxx/apps/readAngleTest/readAngleTest.cpp | 2 +- .../wiced-43xxx/apps/readAngleTest/readAngleTest.hpp | 2 +- .../readAngleValueProcessing/readAngleValueProcessing.cpp | 2 +- .../readAngleValueProcessing/readAngleValueProcessing.hpp | 2 +- .../apps/readMultipleRegisters/readMultipleRegisters.cpp | 2 +- .../apps/readMultipleRegisters/readMultipleRegisters.hpp | 2 +- .../apps/readSpeedProcessing/readSpeedProcessing.cpp | 2 +- .../apps/readSpeedProcessing/readSpeedProcessing.hpp | 2 +- .../wiced-43xxx/apps/sensorRegisters/sensorRegisters.cpp | 2 +- .../wiced-43xxx/apps/sensorRegisters/sensorRegisters.hpp | 2 +- src/framework/wiced-43xxx/apps/sensorType/sensorType.cpp | 2 +- src/framework/wiced-43xxx/apps/sensorType/sensorType.hpp | 2 +- .../apps/testSensorMainValues/testSensorMainValues.cpp | 2 +- .../apps/testSensorMainValues/testSensorMainValues.hpp | 2 +- .../apps/useMultipleSensors/useMultipleSensors.cpp | 2 +- .../apps/useMultipleSensors/useMultipleSensors.hpp | 2 +- .../wiced-43xxx/apps/writeRegisters/writeRegisters.cpp | 2 +- .../wiced-43xxx/apps/writeRegisters/writeRegisters.hpp | 2 +- src/framework/wiced-43xxx/pal/TLE5012-pal-wiced.hpp | 2 +- 47 files changed, 48 insertions(+), 48 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 9dcfe11f..418c9ede 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -2,7 +2,7 @@ MIT License -Copyright (c) 2019-2020 Infineon Technologies AG +Copyright (c) 2019-2023 Infineon Technologies AG Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/doxygen/doxyfile b/docs/doxygen/doxyfile index dfc88210..8848b98b 100644 --- a/docs/doxygen/doxyfile +++ b/docs/doxygen/doxyfile @@ -1,5 +1,5 @@ PROJECT_NAME = "TLE5012B" -PROJECT_NUMBER = 3.0.0 +PROJECT_NUMBER = 3.1.0 PROJECT_BRIEF = "The TLE5012B is a pre-calibrated 360° angle sensor that detects the orientation of a magnetic field. The raw signals (sine and cosine) are digitally processed internally to calculate the angle orientation of the magnetic field (magnet)." OUTPUT_DIRECTORY = ./../docs/doxygen/build CREATE_SUBDIRS = YES diff --git a/examples/E9000SPC/E9000SPC.ino b/examples/E9000SPC/E9000SPC.ino index 5f8d49eb..4c030cae 100644 --- a/examples/E9000SPC/E9000SPC.ino +++ b/examples/E9000SPC/E9000SPC.ino @@ -2,7 +2,7 @@ * \name E9000SPC * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief This example shows how to handle the TLE5012B-E9000 variant with SPC interface * \details * The TLE5012B-E9000 with SPC interface does not start the DSP automatically in a loop at start up. diff --git a/examples/readAngleSpeedRevolutions/readAngleSpeedRevolutions.ino b/examples/readAngleSpeedRevolutions/readAngleSpeedRevolutions.ino index fdbc5453..6b5244b6 100644 --- a/examples/readAngleSpeedRevolutions/readAngleSpeedRevolutions.ino +++ b/examples/readAngleSpeedRevolutions/readAngleSpeedRevolutions.ino @@ -2,7 +2,7 @@ * \name readAngleSpeedRevolutions * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief reads angle value, rotation speed and number of revolutions * \details * This is a fast running example to demonstrate the possible readout diff --git a/examples/readAngleTest/readAngleTest.ino b/examples/readAngleTest/readAngleTest.ino index 2c83679e..46fcc0e0 100644 --- a/examples/readAngleTest/readAngleTest.ino +++ b/examples/readAngleTest/readAngleTest.ino @@ -2,7 +2,7 @@ * \name readAngleTest * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for a first check. * \details * This example reads all main Sensor registers (angle,revolution,speed,range and temperature) diff --git a/examples/readAngleValueProcessing/readAngleValueProcessing.ino b/examples/readAngleValueProcessing/readAngleValueProcessing.ino index 26d5f9c4..a78a7cca 100644 --- a/examples/readAngleValueProcessing/readAngleValueProcessing.ino +++ b/examples/readAngleValueProcessing/readAngleValueProcessing.ino @@ -2,7 +2,7 @@ * \name readAngleValueProcessing * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Reads angle values * \details * This is a fast running example to demonstrate the possible readout diff --git a/examples/readMultipleRegisters/readMultipleRegisters.ino b/examples/readMultipleRegisters/readMultipleRegisters.ino index 93589de9..0ef40d14 100644 --- a/examples/readMultipleRegisters/readMultipleRegisters.ino +++ b/examples/readMultipleRegisters/readMultipleRegisters.ino @@ -2,7 +2,7 @@ * \name readMultipleRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Demostrates how to read multiple registers * \details * This example demonstrates how to read multiple raw registers at once. diff --git a/examples/readSpeedProcessing/readSpeedProcessing.ino b/examples/readSpeedProcessing/readSpeedProcessing.ino index 2aeb2f7a..d53a176e 100644 --- a/examples/readSpeedProcessing/readSpeedProcessing.ino +++ b/examples/readSpeedProcessing/readSpeedProcessing.ino @@ -2,7 +2,7 @@ * \name readSpeedProcessing * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief reads the angle speed * \details * Demonstrates the fast readout of the angle speed. diff --git a/examples/sensorRegisters/const.h b/examples/sensorRegisters/const.h index 41c07553..a50ba02f 100644 --- a/examples/sensorRegisters/const.h +++ b/examples/sensorRegisters/const.h @@ -3,7 +3,7 @@ * \name const * \author Infineon Technologies AG (Dr.Olaf Filies) * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief macros and other const variables * * \attention diff --git a/examples/sensorRegisters/sensorRegisters.ino b/examples/sensorRegisters/sensorRegisters.ino index 40e91618..f852bebf 100644 --- a/examples/sensorRegisters/sensorRegisters.ino +++ b/examples/sensorRegisters/sensorRegisters.ino @@ -2,7 +2,7 @@ * \name sensorRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief Reads all sensor registers and reports there status * \details * This example program will read all documented registers from the sensor and diff --git a/examples/sensorType/const.h b/examples/sensorType/const.h index b60080fb..36530b30 100644 --- a/examples/sensorType/const.h +++ b/examples/sensorType/const.h @@ -2,7 +2,7 @@ * \name const * \author Infineon Technologies AG (Dr.Olaf Filies) * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief macros and other const variables * * \attention diff --git a/examples/sensorType/sensorType.ino b/examples/sensorType/sensorType.ino index 7ddfbd59..f29bd2a6 100644 --- a/examples/sensorType/sensorType.ino +++ b/examples/sensorType/sensorType.ino @@ -2,7 +2,7 @@ * \name sensorType * \author Infineon Technologies AG (Dr.Olaf Filies) * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief prints register bit matrix and sensor interface type * \details * This example program prints the bit matrix of all registers and the sensors default diff --git a/examples/testSensorMainValues/testSensorMainValues.ino b/examples/testSensorMainValues/testSensorMainValues.ino index eeb5c21d..3d9a8f86 100644 --- a/examples/testSensorMainValues/testSensorMainValues.ino +++ b/examples/testSensorMainValues/testSensorMainValues.ino @@ -2,7 +2,7 @@ * \name testSensorMainValues * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief This example can be used for a first fast test if the sensors works * \details * It will generate a looped output of the direct measured data (DIR) and diff --git a/examples/useMultipleSensors/useMultipleSensors.ino b/examples/useMultipleSensors/useMultipleSensors.ino index 6203745b..1e3f07e3 100644 --- a/examples/useMultipleSensors/useMultipleSensors.ino +++ b/examples/useMultipleSensors/useMultipleSensors.ino @@ -2,7 +2,7 @@ * \name useMultipleSensors * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for using up to four sensors on one SPI channel. * \details * This example program starts one to four sensors on one SPI line with different CS pins diff --git a/examples/writeRegisters/writeRegisters.ino b/examples/writeRegisters/writeRegisters.ino index cff2a5c3..5e99972c 100644 --- a/examples/writeRegisters/writeRegisters.ino +++ b/examples/writeRegisters/writeRegisters.ino @@ -2,7 +2,7 @@ * \name writeRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for a writing register settings. * \details * This example show how to use the register write functions diff --git a/library.json b/library.json index 30179176..72681932 100644 --- a/library.json +++ b/library.json @@ -12,7 +12,7 @@ "url":"https://www.infineon.com/cms/en/product/evaluation-boards/tle5012b_e1000_ms2go/", "maintainer": true }, - "version":"3.0.1", + "version":"3.1.0", "frameworks":"arduino", "platforms":[ "infineonxmc", diff --git a/library.properties b/library.properties index 83b9e349..7ec9afdd 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TLE5012B -version=3.0.1 +version=3.1.0 author=Infineon Technologies maintainer=Infineon Technologies sentence=This library enables the Infineon TLE5012B magnetic angle sensor. @@ -7,4 +7,4 @@ paragraph=The TLE5012B is a pre-calibrated 360° angle sensor that detects the o category=Sensors url=https://www.infineon.com/cms/en/product/evaluation-boards/tle5012b_e1000_ms2go/ depends=XMC-for-Arduino -architectures=* +architectures=avr,xmc diff --git a/src/TLE5012-ino.hpp b/src/TLE5012-ino.hpp index c911c108..b7f4f154 100644 --- a/src/TLE5012-ino.hpp +++ b/src/TLE5012-ino.hpp @@ -4,7 +4,7 @@ * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG * \ref tle5012ino - * \version 3.0.0 + * \version 3.1.0 * \brief This is a Arduino platform file use Infineon's TLE5012B magnetic angular sensor * * SPDX-License-Identifier: MIT diff --git a/src/corelib/TLE5012b.cpp b/src/corelib/TLE5012b.cpp index 2670d803..74130c14 100644 --- a/src/corelib/TLE5012b.cpp +++ b/src/corelib/TLE5012b.cpp @@ -3,7 +3,7 @@ * \name TLE5012b.cpp - core library for the TLE5012B angle sensor. * \author Infineon Technologies AG * \copyright 2019-2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \brief GMR-based angle sensor for angular position sensing in automotive applications * \ref tle5012corelib * diff --git a/src/corelib/TLE5012b.hpp b/src/corelib/TLE5012b.hpp index 8380b388..d7b92467 100644 --- a/src/corelib/TLE5012b.hpp +++ b/src/corelib/TLE5012b.hpp @@ -3,7 +3,7 @@ * \name TLE5012b.hpp - core library for the TLE5012B angle sensor. * \author Infineon Technologies AG * \copyright 2019-2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \brief GMR-based angle sensor for angular position sensing in automotive applications * \ref tle5012corelib * diff --git a/src/corelib/tle5012b_reg.cpp b/src/corelib/tle5012b_reg.cpp index f63aad13..9167deaa 100644 --- a/src/corelib/tle5012b_reg.cpp +++ b/src/corelib/tle5012b_reg.cpp @@ -3,7 +3,7 @@ * \name tle5012b_reg.cpp - core support for the TLE5012B angle sensor. * \author Infineon Technologies AG * \copyright 2019-2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \brief GMR-based angle sensor for angular position sensing in automotive applications * \details * This file includes the registry definition macros of all Sensor registers and diff --git a/src/corelib/tle5012b_reg.hpp b/src/corelib/tle5012b_reg.hpp index e7716a98..3752ba1f 100644 --- a/src/corelib/tle5012b_reg.hpp +++ b/src/corelib/tle5012b_reg.hpp @@ -3,7 +3,7 @@ * \name tle5012b_reg.hpp - core register support header for the TLE5012B angle sensor. * \author Infineon Technologies AG * \copyright 2019-2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \brief GMR-based angle sensor for angular position sensing in automotive applications * \details * This file includes the registry definition macros of all Sensor registers and diff --git a/src/corelib/tle5012b_util.hpp b/src/corelib/tle5012b_util.hpp index e2a7bd72..78510936 100644 --- a/src/corelib/tle5012b_util.hpp +++ b/src/corelib/tle5012b_util.hpp @@ -3,7 +3,7 @@ * \name tle5012b_util.hpp - core support header for the TLE5012B angle sensor. * \author Infineon Technologies AG * \copyright 2019-2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \brief GMR-based angle sensor for angular position sensing in automotive applications * \details * This file includes the registry definition macros of all Sensor registers and diff --git a/src/framework/arduino/pal/TLE5012-pal-ino.hpp b/src/framework/arduino/pal/TLE5012-pal-ino.hpp index 008ec474..cbb8ceb9 100644 --- a/src/framework/arduino/pal/TLE5012-pal-ino.hpp +++ b/src/framework/arduino/pal/TLE5012-pal-ino.hpp @@ -3,7 +3,7 @@ * \name TLE5012-pal-ino.hpp - Arduino Hardware Abstraction Layer * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \ref arduinoPal * * SPDX-License-Identifier: MIT diff --git a/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.cpp b/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.cpp index 7e8bb472..138ec8ed 100644 --- a/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.cpp +++ b/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.cpp @@ -2,7 +2,7 @@ * \name E9000SPC * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief This example shows how to handle the TLE5012B-E9000 variant with SPC interface * \details * The TLE5012B-E9000 with SPC interface does not start the DSP automatically in a loop at start up. diff --git a/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.hpp b/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.hpp index 1769c209..645079d7 100644 --- a/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.hpp +++ b/src/framework/wiced-43xxx/apps/E9000SPC/E9000SPC.hpp @@ -2,7 +2,7 @@ * \name E9000SPC * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief This example shows how to handle the TLE5012B-E9000 variant with SPC interface * \details * The TLE5012B-E9000 with SPC interface does not start the DSP automatically in a loop at start up. diff --git a/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.cpp b/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.cpp index 1a069903..874c92fb 100644 --- a/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.cpp +++ b/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.cpp @@ -2,7 +2,7 @@ * \name readAngleSpeedRevolutions * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief reads angle value, rotation speed and number of revolutions * \details * This is a fast running example to demonstrate the possible readout diff --git a/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.hpp b/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.hpp index a8728cfd..7bcb9854 100644 --- a/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.hpp +++ b/src/framework/wiced-43xxx/apps/readAngleSpeedRevolutions/readAngleSpeedRevolutions.hpp @@ -2,7 +2,7 @@ * \name readAngleSpeedRevolutions * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief reads angle value, rotation speed and number of revolutions * \details * This is a fast running example to demonstrate the possible readout diff --git a/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.cpp b/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.cpp index 841ca6f2..e113c3fa 100644 --- a/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.cpp +++ b/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.cpp @@ -2,7 +2,7 @@ * \name readAngleTest * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for a first check. * \details * This example reads all main Sensor registers (angle,revolution,speed,range and temperature) diff --git a/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.hpp b/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.hpp index 08bbb026..18ca040b 100644 --- a/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.hpp +++ b/src/framework/wiced-43xxx/apps/readAngleTest/readAngleTest.hpp @@ -2,7 +2,7 @@ * \name readAngleTest * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for a first check. * \details * This example reads all main Sensor registers (angle,revolution,speed,range and temperature) diff --git a/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.cpp b/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.cpp index 6a6fe0fb..677c0284 100644 --- a/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.cpp +++ b/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.cpp @@ -2,7 +2,7 @@ * \name readAngleValueProcessing * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief reads angle values * \details * This is a fast running example to demonstrate the possible readout diff --git a/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.hpp b/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.hpp index 6d80a462..aacca2ff 100644 --- a/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.hpp +++ b/src/framework/wiced-43xxx/apps/readAngleValueProcessing/readAngleValueProcessing.hpp @@ -2,7 +2,7 @@ * \name readAngleValueProcessing * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief reads angle values * \details * This is a fast running example to demonstrate the possible readout diff --git a/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.cpp b/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.cpp index 31b10555..f4463fe0 100644 --- a/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.cpp +++ b/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.cpp @@ -2,7 +2,7 @@ * \name readMultipleRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Demostrates how to read multiple registers * \details * This example demonstrates how to read multiple raw registers at once. diff --git a/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.hpp b/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.hpp index 38a54c24..78a7ff36 100644 --- a/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.hpp +++ b/src/framework/wiced-43xxx/apps/readMultipleRegisters/readMultipleRegisters.hpp @@ -2,7 +2,7 @@ * \name readMultipleRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Demostrates how to read multiple registers * \details * This example demonstrates how to read multiple raw registers at once. diff --git a/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.cpp b/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.cpp index 6e05db73..0b24e058 100644 --- a/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.cpp +++ b/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.cpp @@ -2,7 +2,7 @@ * \name readSpeedProcessing * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief This example can be used for a first fast test if the sensors works * \details * Demonstrates the fast readout of the angle speed. diff --git a/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.hpp b/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.hpp index a0461e54..28a33295 100644 --- a/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.hpp +++ b/src/framework/wiced-43xxx/apps/readSpeedProcessing/readSpeedProcessing.hpp @@ -2,7 +2,7 @@ * \name readSpeedProcessing * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief This example can be used for a first fast test if the sensors works * \details * Demonstrates the fast readout of the angle speed. diff --git a/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.cpp b/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.cpp index 638e2332..588f5c54 100644 --- a/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.cpp +++ b/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.cpp @@ -2,7 +2,7 @@ * \name sensorRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief Reads all sensor registers and reports there status * \details * This example program will read all documented registers from the sensor and diff --git a/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.hpp b/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.hpp index 89ffafe9..407bfc39 100644 --- a/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.hpp +++ b/src/framework/wiced-43xxx/apps/sensorRegisters/sensorRegisters.hpp @@ -2,7 +2,7 @@ * \name sensorRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief Reads all sensor registers and reports there status * \details * This example program will read all documented registers from the sensor and diff --git a/src/framework/wiced-43xxx/apps/sensorType/sensorType.cpp b/src/framework/wiced-43xxx/apps/sensorType/sensorType.cpp index 1b11aafb..fcc55a06 100644 --- a/src/framework/wiced-43xxx/apps/sensorType/sensorType.cpp +++ b/src/framework/wiced-43xxx/apps/sensorType/sensorType.cpp @@ -2,7 +2,7 @@ * \name sensorType * \author Infineon Technologies AG (Dr.Olaf Filies) * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief prints register bit matrix and sensor interface type * \details * This example program prints the bit matrix of all registers and the sensors default diff --git a/src/framework/wiced-43xxx/apps/sensorType/sensorType.hpp b/src/framework/wiced-43xxx/apps/sensorType/sensorType.hpp index 418944da..fa8e3c8d 100644 --- a/src/framework/wiced-43xxx/apps/sensorType/sensorType.hpp +++ b/src/framework/wiced-43xxx/apps/sensorType/sensorType.hpp @@ -2,7 +2,7 @@ * \name sensorType * \author Infineon Technologies AG (Dr.Olaf Filies) * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief prints register bit matrix and sensor interface type * \details * This example program prints the bit matrix of all registers and the sensors default diff --git a/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.cpp b/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.cpp index c041701a..f7169459 100644 --- a/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.cpp +++ b/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.cpp @@ -2,7 +2,7 @@ * \name testSensorMainValues * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief This example can be used for a first fast test if the sensors works * \details * It will generate a looped output of the direct measured data (DIR) and diff --git a/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.hpp b/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.hpp index a2384184..ed800732 100644 --- a/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.hpp +++ b/src/framework/wiced-43xxx/apps/testSensorMainValues/testSensorMainValues.hpp @@ -2,7 +2,7 @@ * \name testSensorMainValues * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.1 + * \version 3.1.0 * \brief This example can be used for a first fast test if the sensors works * \details * It will generate a looped output of the direct measured data (DIR) and diff --git a/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.cpp b/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.cpp index 40a42c6d..6ca32502 100644 --- a/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.cpp +++ b/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.cpp @@ -2,7 +2,7 @@ * \name useMultipleSensors * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for using up to four sensors on one SPI channel. * \details * This example program starts one to four sensors on one SPI line with different CS pins diff --git a/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.hpp b/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.hpp index 94f4af27..498cf594 100644 --- a/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.hpp +++ b/src/framework/wiced-43xxx/apps/useMultipleSensors/useMultipleSensors.hpp @@ -2,7 +2,7 @@ * \name useMultipleSensors * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for using up to four sensors on one SPI channel. * \details * This example program starts one to four sensors on one SPI line with different CS pins diff --git a/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.cpp b/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.cpp index 2aa1b0cb..bdd65473 100644 --- a/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.cpp +++ b/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.cpp @@ -2,7 +2,7 @@ * \name writeRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for a writing register settings. * \details * This example show how to use the register write functions diff --git a/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.hpp b/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.hpp index 70fcfff6..74f3e401 100644 --- a/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.hpp +++ b/src/framework/wiced-43xxx/apps/writeRegisters/writeRegisters.hpp @@ -2,7 +2,7 @@ * \name writeRegisters * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 2.0.1 + * \version 3.1.0 * \brief Testscript for a writing register settings. * \details * This example show how to use the register write functions diff --git a/src/framework/wiced-43xxx/pal/TLE5012-pal-wiced.hpp b/src/framework/wiced-43xxx/pal/TLE5012-pal-wiced.hpp index e3f988f5..270efc00 100644 --- a/src/framework/wiced-43xxx/pal/TLE5012-pal-wiced.hpp +++ b/src/framework/wiced-43xxx/pal/TLE5012-pal-wiced.hpp @@ -3,7 +3,7 @@ * \name TLE5012-pal-wiced.hpp - Wiced Hardware Abstraction Layer * \author Infineon Technologies AG * \copyright 2020 Infineon Technologies AG - * \version 3.0.0 + * \version 3.1.0 * \ref wicedPal * * SPDX-License-Identifier: MIT