Skip to content

Commit 63024b8

Browse files
committed
tests: drivers: gint: Add GINT test case
The test cases cover: 1. Pin enable and disable 2. Edge trigger and level trigger for single pin 3. OR combination and AND combination for multiple pins Signed-off-by: Jason Yu <[email protected]>
1 parent 5aba439 commit 63024b8

File tree

4 files changed

+416
-0
lines changed

4 files changed

+416
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright 2025 NXP
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
cmake_minimum_required(VERSION 3.20.0)
5+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
6+
project(test_intc_nxp_gint)
7+
8+
target_sources(app PRIVATE src/main.c)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Copyright 2025 NXP
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
CONFIG_ZTEST=y
5+
CONFIG_GPIO=y
6+
CONFIG_NXP_GINT=y
7+
CONFIG_INTC_LOG_LEVEL_DBG=y

0 commit comments

Comments
 (0)