1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:29:45 +01:00

pkg/esp32_sdk_lib_bt_esp32: add BLE library for ESP32

This commit is contained in:
Gunar Schorcht 2022-08-11 09:57:06 +02:00
parent 5b004f387d
commit 13770be456
5 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# Copyright (c) 2021 Gunar Schorcht
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config PACKAGE_ESP32_SDK_LIB_BT_ESP32
bool "ESP32 SDK Bluetooth library for the ESP32 SoC"
depends on TEST_KCONFIG
depends on HAS_ARCH_ESP32
depends on HAS_ESP_BLE_ESP32
help
Vendor SDK Bluetooth library for ESP32 SoC

View File

@ -0,0 +1,10 @@
PKG_NAME=esp32_sdk_lib_bt_esp32
PKG_URL=https://github.com/espressif/esp32-bt-lib
# This is a version in the v4.4.1 release branch
PKG_VERSION=b877f7e1fc98dccfcf4dbf31f215c5cb44ec3f0d
PKG_LICENSE=Apache-2.0
include $(RIOTBASE)/pkg/pkg.mk
# there is nothing to compile
all:

View File

@ -0,0 +1,4 @@
# This package can only be used with the ESP32 CPU
FEATURES_REQUIRED += arch_esp32
FEATURES_REQUIRED += esp_ble
FEATURES_REQUIRED += esp_ble_esp32

View File

@ -0,0 +1,3 @@
export ESP32_SDK_LIB_BT_DIR ?= $(PKGDIRBASE)/esp32_sdk_lib_bt_esp32
PSEUDOMODULES += esp32_sdk_lib_bt_esp32

View File

@ -0,0 +1,6 @@
/**
* @defgroup pkg_esp32_sdk_lib_bt_esp32 ESP32 SDK Bluetooth library for the ESP32 SoC
* @ingroup pkg_esp32_sdk
* @brief Vendor SDK Bluetooth library for ESP32 SoC by Espressif
* @see https://github.com/espressif/esp32-bt-lib
*/