26 lines
326 B
Plaintext
26 lines
326 B
Plaintext
|
# Kconfig - Microchip MEC1701QSZ MCU
|
||
|
#
|
||
|
# Copyright (c) 2018 Intel Corporation
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
if SOC_MEC1701_QSZ
|
||
|
|
||
|
config SOC
|
||
|
string
|
||
|
default "mec1701qsz"
|
||
|
|
||
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
||
|
int
|
||
|
default 48000000
|
||
|
|
||
|
if SERIAL
|
||
|
|
||
|
config UART_NS16550
|
||
|
def_bool y
|
||
|
|
||
|
endif # SERIAL
|
||
|
|
||
|
endif # SOC_MEC1701_QSZ
|