Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
237 changes: 0 additions & 237 deletions .github/workflows/hil-unity-checks.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

![Compilation Status](https://github.com/Infineon/XMC-for-Arduino/actions/workflows/compile-platform-examples.yml/badge.svg)
[![Documentation Status](https://readthedocs.org/projects/xmc-arduino/badge/?version=latest)](https://xmc-arduino.readthedocs.io/en/latest/?badge=latest)
[![Hil unity library checks](https://github.com/Infineon/XMC-for-Arduino/actions/workflows/hil-unity-checks.yml/badge.svg)](https://github.com/Infineon/XMC-for-Arduino/actions/workflows/hil-unity-checks.yml)
[![Check links](https://github.com/Infineon/XMC-for-Arduino/actions/workflows/check_links.yml/badge.svg)](https://github.com/Infineon/XMC-for-Arduino/actions/workflows/check_links.yml)

This project integrates Infineon's 32-bit XMC™ Industrial Arm® Cortex®-M Microcontroller into the [Arduino](https://www.arduino.cc/en/Guide/Introduction) ecosystem.
This project integrates Infineon's 32-bit XMC™ Industrial Arm® Cortex®-M Microcontroller into the [Arduino](https://docs.arduino.cc/learn/starting-guide/getting-started-arduino/) ecosystem.

The [XMC™ microcontroller family](https://www.infineon.com/cms/de/product/microcontroller/32-bit-industrial-microcontroller-based-on-arm-cortex-m/) from Infineon is a powerful and versatile platform for embedded system development. The XMC for Arduino core provides a comprehensive set of APIs, examples, and tools for developing a wide range of applications, allowing developers to leverage the ease of use and flexibility of the Arduino platform while harnessing the advanced features and performance of the XMC™ microcontrollers.

Expand Down
9 changes: 4 additions & 5 deletions tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ ulimit -n 1024

function ci_commit_formatting_run {
git remote add upstream https://github.com/Infineon/XMC-for-Arduino.git
git fetch --depth=100 upstream master
git fetch --depth=100 upstream master-2.x-3.x
# If the common ancestor commit hasn't been found, fetch more.
git merge-base upstream/master HEAD || git fetch upstream master
# For a PR, upstream/master..HEAD ends with a merge commit into master, exclude that one.
python tools/verifygitlog.py -v upstream/master..HEAD --no-merges
git merge-base upstream/master-2.x-3.x HEAD || git fetch upstream master-2.x-3.x
# For a PR, upstream/master-2.x-3.x..HEAD ends with a merge commit, exclude that one.
python tools/verifygitlog.py --ignore-rebase -v upstream/master-2.x-3.x..HEAD --no-merges
}

Loading