/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 */ #ifndef COMMON_H #define COMMON_H /* Includes */ /* STD APIs */ #include #include #include /* ESP APIs */ #include "esp_log.h" #include "nvs_flash.h" #include "sdkconfig.h" /* FreeRTOS APIs */ #include #include /* NimBLE stack APIs */ #include "host/ble_hs.h" #include "host/ble_uuid.h" #include "host/util/util.h" #include "nimble/ble.h" #include "nimble/nimble_port.h" #include "nimble/nimble_port_freertos.h" /* Defines */ #define TAG "NimBLE_Connection" #define DEVICE_NAME "NimBLE_CONN" #endif // COMMON_H