Skip to content

Commit ca9062d

Browse files
committed
tests/: Modify pin numbers for interrupts.
Signed-off-by: MDin <Dinesh.M-EE@infineon.com>
1 parent 03f2668 commit ca9062d

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

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 Pin Definitions
16+
#define TEST_DIGITALIO_OUTPUT 4 // IO_4
17+
#define TEST_DIGITALIO_INPUT 3 // IO_3
18+
19+
#endif // TEST_CONFIG_H

0 commit comments

Comments
 (0)