22 lines
445 B
Plaintext
22 lines
445 B
Plaintext
# Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_SERIES_ESP32_NET
|
|
|
|
config SOC_SERIES
|
|
default "esp32_net"
|
|
|
|
config MINIMAL_LIBC_OPTIMIZE_STRING_FOR_SIZE
|
|
default n
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency)
|
|
|
|
config XTENSA_CCOUNT_HZ
|
|
default SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
|
|
config ESPTOOLPY_FLASHFREQ_80M
|
|
default y
|
|
|
|
endif # SOC_ESP32_NET
|