/* * Copyright (C) 2022 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. */ /** * @ingroup cpu_esp32_esp_ble_nimble * @{ * * @file * @brief NimBLE configuration for ESP32x SoCs * * @author Gunar Schorcht */ #ifndef ESP_BLE_NIMBLE_SYSCFG_SYSCFG_H #define ESP_BLE_NIMBLE_SYSCFG_SYSCFG_H #if !DOXYGEN /* disable native transport mechanism and enable the custom transport mechanism */ #define MYNEWT_VAL_BLE_TRANSPORT_LL__custom (1) #define MYNEWT_VAL_BLE_TRANSPORT_LL__native (0) #include_next "syscfg/syscfg.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #endif /* !DOXYGEN */ #endif /* ESP_BLE_NIMBLE_SYSCFG_SYSCFG_H */ /** @} */