Atmel Software Framework (ASF) provides a set of low-level header files that give access to different hardware peripherals of Atmel's ICs. This patch adds build infrastructure files like Makefile and Kconfig to introduce ASF into Zephyr. Jira: ZEP-976 Change-Id: I52eead376f6c1a057d6f03292ef77ff00f1b8708 Signed-off-by: Piotr Mienkowski <piotr.mienkowski@gmail.com>
28 lines
467 B
Plaintext
28 lines
467 B
Plaintext
# Kconfig - external HAL source code configuration options
|
|
|
|
#
|
|
# Copyright (c) 2016 Linaro Ltd.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
|
|
menu "HALs"
|
|
|
|
source "ext/hal/atmel/asf/Kconfig"
|
|
|
|
source "ext/hal/cmsis/Kconfig"
|
|
|
|
source "ext/hal/nordic/Kconfig"
|
|
|
|
source "ext/hal/nxp/mcux/Kconfig"
|
|
|
|
source "ext/hal/qmsi/Kconfig"
|
|
|
|
source "ext/hal/st/stm32cube/Kconfig"
|
|
|
|
source "ext/hal/ti/cc3200sdk/Kconfig"
|
|
|
|
endmenu
|