Adds into esp32s3_devkitm the appcpu board to allow building applications running in ESP32S3 2nd core (appcpu). Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
15 lines
437 B
Text
15 lines
437 B
Text
# Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# ESP32S3 DevKitM board configuration
|
|
config BOARD_ESP32S3_DEVKITM
|
|
bool "ESP32S3 DevKitM Board"
|
|
depends on SOC_SERIES_ESP32S3
|
|
|
|
config BOARD_ESP32S3_DEVKITM_APPCPU
|
|
bool "ESP32S3 Board configuration for APPCPU (core 1)."
|
|
depends on SOC_SERIES_ESP32S3 && SOC_ESP32S3_APPCPU
|
|
|
|
choice SOC_PART_NUMBER
|
|
default SOC_ESP32S3_MINI_N8
|
|
endchoice
|