1# FRDM-K64F board
2
3# Copyright (c) 2016, Freescale Semiconductor, Inc.
4# SPDX-License-Identifier: Apache-2.0
5
6if BOARD_FRDM_K64F
7
8config OSC_XTAL0_FREQ
9	default 50000000
10
11config MCG_PRDIV0
12	default 0x13
13
14config MCG_VDIV0
15	default 0x18
16
17config MCG_FCRDIV
18	default 1
19
20config TEST_EXTRA_STACK_SIZE
21	default 128
22
23if NETWORKING
24
25config NET_L2_ETHERNET
26	default y if !MODEM
27
28endif # NETWORKING
29
30endif # BOARD_FRDM_K64F
31