We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f2668 commit ca9062dCopy full SHA for ca9062d
1 file changed
tests/test_config.h
@@ -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