Skip to content

Commit 6c9f20b

Browse files
committed
libraries: Update name KIT_XMC47_RELAX.
Signed-off-by: zhanglinjing <Linjing.Zhang@infineon.com>
1 parent d34160c commit 6c9f20b

13 files changed

Lines changed: 20 additions & 20 deletions

File tree

libraries/CAN/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Based on [Arduino CAN library](https://www.arduino.cc/reference/en/libraries/can
44

55
# Hardware Setup
66

7-
XMC boards with CAN support (CAN transceiver on board and CAN controller module): KIT_XMC_PLT2GO_XMC4200, KIT_XMC_PLT2GO_XMC4400, KIT_XMC47_RELAX_5V_AD_V1 and KIT_XMC14_2GO.
7+
XMC boards with CAN support (CAN transceiver on board and CAN controller module): KIT_XMC_PLT2GO_XMC4200, KIT_XMC_PLT2GO_XMC4400, KIT_XMC47_RELAX and KIT_XMC14_2GO.
88

9-
:warning: There is a 120 ohm terminal resistor on the KIT_XMC_PLT2GO_XMC4400 and KIT_XMC14_2GO boards, not on the KIT_XMC_PLT2GO_XMC4200 and KIT_XMC47_RELAX_5V_AD_V1. Please remove or add resistors as needed.
9+
:warning: There is a 120 ohm terminal resistor on the KIT_XMC_PLT2GO_XMC4400 and KIT_XMC14_2GO boards, not on the KIT_XMC_PLT2GO_XMC4200 and KIT_XMC47_RELAX. Please remove or add resistors as needed.
1010

1111
All CAN nodes should be connected using the (twisted) pair cable for the CAN_H and CAN_L
1212

libraries/DMA/examples/DMA_Memory/DMA_Memory.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Simple DMA example for KIT_XMC47_RELAX_5V_AD_V1
2+
* Simple DMA example for KIT_XMC47_RELAX
33
* Demonstrates how to setup an DMA, to transfer data between two places in memory.
44
* Prints the message in Serial port.
55
*/

libraries/DMA/examples/DMA_UART/DMA_UART.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Simple DMA example for KIT_XMC47_RELAX_5V_AD_V1
2+
* Simple DMA example for KIT_XMC47_RELAX
33
* Demonstrates how to setup an DMA, between memory and UART module.
44
* Prints the message in Serial port.
55
*/

libraries/DeviceControlXMC/examples/SleepModeXMC4700/SleepModeXMC4700.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Simple Sleep Mode for KIT_XMC47_RELAX_5V_AD_V1 V1
2+
Simple Sleep Mode for KIT_XMC47_RELAX
33
Demonstrates the ability to control peripherals on sleep mode.
44
LED2 will blink fast on active mode. If CCU4 is ON in sleep mode, LED2 will blink slower (because of slower clock) while in sleep mode.
55
If CCU is OFF in sleep mode, LED2 will stop blinking, until device wakes up.

libraries/I2S/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ the master device and read audio input from another device such as a microphone.
66
Be aware that only reading is possible for the time being - no I2S output is supported.
77

88
## Wiring
9-
The library has been tested with the KIT_XMC47_RELAX_5V_AD_V1, XMC1100 XMC 2Go, and KIT_XMC11_BOOT_001 in combination with the IM69D130 Microphone Shield2Go.
9+
The library has been tested with the KIT_XMC47_RELAX, XMC1100 XMC 2Go, and KIT_XMC11_BOOT_001 in combination with the IM69D130 Microphone Shield2Go.
1010

11-
* For the KIT_XMC47_RELAX_5V_AD_V1, following ports/pins should be connected:
11+
* For the KIT_XMC47_RELAX, following ports/pins should be connected:
1212
- BCLK -- P3.10
1313
- DATA -- P3.7
1414
- CLK -- P3.9
@@ -66,7 +66,7 @@ Please refer to the data sheet of your specific microphone for the sampling rate
6666
If you are using XMC1000 family boards, the recommended sampling rate is 12 kHz as higher values might interfere with the microcontroller speed.
6767
Since both `Serial` and `I2S` use USIC interrupts, there could be a problem with processing remaining code as the processor could get locked out via interrupts.
6868

69-
However, if you are using an XMC4000 board such as a KIT_XMC47_RELAX_5V_AD_V1, you shouldn't have to worry about these issues in particular.
69+
However, if you are using an XMC4000 board such as a KIT_XMC47_RELAX, you shouldn't have to worry about these issues in particular.
7070

7171
### Data delay
7272
Sometimes, it also makes sense to adjust the data delay, which is the delay between a changing WA/LRCL edge and the start of a sample depending on the microphone of your choice. Please be aware that there are different `I2S.begin()` functions which allow to set the parameters very precisely. Have a look in the I2S.h file for more information.

libraries/I2S/src/I2S.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ void I2SClass::_onSampleReceived() {
415415
}
416416

417417
extern "C" {
418-
#if defined(KIT_XMC47_RELAX_5V_AD_V1)
418+
#if defined(KIT_XMC47_RELAX)
419419
void USIC2_2_IRQHandler() { I2S._onSampleReceived(); }
420420
#elif defined(KIT_XMC_2GO_XMC1100_V1) || defined(KIT_XMC11_BOOT_001)
421421
void USIC0_2_IRQHandler() { I2S._onSampleReceived(); }

libraries/I2S/src/I2S.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* @section Wiring
4040
* The library has been tested with the
41-
*KIT_XMC47_RELAX_5V_AD_V1/KIT_XMC_2GO_XMC1100_V1/KIT_XMC11_BOOT_001. interfacing an Infineon
41+
*KIT_XMC47_RELAX/KIT_XMC_2GO_XMC1100_V1/KIT_XMC11_BOOT_001. interfacing an Infineon
4242
*IM69D130 Microphone Shield2Go. For the XMC4700 relax board, following ports should be connected:
4343
*LRCL -- 3.10 DOUT -- 3.7 SCLK -- 3.9 GND -- GND 3.3V -- 3.3V
4444
*

libraries/LED/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ models of board so we end up with
4646
KIT_XMC1400_ARDUINO | Low | Yes | High
4747
KIT_XMC_PLT2GO_XMC4200 | High| No | High
4848
KIT_XMC_PLT2GO_XMC4400 | High| No | High
49-
KIT_XMC47_RELAX_5V_AD_V1 | High| No | High
50-
KIT_XMC47_RELAX_5V_AD_V1 Lite | High| No | High
49+
KIT_XMC47_RELAX | High| No | High
50+
KIT_XMC47_RELAX Lite | High| No | High
5151

5252
** NOTE ** After Version 2.0 of XMC-for-Arduino, some boards were dropped (e.g. XMC1300 Sense2GO) they are still shown here for those using old versions of XMC-for-Arduino, and for history.
5353

libraries/OneWire/src/util/OneWireConf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ XMC_SPI_t mappingHW[] = {
147147
.output_level = XMC_GPIO_OUTPUT_LEVEL_HIGH,
148148
.input_hysteresis = XMC_GPIO_INPUT_HYSTERESIS_STANDARD}}};
149149

150-
#elif defined(KIT_XMC47_RELAX_5V_AD_V1)
150+
#elif defined(KIT_XMC47_RELAX)
151151
#define NUM_ONEWIRE_HW 6
152152
#define PIN_HAS_ONEWIRE_HW(pin) \
153153
((pin == 1) || (pin == 15) || (pin == 29) || (pin == 37) || (pin == 70) || (pin == 88))

libraries/RTC/examples/AlarmRTC/AlarmRTC.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/*
22
Simple RTC Alarm for XMC Boards
3-
Demonstrates how to set an RTC alarm for the KIT_XMC47_RELAX_5V_AD_V1 V1
3+
Demonstrates how to set an RTC alarm for the KIT_XMC47_RELAX V1
44
*/
55

66
/*
77
Board Check
8-
This library can currently only be used with the KIT_XMC47_RELAX_5V_AD_V1
8+
This library can currently only be used with the KIT_XMC47_RELAX
99
If you modify the library to work with other XMC versions, remove the following lines
1010
*/
1111
#if (UC_FAMILY != XMC4)
12-
#error This XMC board is not supported, only KIT_XMC47_RELAX_5V_AD_V1 is supported
12+
#error This XMC board is not supported, only KIT_XMC47_RELAX is supported
1313
#endif
1414
// End of Board Check
1515

0 commit comments

Comments
 (0)