Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | # Kconfig - 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 UART_MCUX config UART_MCUX_0 default y if UART_CONSOLE config UART_MCUX_3 default y if BT_UART endif # UART_MCUX if PINMUX_MCUX config PINMUX_MCUX_PORTA default y config PINMUX_MCUX_PORTB default y config PINMUX_MCUX_PORTC default y config PINMUX_MCUX_PORTD default y if SPI_0 || UART_MCUX_2 config PINMUX_MCUX_PORTE default y endif # PINMUX_MCUX if GPIO_MCUX config GPIO_MCUX_PORTA default y config GPIO_MCUX_PORTB default y config GPIO_MCUX_PORTC default y config GPIO_MCUX_PORTD default y config GPIO_MCUX_PORTE default y endif # GPIO_MCUX if I2C config I2C_0 default y endif # I2C if ADC config ADC_1 default y endif # ADC if PWM_MCUX_FTM config PWM_3 default y endif # PWM_MCUX_FTM if SPI config SPI_0 default y endif # SPI if NETWORKING config NET_L2_ETHERNET default y if !MODEM config ETH_MCUX_0 default y if NET_L2_ETHERNET endif # NETWORKING if CAN config CAN_0 default y endif # CAN endif # BOARD_FRDM_K64F |