Add support to BLE and BR/EDR feature. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
25 lines
433 B
Text
25 lines
433 B
Text
# Copyright (c) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_ESP32
|
|
bool "ESP32"
|
|
select XTENSA
|
|
select CLOCK_CONTROL
|
|
select CLOCK_CONTROL_ESP32
|
|
|
|
if SOC_ESP32
|
|
|
|
config IDF_TARGET_ESP32
|
|
bool "ESP32 as target board"
|
|
default y
|
|
|
|
config ESPTOOLPY_FLASHFREQ_80M
|
|
bool
|
|
default y
|
|
|
|
config ESP32_BT_RESERVE_DRAM
|
|
hex "Bluetooth controller reserved RAM region"
|
|
default 0xdb5c if BT
|
|
default 0
|
|
|
|
endif # SOC_ESP32
|