11fc182315
SOC_ESP32_NET is now SOC_ESP32_APPCPU, following espressif's naming convention in the same manner as ESP32S3 app cpu. SOC_ESP32_APPCU is now a subset of SOC_SERIES_ESP32. This commit also changes the necessary files, samples and tests for bisect purposes. Signed-off-by: Lucas Tamborrino <lucas.tamborrino@espressif.com>
15 lines
419 B
Plaintext
15 lines
419 B
Plaintext
# Copyright (c) 2023 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config BOARD_ESP32_DEVKITC_WROOM
|
|
bool "ESP32-DEVKITC-WROOM Development Board"
|
|
depends on SOC_SERIES_ESP32
|
|
|
|
config BOARD_ESP32_DEVKITC_WROOM_APPCPU
|
|
bool "ESP32 Board configuration for APPCPU (core 1)."
|
|
depends on SOC_SERIES_ESP32 && SOC_ESP32_APPCPU
|
|
|
|
choice SOC_PART_NUMBER
|
|
default SOC_ESP32_WROOM_32UE_N4
|
|
endchoice
|