Linux debugging

Check our new training course

Linux debugging, tracing, profiling & perf. analysis

Check our new training course
with Creative Commons CC-BY-SA
lecture and lab materials

Bootlin logo

Elixir Cross Referencer

# Kconfig - Kinetis KE1xF series configuration options
#
# Copyright (c) 2019 Vestas Wind Systems A/S
#
# SPDX-License-Identifier: Apache-2.0
#

if SOC_SERIES_KINETIS_KE1XF

config SOC_SERIES
	default "ke1xf"

config NUM_IRQS
	int
	# must be >= the highest interrupt number used
	default 91

if CLOCK_CONTROL

config CLOCK_CONTROL_MCUX_SCG
	default y

config CLOCK_CONTROL_MCUX_SIM
	default y

config CLOCK_CONTROL_MCUX_PCC
	default y

endif # CLOCK_CONTROL

if WATCHDOG

config WDT_MCUX_WDOG32
	default y

endif # WATCHDOG

if RTC

config RTC_MCUX
	default y

endif # RTC

if COUNTER

config COUNTER_MCUX_RTC
	default y

endif # COUNTER

if PWM

config PWM_MCUX_FTM
	default y

endif # PWM

if PINMUX

config PINMUX_MCUX
	default y

endif # PINMUX

config GPIO
	default y

if GPIO

config GPIO_MCUX
	default y

endif # GPIO

if FLASH

config SOC_FLASH_MCUX
	default y

endif # FLASH

if SERIAL

config UART_MCUX_LPUART
	default y

endif # SERIAL

if I2C

config I2C_MCUX_LPI2C
	default y

endif # I2C

if SPI

config SPI_MCUX_LPSPI
	default y

endif # SPI

if ADC

config ADC_MCUX_ADC12
	default y

endif # ADC

source "soc/arm/nxp_kinetis/ke1xf/Kconfig.defconfig.mke*"

endif # SOC_SERIES_KINETIS_KE1XF