There is no need for this config here and it is messing with total sys heap calculation. Signed-off-by: Lucas Tamborrino <lucas.tamborrino@espressif.com>
27 lines
638 B
Text
27 lines
638 B
Text
# Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_SERIES_ESP32S3
|
|
|
|
config SOC_SERIES
|
|
default "esp32s3"
|
|
|
|
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
|
|
|
|
config FLASH_SIZE
|
|
default $(dt_node_reg_size_int,/soc/flash-controller@60002000/flash@0,0)
|
|
|
|
config FLASH_BASE_ADDRESS
|
|
default $(dt_node_reg_addr_hex,/soc/flash-controller@60002000/flash@0)
|
|
|
|
endif # SOC_SERIES_ESP32S3
|