Skip to content

Commit c7bf27b

Browse files
committed
Working Test for Arudino
1 parent a71490e commit c7bf27b

3 files changed

Lines changed: 36 additions & 0 deletions

File tree

Makefile

Whitespace-only changes.

iöjdk.fm

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
3.x-pre-release
2+
* added_spi
3+
core-test-xmc-3.x
4+
master
5+
remotes/origin/3.x-pre-release
6+
remotes/origin/4.0.0-pre-release
7+
remotes/origin/DESMAKERS-4279-rename-the-metafile-vendor-from-infineon-to-infineon
8+
remotes/origin/DESMAKERS-4347-4350-development-instuctions-env-setup
9+
remotes/origin/DESMAKERS-4349-code_convention.md-in-xmc4arduino
10+
remotes/origin/HEAD -> origin/master
11+
remotes/origin/HIL-test
12+
remotes/origin/core-api-update
13+
remotes/origin/core-test-xmc-3.x
14+
remotes/origin/doc-preview
15+
remotes/origin/master
16+
remotes/origin/master-1.x
17+
remotes/origin/xmc-dev-ops

tests/test_config.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
* @file test_config.h
3+
* @brief Configuration file for board-specific test pin definitions.
4+
*
5+
* This header file contains the definitions of the pins used for testing
6+
* purposes on the specific board. These pins are configured as output and
7+
* input pins for various test scenarios.
8+
*
9+
*/
10+
#ifndef TEST_CONFIG_H
11+
#define TEST_CONFIG_H
12+
13+
#include <stdint.h>
14+
15+
// test defines
16+
const uint8_t TEST_DIGITALIO_OUTPUT = 4; // IO0
17+
const uint8_t TEST_DIGITALIO_INPUT = 2; // IO1
18+
19+
#endif // TEST_CONFIG_H

0 commit comments

Comments
 (0)