1# Copyright 2025 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig SENT
5	bool "SENT Single Edge Nibble Transmission (SENT)"
6	help
7	  Enable SENT Driver Configuration
8
9if SENT
10
11module = SENT
12module-str = sent
13source "subsys/logging/Kconfig.template.log_config"
14
15config SENT_INIT_PRIORITY
16	int "SENT driver init priority"
17	default KERNEL_INIT_PRIORITY_DEVICE
18	help
19	  SENT driver device initialization priority.
20
21source "drivers/sent/Kconfig.nxp_s32"
22
23endif # SENT
24