forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig.mcux
72 lines (59 loc) · 1.21 KB
/
Kconfig.mcux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Kconfig - MCUXpresso SDK pinmux
#
# Copyright (c) 2016, Freescale Semiconductor, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig PINMUX_MCUX
bool "MCUX pinmux driver"
depends on HAS_MCUX
default n
help
Enable the MCUX pinmux driver.
if PINMUX_MCUX
config PINMUX_MCUX_PORTA
bool "Port A"
default n
help
Enable Port A.
config PINMUX_MCUX_PORTA_NAME
string "Pinmux Port A driver name"
depends on PINMUX_MCUX_PORTA
default "porta"
config PINMUX_MCUX_PORTB
bool "Port B"
default n
help
Enable Port B.
config PINMUX_MCUX_PORTB_NAME
string "Pinmux Port B driver name"
depends on PINMUX_MCUX_PORTB
default "portb"
config PINMUX_MCUX_PORTC
bool "Port C"
default n
help
Enable Port C.
config PINMUX_MCUX_PORTC_NAME
string "Pinmux Port C driver name"
depends on PINMUX_MCUX_PORTC
default "portc"
config PINMUX_MCUX_PORTD
bool "Port D"
default n
help
Enable Port D.
config PINMUX_MCUX_PORTD_NAME
string "Pinmux Port D driver name"
depends on PINMUX_MCUX_PORTD
default "portd"
config PINMUX_MCUX_PORTE
bool "Port E"
default n
help
Enable Port E.
config PINMUX_MCUX_PORTE_NAME
string "Pinmux Port E driver name"
depends on PINMUX_MCUX_PORTE
default "porte"
endif # PINMUX_MCUX