mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 10:18:24 +08:00
236484456f
Have the kscan device enabled in devicetree will now get the driver enabled by default when CONFIG_KSCAN=y is set. So we can remove driver enabling Kconfig values in various Kconfig.defconfig files. Signed-off-by: Kumar Gala <galak@kernel.org>
28 lines
398 B
Plaintext
28 lines
398 B
Plaintext
# PineTime DevKit0 board configuration
|
|
|
|
# Copyright (c) 2020 Stephane Dorre <stephane.dorre@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_PINETIME_DEVKIT0
|
|
|
|
config BOARD
|
|
default "pinetime_devkit0"
|
|
|
|
config BT_CTLR
|
|
default BT
|
|
|
|
if FLASH
|
|
|
|
config SPI
|
|
default y
|
|
|
|
config SPI_NOR
|
|
default y
|
|
|
|
config SPI_NOR_FLASH_LAYOUT_PAGE_SIZE
|
|
default 4096
|
|
|
|
endif # FLASH
|
|
|
|
endif # BOARD_PINETIME_DEVKIT0
|