mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 11:39:46 +08:00
f7496df804
We now 'select I2C' and/or SPI bus in Kconfig in the sensor driver Kconfig's so there is no need to have boards do the following: config I2C default y if SENSOR config SPI default y if SENSOR Signed-off-by: Kumar Gala <galak@kernel.org>
31 lines
405 B
Plaintext
31 lines
405 B
Plaintext
# FRDM-K64F board
|
|
|
|
# Copyright (c) 2016, Freescale Semiconductor, Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_FRDM_K64F
|
|
|
|
config BOARD
|
|
default "frdm_k64f"
|
|
|
|
config OSC_XTAL0_FREQ
|
|
default 50000000
|
|
|
|
config MCG_PRDIV0
|
|
default 0x13
|
|
|
|
config MCG_VDIV0
|
|
default 0x18
|
|
|
|
config MCG_FCRDIV
|
|
default 1
|
|
|
|
if NETWORKING
|
|
|
|
config NET_L2_ETHERNET
|
|
default y if !MODEM
|
|
|
|
endif # NETWORKING
|
|
|
|
endif # BOARD_FRDM_K64F
|